-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
68 lines (58 loc) · 1.1 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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Comfortaa;
--black: #000000;
--white: #ffffff;
--gray: #121212;
}
html {
scroll-behavior: smooth;
overflow-x:hidden !important;
}
.inter {
font-family: Inter;
}
ul {
list-style: none;
}
li {
display: list-item;
box-sizing: border-box;
border: 0 solid;
}
.link {
transition: all 0.2s ease-in-out;
text-decoration: #ffc0cb;
}
.link:hover {
color: #ffc0cb;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.icon {
width: 20px;
height: 20px;
display: block;
margin-top: 0.35rem;
margin-bottom: 0.35rem;
}
.projIcon {
width: 28px;
height: 28px;
}
.hoverScale {
transition: all 0.2s ease-in-out;
}
.hoverScale:hover {
transform: scale(1.05);
}