-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
77 lines (74 loc) · 1.13 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
* {
box-sizing: border-box;
}
html {
background: #fff;
font-size: 16px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #666;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table;
}
.container {
width: 50%;
padding: 2rem;
margin: 6rem auto 0;
max-width: 1000px;
text-align: center;
}
.logo {
margin: 0 auto 3rem;
}
.text {
font-size: 2rem;
font-weight: 600;
margin-bottom: 1rem;
}
.text.error {
color: #C43336;
}
.subtext {
margin-top: 0.5rem;
font-size: 1.25rem;
color: #888;
font-weight: 300;
}
.small {
font-size: 1rem;
}
a,
a:visited {
color: #2C8EDD;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
color: #2C8EDD;
text-decoration: underline;
}
@media only screen and (max-width: 800px){
.container {
width: 100%;
padding: 1rem;
margin-top: 5rem;
}
}
@media only screen and (max-width: 400px) {
.logo {
margin: 0 auto 3rem;
}
.container {
width: 100%;
padding: 1rem;
margin-top: 0;
}
.text {
margin-bottom: 1.5rem;
}
}