-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomeOld-styles.css
130 lines (113 loc) · 3.22 KB
/
homeOld-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
123
124
125
126
127
128
129
130
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--inactive: rgb(255, 123, 35);
--hover: rgb(255, 112, 17);
--active: rgb(240, 96, 0);
--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(50, 214, 255);
--background-gradient-bottom: rgb(163, 237, 255);
--background-gradient-background: linear-gradient(to right, var(--background-gradient-top), var(--background-gradient-bottom));
}
@media (prefers-color-scheme: dark) {
:root {
--inactive: rgb(187, 241, 255);
--hover: rgb(161, 217, 255);
--active: rgb(126, 203, 255);
--inactive-underline: var(--inactive);
--hover-underline: var(--hover);
--active-underline: var(--active);
--background-color: rgb(255, 121, 32);
--body-color: rgb(255, 255, 255);
/*rgb(255, 140, 32); */
--links-background: rgb(255, 119, 29);
--title-color: rgb(202, 81, 0);
--title-background: rgb(255, 140, 64);
--underline-color: rgb(46, 132, 212);
--background-gradient-top: rgb(202, 81, 0);
--background-gradient-bottom: rgb(255, 140, 64);
--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;
}
/* 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);
}
#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-top: 0.67em;
margin-bottom: 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;
}
#links {
background-color: var(--links-background);
display: flex;
justify-content: space-evenly;
padding: 2px 2px 2px 2px;
margin: 0px 0px 0px 0px;
border: 0px;
box-sizing: border-box;
height: 20px;
}