-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
73 lines (61 loc) · 1.19 KB
/
global.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
:root {
--font-family: 'Inter', sans-serif;
--font-base: 18px;
--black: #1a1a1a;
--bg-green: #b0d9b1;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body {
font-family: var(--font-family);
font-size: var(--font-base);
font-weight: bold;
background: var(--bg-green);
color: var(--black);
}
.flex-col {
flex-direction: column;
}
.text-lg {
font-size: 18px;
}
.font-bold {
font-weight: 700;
}
.flexCenterVH {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.btn {
font-family: var(--font-family);
font-size: 12px;
background-color: transparent;
border: 2px solid var(--black);
border-radius: 15px;
cursor: pointer;
outline: none;
transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
color: var(--black);
margin: 10px 5px;
width: 80px;
height: 50px;
}
.btn:hover {
color: #eee;
background-color: #1a1a1a;
box-shadow: rgba(0, 0, 0, 0.25) 0 2px 15px;
transform: translateY(-2px);
}
.btn:active {
box-shadow: none;
color: var(--black);
transform: translateY(0);
}