-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 944 Bytes
/
style.css
File metadata and controls
52 lines (44 loc) · 944 Bytes
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
@import url(./css/base.css);
@import url(./css/utility.css);
@import url(./css/typography.css);
@import url(./css/button.css);
/* Main */
main{
margin-top: 10rem;
}
.main--container {
display: grid;
grid-template-rows: 1fr 1fr;
justify-content: center;
align-items: center;
padding: 1rem;
}
.main--container-left {
grid-column: 1/2;
grid-row: 1/2;
background-color: var(--primary);
color: var(--text-light);
text-align: center;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.main--container-right {
display: flex;
gap: 2rem;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 0 1rem;
}
/* Buttons */
.section--link {
display: flex;
gap: 2rem;
justify-content: center;
float: left;
padding: 0 1rem;
font-size: 3rem;
margin-bottom: 2rem;
}