-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-styles.css
122 lines (101 loc) · 2.43 KB
/
index-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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--inactive: rgb(49, 49, 49);
--hover: rgb(116, 116, 116);
--active: rgb(77, 77, 77);
--inactive-underline: var(--inactive);
--hover-underline: var(--hover);
--active-underline: var(--active);
--link-underline-width: 1px;
--background-color: rgb(103, 223, 253);
--body-color: rgb(0, 0, 0);
--links-background: rgb(163, 237, 255);
--title-color: rgb(0, 194, 243);
--title-background: rgb(163, 237, 255);
--underline-color: rgb(255, 102, 0);
--background-gradient-top: rgb(0, 161, 201);
--background-gradient-bottom: rgb(163, 237, 255);
--background-gradient-background: linear-gradient(to right, var(--background-gradient-top), var(--background-gradient-bottom));
}
a {
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-thickness: 1px;
/* font-weight: bold; */
}
/* unvisited link */
a:link {
color: var(--inactive);
text-decoration-color: var(--inactive-underline);
}
/* visited link */
a:visited {
color: var(--inactive);
text-decoration-color: var(--inactive-underline);
}
/* mouse over link */
a:hover {
color: var(--hover);
text-decoration-color: var(--hover-underline);
}
/* selected link */
a:active {
color: var(--active);
text-decoration-color: var(--active-underline);
}
body {
font-family: monospace;
color: var(--body-color);
font-size: 14px;
}
#content {
padding-left: 0px;
margin-left: 10px;
}
#background {
/* background-color: var(--background-color); */
background-image: var(--background-gradient-background);
padding-bottom: 10px;
}
h1 {
display: block;
font-size: 2em;
margin-bottom: 0.67em;
/*margin-top: 0.67em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
padding-left: 0px; */
text-decoration: dashed;
}
.title {
color: var(--title-color);
font-weight: normal;
background-color: var(--title-background);
margin-left: -10px;
padding-left: 10px;
text-decoration-line: underline overline;
text-decoration-color: var(--underline-color);
text-decoration-style: solid;
text-decoration-thickness: 3px;
}
ul {
margin: 20px;
}
ul li::marker {
color: rgb(255, 102, 0);
}
.proj-link {
font-style: italic;
}
.social-link {
font-style: italic;
filter:brightness(1.5);
}
.ext-link:after {
content: "🡕"
}