-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (133 loc) · 2.14 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
:root {
--background: #2e2d2d;
--very-dark-blue: #2c2e43;
--white: #ffffff;
--gray-300: #cbd5e0;
--gray-400: #888585;
}
* {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
margin: 0;
padding: 0;
}
body {
margin: 90px 0 100px;
align-items: center;
background-color: var(--background);
display: flex;
justify-content: center;
position: relative;
}
.my-links {
display: flex;
flex-direction: column;
align-items: center;
}
.avatar {
border: 3px solid var(--white);
border-radius: 50%;
max-width: 200px;
max-height: 150px;
width: auto;
height: auto;
}
.avatar:hover {
border: 3px solid var(--gray-400);
}
.outline-avatar {
margin-bottom: 4px;
}
.icon-computer {
width: 30px;
}
h1,
h2 {
color: var(--gray-400);
margin-top: 0;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 14px;
font-weight: 400;
}
ul {
list-style: none;
}
a {
display: flex;
align-items: center;
gap: 5px;
}
.my-extra-links {
padding: 24px 16px;
}
.my-extra-links li {
border: 1px solid var(--gray-400);
border-radius: 20px;
cursor: pointer;
padding: 8px 16px;
text-align: center;
transition: background-color 0.6s;
margin-bottom: 12px;
}
.my-extra-links li a {
color: var(--gray-400);
text-decoration: none;
transition: color 0.6s;
}
.my-extra-links li:hover {
background-color: var(--very-dark-blue);
}
.my-extra-links li:hover a {
color: var(--gray-300);
}
.link-container {
display: flex;
justify-content: center;
}
.icon-react,
.icon-vue,
.icon-next {
height: 20px;
width: auto;
}
.social-network-links {
display: flex;
gap: 16px;
margin-top: 16px;
}
.social-network-links svg {
height: 30px;
width: 30px;
}
.social-network-links svg path {
fill: var(--gray-400);
transition: fill 0.6s;
}
.social-network-links svg:hover path {
fill: var(--very-dark-blue);
}
canvas {
position: fixed;
top: 0;
left: 0;
z-index: -100;
width: 100%;
height: 100%;
}
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-track {
background: var(--white);
}
::-webkit-scrollbar-thumb {
background: rgb(156, 156, 156);
}
::-webkit-scrollbar-thumb:hover {
background: var(--gray-400);
}