-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
77 lines (65 loc) · 1.02 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
*,
:after,
:before {
box-sizing: border-box
}
body {
margin: 0;
padding: 0;
font-family: PT Sans, Helvetica Neue, Helvetica;
}
header {
margin-left: auto;
margin-right: auto;
position: relative;
}
header img {
display: block;
margin: auto;
width: 70vmin;
max-width: 30vh;
}
section {
background: #cb3837;
color: #fff;
}
section #content {
margin-left: auto;
margin-right: auto;
position: relative;
padding: 20px 20px 100px;
min-width: 320px;
max-width: 640px;
}
section #content h2 {
font-size: 24px;
}
section #content p {
font-size: 18px;
line-height: 1.4;
color: hsla(0, 0%, 100%, .8);
}
section #content p a {
color: #fff;
}
section #content p.spacey {
margin: 30px 0 60px;
}
section #content .footer p {
text-align: center;
}
section #content a.button {
display: inline-block;
color: #fff;
background: #a42c2b;
padding: 15px 20px;
margin: 15px;
line-height: 1;
border-radius: 6px;
text-decoration: none;
}
section #content img.screenshot {
max-width: 700px;
width: 110%;
margin-left: -5%;
}