-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjumbotron.css
126 lines (105 loc) · 1.82 KB
/
jumbotron.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:root {
--selection-color: white;
--selection-bg: skyblue;
}
/*h3 {
text-decoration: underline;
}*/
ul.justify-content-center {
padding-top: 0.5rem;
}
label.btn {
padding: 0.15rem 1rem;
}
::-moz-selection {
color: var(--selection-color);
background: var(--selection-bg);
}
::selection {
color: var(--selection-color);
background: var(--selection-bg);
}
div.col-md-4, div.col-lg, div.col-sm {
padding: 10px;
background: rgba(255, 255, 255, 0.8);
}
div.col-lg {
margin-bottom: 5px;
}
div.col-sm-4 {
padding: 5px;
}
div.col-md-4, div.col-sm {
margin: 5px;
}
div.container#index {
padding: 10px;
margin: 0px;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, 0.8);
}
blockquote.blockquote {
background: lightgrey;
border-left: 10px solid grey;
padding: 10px;
padding-left: 20px;
line-height: 80%;
}
body {
position: relative;
}
div.position-fixed {
position:fixed;
padding:0;
margin:0;
overflow-y: auto;
top: 20px;
z-index: 1000;
width:17.5%;
max-height:90%;
background: rgba(255, 255, 255, 0.8);
}
.affix {
padding: 0;
margin: 0;
/*overflow-x: scroll;*/
}
li.a.nav-link {
display: table;
margin: 5px;
width: 100%;
}
li.a.nav-link h1, li.a.nav-link h1,h2,h3,h4,h5,h6 {
margin-top:0px;
margin-bottom:0px;
}
a.nav-link:active, a.nav-link.active {
background-color: grey;
}
a.nav-link h1 {
font-size:120%;
font-weight: bold;
}
a.nav-link h2 {
margin-left: 30px;
text-decoration: underline;
font-size:110%
}
a.nav-link h3 {
margin-left: 60px;
font-size: 100%;
text-decoration:none;
}
a.nav-link h4 {
margin-left: 90px;
font-size: 75%
}
a.nav-link h5 {
margin-left: 120px;
font-size: 75%
}
a.nav-link h6 {
margin-left: 150px;
font-size: 75%
}