-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.css
65 lines (55 loc) · 950 Bytes
/
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
body{
font-family: 'Open Sans', sans-serif;
margin-bottom: 50px; /*Fixes footer on small screens*/
}
h1{
font-size: 48px;
font-weight: 600;
}
.title_top{
font-weight: 700;
font-size: 25px;
margin-bottom: -1.5rem;
margin-top: 2rem;
}
.title_bottom{
font-size: 100px;
font-weight: light;
letter-spacing: -.15rem;
margin-bottom: -1rem;
}
.title_top{
visibility: hidden;
}
.row{
text-align: center;
}
button, button:focus, input{
border: solid 1px black;
}
.col{
max-width: 600px;
margin: auto;
}
.jumbotron{
padding: 2rem;
}
.page-footer{
background-color: rgb(233, 233, 233);
}
@media only screen and (max-width: 767px) {
.title_top{
font-size: 20px;
}
.title_bottom{
font-size: 80px;
}
}
@media only screen and (max-width: 480px) {
.title_top{
font-size: 15px;
}
.title_bottom{
font-size: 60px;
}
}