aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
blob: 74eebb9be182e6a9ced67af2444211abb0df854b (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
/* Cem Keylan (C) 2019-2020 */

:root {
    --color0:      #0A1E2B;
    --color1:      #5C5B6F;
    --color2:      #9B506D;
    --color3:      #C34266;
    --color4:      #7B9BB7;
    --color5:      #BF6790;
    --color6:      #6a9faf;
    --color7:      #A676D2;
    --color8:      #8b8288;
    --color9:      #5C5B6F;
    --color10:     #9B506D;
    --color11:     #C34266;
    --color12:     #4E708D;
    --color13:     #BF6790;
    --color14:     #528899;
    --color15:     #c7bac3;
    --fg:          #0a1e2b;
    --bg:          #ffffff;
    --altbg:       #bf6790;
    --link:        #bf6790;
    --linkalt:     #4e708d;
}


html {
	background-color: var(--bg);
	font-family: monospace;
	font-size: 16px;
	color: var(--fg);
	padding-bottom: 100px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}
.header {
	text-align: center;
}
.header strong{
	color: var(--color5)
}
.header a{
	text-decoration: none;
	text-align: center;
	color: var(--fg);
	margin-left: 10px;
	margin-right: 10px;
}
.header a:hover{
	text-decoration: none;
	text-align: center;
	color: var(--linkalt);
	margin-left: 10px;
	margin-right: 10px;
}
.border {
	padding-top: 1%;
	border-bottom: solid 2px;
	color: var(--fg);
}
a {
	text-decoration: none;
	font-weight: bold;
	color: var(--link);
}
a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: var(--linkalt);
}
.post-title {
	text-align: center;
}
ul li::before {
	color: var(--color4);
}
body {
	width: 80%;
	max-width: 1050px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	overflow: none;
        overflow-y: scroll;
	padding-right: 10px;
	padding-left: 10px;
	color: var(--fg);
}
code {
	color: var(--fg);
	content: "> ";
}
p,tr,td,table { color: var(--fg); }
h1 {
	color: var(--color7);
	font-weight: bolder;
}
h2 {
	color: var(--color4);
	font-weight: bold;
}
h3 {
	color: var(--fg);
	font-weight: bold;
}
.footer {
	text-align: center;
}

pre { margin-left: 2em; }
blockquote {
	border-left: 1px solid var(--color6);
	font-style: italic;
}