-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (60 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono:ital,wght@1,400;1,600&display=swap');
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--bg-color: #002333;
--primary-color: #FFFFFF;
--grey-shade: #B4BEC9;
--dirty-white: #DEEFE7;
--link-color: #0be7ea;
}
body{
background-color: var(--bg-color);
text-align: center;
font-family: 'Red Hat Mono', monospace, sans-serif;
}
.navbar > h1{
color: var(--primary-color);
margin-top: 1rem;
font-weight: 600;
}
.navbar > p{
color: var(--dirty-white);
margin-top: 2rem;
}
.container{
margin: 0 auto;
min-height: 70vh;
max-width: 1080px;
display: flex;
align-items: center;
justify-content: center;
}
.button-container {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
}
a{
color: var(--link-color);
text-decoration: none;
padding: 12px 36px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
border-radius: 10px;
font-weight: bold;
border: 2px solid var(--primary-color);
font-size: 18px;
background-color: var(--bg-color)
}
a:hover{
background-color: var(--dirty-white);
color: var(--bg-color);
}