-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
54 lines (47 loc) · 919 Bytes
/
landing.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
body {
background-color: black;
}
h1 {
color: white;
font-family: 'Varela Round', sans-serif;
margin-top: auto;
text-align: center;
font-size: 6rem;
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 100px;
}
.container {
flex-flow: column wrap;
}
button {
font-family: 'Open Sans', sans-serif;
background-color: transparent;
border: 2px solid white;
color: white;
padding: 8px 16px;
font-size: 2rem;
margin: 7px 14px;
width: 325px;
}
button:hover {
background-color: white;
color: black;
cursor: pointer;
}
.row {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}
.column {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}