-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (47 loc) · 1.17 KB
/
styles.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
body {
margin: 0;
overflow-y: hidden;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
canvas {
position: fixed;
left: 0;
top: 0;
}
#contact {
position: fixed;
top: 0.6em;
left: 0.6em;
text-align: center;
z-index: 100;
display:block;
color: black;
font-weight: bold;
text-align: left;
background-color: rgba(234,234,234,0.95);
padding: 1em;
border-radius: 0.3em 1.5em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
#contact a {
text-decoration: none;
background-image: linear-gradient(to right, rgba(185, 0, 56, 0), rgba(53, 9, 252, 0));
background-position: left bottom;
background-repeat: no-repeat;
background-position-x: left;
background-size: 0 0.2em;
}
#contact a:hover {
color: blueviolet;
background-image: linear-gradient(to right, rgba(185, 0, 56, 1), rgba(53, 9, 252, 1));
background-size: 100% 0.2em;
transition: all 400ms;
}
#contact li {
list-style: inside "- ";
}
h3 {
margin-block: 0.5em;
}