summaryrefslogtreecommitdiffstats
path: root/src/style.css
blob: 8969455e5dffa7df655926f06cd5d3b3d35e8310 (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
@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	src: local('PT Sans'), local('PTSans-Regular'), url(https://theos.kyriasis.com/fonts/ptsans.ttf) format('truetype');
}
@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 700;
	src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://theos.kyriasis.com/fonts/ptsans-bold.ttf) format('truetype');
}
@font-face {
	font-family: 'PT Sans';
	font-style: italic;
	font-weight: 400;
	src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://theos.kyriasis.com/fonts/ptsans-italic.ttf) format('truetype');
}
@font-face {
	font-family: 'DejaVu Sans Mono';
	src: url('https://theos.kyriasis.com/fonts/DejaVuSansMono.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

*, *:before, *:after { box-sizing: border-box; }
html {
	background-color: #eee;
}
body {
	font-size: 16px;
	font-family: 'PT Sans';
	font-feature-settings: "kern";
	max-width: 42rem;
	margin: -1.5rem auto;
	padding: 0 1rem;
	border: 1px solid #ccc;
	background-color: #fcfcfc;
	-moz-hyphens: auto; -webkit-hyphens: auto;
	-ms-hyphens: auto;  hyphens: auto;
}

a, a:visited {
	text-decoration: none;
	color: #32609C;
}
a:hover {
	color: #339;
}

header {
	font-size: 0.9rem;
	padding-top: 1.25rem;
}
header nav ul {
	font-size: 0.9rem;
	font-family: 'DejaVu Sans Mono';
	list-style-type: none;
	padding: 0;
}
header nav ul li {
	display: inline;
	margin-right: 0.5rem;
}
header nav a, header nav a:visited {
	color: #444;
}
header nav a:hover {
	color: #000;
}
header h1 {
	margin: 0;
}

#content {
	padding-bottom: 0.5rem;
	color: #222;
}

#welcome-to-theos-kyriasis-com > p:first-of-type:first-letter {
	float: left;
	color: #903;
	font-size: 3rem;
	line-height: 2rem;
	padding-top: 0.4rem;
	padding-right: 0.4rem;
	padding-left: 0.1rem;
	font-family: 'Georgia';
}
@media (max-width: 767px) {
	#welcome-to-theos-kyriasis-com > p:first-of-type:first-letter {
		padding-top: 0.3rem;
		padding-right: 0.2rem;
		font-size: 2.7rem;
	}
}

#user-pages h1 {
	margin: 0 0 -0.5rem 0;
}
#user-pages ul {
	list-style-type: none;
	padding: 0 0 0 0.5rem;
}
#user-pages ul li {
	padding-bottom: 0.25rem;
}

p#last-upd, p#author {
	font-size: 14px;
	text-align: right;
	margin: 0;
}

div.section h1 {
	font-size: 19px;
}

.botborder {
	border-bottom: 0.15rem;
	border-bottom-style: dotted;
	border-bottom-color: #bbb;
	padding-bottom: 0.5rem;
}

footer p {
	color: #333;
	margin: 1rem 0;
}