-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
94 lines (77 loc) · 1.28 KB
/
main.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
body {
margin:0px;
font-family: 'Fira Sans', sans-serif;
color: #333;
padding-bottom: 15px;
}
.jumbotron {
background: #EEE;
padding: 48px 0px;
margin-bottom: 30px;
}
.container{
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.jumbotron h1 {
font-size: 48px;
margin-bottom:0px;
font-weight: lighter;
}
.subtitle {
font-family: 'Fira Sans Condensed', sans-serif;
margin-top:0px;
padding-left: 6px;
}
h1, h2, h3 {
font-family: 'Fira Sans Condensed', sans-serif;
}
h1, h2 {
font-weight: normal;
}
h1 {
font-size: 290%;
}
a {
text-decoration: none;
color: #1b5bc1;
}
a:hover {
text-decoration: underline;
}
body > a {
color: inherit;
}
body > a:hover {
text-decoration: none;
}
@media screen and (min-width: 768px) {
.container{
width: 750px;
}
.jumbotron h1 {
font-size: 63px;
}
}
@media screen and (min-width: 992px) {
.jumbotron > .container{
width: 970px;
}
}
@media screen and (min-width: 1200px) {
.jumbotron > .container{
width: 1170px;
}
}
.alert-main {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}