-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
43 lines (35 loc) · 683 Bytes
/
main.css
File metadata and controls
43 lines (35 loc) · 683 Bytes
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
:root {
--color-text: #2a2e32;
}
* {
font-family: 'Courier New', Courier, monospace;
}
body {
margin: 0;
padding: 0;
}
.art-page-header {
position: absolute;
top: 0;
left: 0;
padding-right: 30px;
padding-left: 30px;
z-index: 5;
}
.app-text-link {
padding-top: 8px;
padding-bottom: 8px;
display: inline-block;
color: var(--color-text);
text-decoration: none;
}
.app-text-link>span {
border-bottom: 1px solid var(--color-text);
transition-property: border;
transition-duration: 0.4s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.app-text-link:hover>span {
border-bottom: 1px solid transparent;
text-decoration: none;
}