blob: df6815be2f59714eb8053b8ed7f33b5e9403e0ad (
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
|
/* 10th June 2024, Designer: Suleyman Farajli */
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 */
}
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;
}
|