-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
76 lines (64 loc) · 1001 Bytes
/
index.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
html,
body {
width: 100vw;
height: 100vh;
margin: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.primary {
color: #ff8080;
}
.navbar {
box-shadow: #ccc 0px 1px 4px 0px;
padding: 1rem;
display: flex;
align-content: center;
margin: auto 0;
}
.navbar h1 {
line-height: 3.4rem;
margin-left: 0.5rem;
}
.navbar .left {
flex: 1 0 auto;
display: flex;
align-content: center;
margin: auto 0;
}
.navbar .right {
display: flex;
flex-direction: column;
justify-content: center;
}
.navbar a {
text-decoration: none;
}
.logo {
width: 60px;
height: 60px;
}
h1 {
margin: 0;
}
.huge {
margin: 1rem;
font-size: 6rem;
}
.center {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
}
.center p {
color: #616161;
}
.features img {
width: 90%;
height: auto;
margin: 0 auto;
box-sizing: border-box;
}