summaryrefslogtreecommitdiff
path: root/common.css
blob: d9b6a993538decf6e31df55c376716e37986ea30 (plain) (blame)
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
@font-face{
	font-family: 'CMU Typewriter Text w';
	src: url(/cmunbtl.woff);
}
.CTitle{
	font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
	font-variant-ligatures: none;
}
.TText{
	font-family: 'CMU Typewriter Text w', 'CMU Typewriter Text', 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
	font-variant-ligatures: none;
}
a{
	text-decoration:none;
}
div.comment{
	border:1px solid;
	border-color: var(--secondary-fg);
	margin:1em;
}
div.author{
	text-align:right;
	padding-right:0.5em;
	padding-bottom:0.5em;
}
div.floatingl{
	left: 0px;
	bottom: -10px;
	position: fixed;
	z-index: 10000;
}
div.floatingr{
	right: 0px;
	bottom: -10px;
	position: fixed;
	transform: rotateY(180deg);
	z-index: 10000;
}
.fakebtn{display:inline-block;color:#000;padding:1px 6px 1px 6px;}
button{
	border:none;
	padding:0.5em 2em;
	text-align:center;
	-webkit-transition-duration:0.4s;
	transition-duration:0.4s;
	font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
	font-variant-ligatures: none;
}
input[type="text"]{
	border: none;
	border-bottom: 2px solid;
	outline: none !important;
	background-color: rgba(0,0,0,0) !important;
	font-family: 'TeX Gyre Cursor', 'FreeMono', 'Courier New', Courier, monospace;
	font-variant-ligatures: none;
}
textarea{
	border:2px solid;
	outline:none !important;
	background-color:rgba(0,0,0,0) !important;
}
body{
	background-color: var(--principal-bg);
	background-image: var(--bg-pattern);
	background-repeat: repeat;
	color: var(--principal-fg);
}
del{
	text-decoration-color: var(--principal-fg);
}
#panel li a.active{
	background-color: var(--list-active-bg);
}
#panel li a:hover:not(.active){
	background-color: var(--list-highlighted-bg);
}
#panel,#footer{
	background-color: var(--secondary-bg);
	background-image: var(--bg-pattern);
	background-repeat: repeat;
}
#content .block{
	border: 1px solid;
	border-color: var(--secondary-fg);
}
a.highlighted{color: var(--link-highlighted-fg) !important;}
a:link{
	color: var(--link-fg);
}
a:visited{
	color: var(--link-visited-fg);
}
a:hover{
	color: var(--link-hover-fg);
}
a:active{
	color: var(--link-active-fg);
}
blockquote{
	border: 1px solid;
	border-color: var(--secondary-fg);
}
button,.fakebtn{
	color: var(--interactive-fg);
	background-color: var(--interactive-bg);
}
button:hover,.fakebtn:hover{
	background-color: var(--interactive-hover-bg);
}
button:active,.fakebtn:active{
	background-color: var(--interactive-active-bg);
}
button:disabled{
	background-color: var(--interactive-disabled-bg);
}
input[type="text"]{
	color: var(--principal-fg);
	border-bottom-color: var(--interactive-bg);
}
textarea{
	color: var(--principal-fg);
	border-color: var(--interactive-bg);
}
.widgetbg{background-color: var(--widget-area-bg);}
.sliderb1{background-color: var(--slider-empty-bg);}
.sliderb2{background-color: var(--slider-filled-bg);}