-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (77 loc) · 1.27 KB
/
style.css
File metadata and controls
94 lines (77 loc) · 1.27 KB
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
@import url('https://fonts.googleapis.com/css?family=Montserrat%7CNoto+Serif');
body {
color: #191414;
text-align: center;
width: 90%;
margin: 0 auto;
font-family: 'Montserrat', sans-serif;
}
header {
box-sizing: border-box;
height: 90px;
padding-top: 32px;
}
main {
min-height: calc(100vh - 220px);
text-align: left;
}
h1 {
font-weight: 100;
letter-spacing: 0.5pt;
text-transform: uppercase;
font-size: 13pt;
}
.btn {
background-color: #EE1A00;
color: #fff;
padding: 8px 12px;
border: none;
font-size: 7.5pt;
font-weight: 100;
text-transform: uppercase;
cursor: pointer;
margin-bottom: 12px;
}
.btn:hover, .btn:active {
background-color: #F63300;
}
footer {
padding-top: 35px;
font-size: 8pt;
height: 130px;
box-sizing: border-box;
}
a, a:hover, a:focus {
color: #F02300;
}
.outer {
width: 100%;
display: table;
}
.inner {
display: table-cell;
vertical-align: middle;
}
@media screen and (min-width: 670px) and (min-height: 800px) {
body {
width: 50%;
}
header {
height: 120px;
}
h1 {
font-size: 14pt;
}
main {
min-height: calc(100vh - 305px);
}
footer {
font-size: 12pt;
height: 185px;
}
.btn {
padding: 16px 24px;
font-size: 13pt;
margin-bottom: 24px;
}
}