-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (85 loc) · 1.59 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
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
background-color: #073a53;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
font-size: 1rem;
color: #f7df1e;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
width: 100%;
margin-bottom: 5rem;
}
section {
flex-grow: 1;
flex-basis: 0;
display: flex;
flex-direction: row;
width: 100%;
align-items: flex-start;
justify-content: center;
}
div {
text-align: center;
}
h1 {
font-weight: 300;
margin: 0;
font-size: 3.2em;
color: #f7df1e;
}
a {
text-decoration: none;
}
img {
width: 512px;
}
p {
word-spacing: 0.05em;
}
a.button {
padding: 0.75em 2em;
border-radius: 2em;
display: inline-block;
color: #073a53;
background-color: #f7df1e;
transition: all 0.15s ease;
box-sizing: border-box;
border: 1px solid #f7df1e;
margin: 1em 0;
font-size: 1.05em;
font-weight: 600;
letter-spacing: 0.1em;
min-width: 8em;
text-align: center;
text-transform: uppercase;
}
@media screen and (min-width: 900px) {
section:nth-child(1) {
justify-content: flex-end;
}
section:nth-child(2) {
justify-content: flex-start;
}
div {
text-align: left;
}
img {
margin-right: 60px;
}
}