-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (78 loc) · 1.22 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700');
* {
font-family: 'Roboto', sans-serif;
}
.landing-content {
margin-top: 150px;
margin-bottom: 75px;
}
h1 {
font-weight: 700;
font-size: 48px;
}
/* mobile */
@media only screen and (min-width: 320px) {
.bhacks-logo {
width: 60%;
display: block;
margin: 10% auto;
}
}
/* tablet and up */
@media only screen and (min-width: 768px) {
.bhacks-logo {
width: 100%;
}
}
h2 {
font-size: 30px;
line-height: 1.6em;
}
.italic-subtext {
font-style: italic;
margin-top: 45px;
margin-bottom: 75px;
}
.keep-on-one-line {
white-space: nowrap;
}
.keep-on-one-line * {
display: inline;
}
.or-dont {
color: #555;
}
.main-content {
margin: 75px 0;
}
.description {
margin-bottom: 50px;
}
h3 {
font-weight: 500;
}
ul {
margin-bottom: 30px;
}
/* mobile */
@media only screen and (min-width: 320px) {
.platterz-logo {
width: 100%;
display: block;
margin: 5% auto;
}
}
/* tablet and up */
@media only screen and (min-width: 768px) {
.platterz-logo {
width: 45%;
margin: 2% 0;
}
}
.footer-content {
margin-top: 75px;
margin-bottom: 35px;
}
.footer-link-box {
margin-bottom: 15px;
}