blob: 7bf3a02467664d3f270203ffbdb34475bf757595 (
plain)
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
|
/* 10th June 2024, Designer: Suleyman Farajli */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
.jetbrains-mono {
font-family: "JetBrains Mono", serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
}
body {
font: 15px jetbrains mono;
width: 60em; /* make width window size independent */
display:block;
padding-top: 4em;
margin: auto;
background-color: #1c1c1c; /* Almost Black */
color: #ffffff; /* White */
}
p {
padding: 0em;
margin: 0em;
font-size: 1.3em;
}
a {
text-decoration: none;
color: #5E81AC; /* Blue */
}
a:hover {
font-weight: bold;
color: #B48EAD; /* Purple */
}
td {
font-size: 1.3em;
}
time {
color: #bbbbbb;
padding-right:2em;
font-size: 0.77em;
}
li {
font-size: 1.1em;
}
small {
padding: 0.6em;
}
table {
padding-left: 1em;
}
.text{
margin-right: 1em;
margin-left: 1em;
}
.menu_item {
color: #BB6767; /* Red */
font-weight: bold;
padding: 0.4em;
padding-right: 3em;
font-size: 1.3em;
margin-right: 0.2em;
margin-left: 0.2em;
}
.right_menu_item {
float: right;
padding-right: 1em;
}
.menu {
margin-bottom: 1em;
}
.orange_text {
color: #EBCB8B; /* Orange */
}
.green_text {
color: #A3BE8C; /* Green */
}
.purple_text {
color: #B48EAD; /* Purple */
}
.red_text {
color: #BB6767; /* Red */
}
.light_gray_text {
color: #bbbbbb; /* Light Gray */
}
.white_text {
color: #FFFFFF; /* White */
}
#copyleft {
color: #696969; /* Dark Gray */
margin-left: 0.7em; /* FIXME: use don't use a random value */
padding-bottom: 1em;
}
/*
* "pointer-events: none" doesn't work on some browsers,
* to deactivate hover effect on this tag,
* hover and regular styles are defined as the same
*/
#header-link, #header-link:hover {
text-align: left;
font-size: 2.0em;
color: #FFFFFF; /* White */
font-weight: normal;
}
#quote {
font-size: 1.3em;
text-align: right;
color: #C0C0C0; /* Darkish gray */
font-weight: 430;
}
#bar{
width: 100%;
line-height: 35px;
}
|