-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (59 loc) · 1.27 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
*,
*::after,
*::before {
margin: 0;
padding: 0;
font-family: "Roboto Mono", monospace;
box-sizing: border-box;
--primary-color: #395b64;
--secondary-color: #212529;
--accent-1: #a5c9ca;
--neutral-1: white;
}
body {
background: linear-gradient(to bottom, #e65758, #771d32);
margin: 0;
padding: 0;
height: 100vh;
display: flex;
}
.container{
display: flex;
flex-direction: column;
gap: 16px;
border-radius: 5px;
background-color: var(--neutral-1);
width: 60vw;
padding: 1rem;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
margin-bottom: auto;
margin-top: auto;
}
.text-center{
margin-bottom: 2.5rem;
}
.button-container {
display: flex;
flex-wrap: wrap;
}
.button-container a {
flex: 1;
margin: 10px;
text-align: center;
text-decoration: none;
font-weight: 600;
}
.btn{
background-color: var(--neutral-1);
margin-top: 2.5rem;
border: 2px solid var(--secondary-color);
box-shadow: 4px 4px 0px var(--primary-color);
color: var(--secondary-color);
border-radius: 2px;
}
.btn:hover{
background-color: var(--secondary-color);
border: 2px solid var(--secondary-color);
color: var(--neutral-1);
box-shadow: 6px 6px 0px var(--primary-color);
}