-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (108 loc) · 1.68 KB
/
style.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family=Genos:wght@500&family=Itim&family=Poppins:wght@400;700&display=swap');
html {
scroll-behavior: smooth;
}
body {
display: flex;
justify-content: center;
align-items: center;
padding-top: 3rem;
}
.container-grid {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
height: 100vh;
}
section {
padding-top: 6rem;
}
main,
footer {
padding: 0 12px;
}
/* Header */
.brand {
display: flex;
align-items: center;
/* padding-left: 13px; */
}
.brand-title {
font-size: 3rem;
font-family: 'Genos', sans-serif;
}
.brand img {
height: 40px;
width: 40px;
margin-top: 12px;
}
/* h1 {
font-family: 'Genos', sans-serif;
font-size: 4rem;
} */
.nav-item {
margin-left: 2rem;
}
/* Main */
h2 {
color: #4c1430;
border-bottom: 2px solid #4c1430cc;
font-size: 1.8rem;
margin-bottom: 2rem;
}
li {
margin-bottom: 1rem;
}
.instructions__img--demo {
margin-left: 2rem;
width: 300px;
height: 300px;
}
.team__image {
height: auto;
width: 250px;
margin-right: 3rem;
border-radius: 2px;
}
.socials a {
display: inline-block;
font-size: 1.5rem;
margin-right: 2rem;
text-decoration: none;
}
.socials i {
font-size: 2rem;
}
/* Footer */
footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 8rem;
}
.made {
font-size: 0.8rem;
}
.attributions {
font-size: 0.7rem;
}
/* Utils */
.flex {
display: flex;
}
.justify-content-between {
justify-content: space-between;
}
.align-items-start {
align-items: flex-start;
}
.align-items-center {
align-items: center;
}
.w100 {
width: 100%;
}
.w50 {
width: 50%;
}