aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/themes/default/special.css
blob: 2b3cc1d8bb73e15bfc976adf10cbc7eba7bd62b9 (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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*-----------------------------------------------------------------------------

Copyright (C) 2016-2018 Jacob Barkdull
This file is part of HashOver.

I, Jacob Barkdull, hereby release this work into the public domain.
This applies worldwide. If this is not legally possible, I grant any
entity the right to use this work for any purpose, without any
conditions, unless such conditions are required by law.

-----------------------------------------------------------------------------*/

body * {
	line-height: 1.25em;
}

a, a:link {
	display: inline-block;
	border-bottom: 0.1em solid transparent;
	margin-bottom: -0.1em;
}

a:hover {
	border-bottom-color: #266394;
}

input, textarea {
	padding: 3px 5px 3px 5px;
	border: 1px solid #909090;
	background-color: #FCFCFC;
}

input, textarea, .select-wrapper {
	margin: 0px 0px 5px 0px;
	vertical-align: middle;
}

input:hover, textarea:hover {
	border-color: #000000;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
textarea:focus {
	-o-box-shadow: 0px 0px 2px rgba(0, 191, 255, 0.5);
	-moz-box-shadow: 0px 0px 2px rgba(0, 191, 255, 0.5);
	-webkit-box-shadow: 0px 0px 2px rgba(0, 191, 255, 0.5);
	box-shadow: 0px 0px 2px rgba(0, 191, 255, 0.5);
}

input[type="text"]:focus {
	border-color: #004799;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="button"]:focus,
textarea:focus {
	border-color: #3B96E0;
}

input[type="button"] {
	padding: 5px 10px 5px 10px;
	background-color: #F5F5F5;
}

input[type="button"]:hover {
	background-color: #F0F0F0;
}

input[type="submit"] {
	padding: 5px 15px 5px 15px;
	color: #FFFFFF;
	border: 1px solid #326BAC;
	background-color: #41A7FA;
}

input[type="submit"]:hover {
	text-decoration: none;
	border: 1px solid #004799;
	background-color: #3B96E0;
}

input[type="submit"],
input[type="button"] {
	margin: 0px;
	cursor: pointer;
}

input[type="checkbox"] {
	margin-top: -3px;
}

.select-wrapper {
	display: inline-block;
	position: relative;
	overflow: hidden;
	border: 1px solid #AAAAAA;
	cursor: pointer;
}

.select-wrapper:before {
	content: "\25BC";
	position: absolute;
	right: 0px;
	top: 0px;
	display: inline-block;
	height: 100%;
	width: 31px;
	padding: 6px 0px 6px 0px;
	margin: 0px;
	line-height: 12px;
	text-align: center;
	pointer-events: none;
	background-color: #F0F0F0;
	border-left: 1px solid #AAAAAA;
	font-family: monospace;
	font-size: 14px;
}

.select-wrapper:hover,
.select-wrapper:hover:before {
	border-color: #000000;
}

.select-wrapper select {
	border: none;
	background-color: #FCFCFC;
	padding: 1px 20px 1px 1px;
	cursor: pointer;
}

#message {
	position: relative;
	font-weight: bold;
	background-color: #FFFFFF;
	margin-top: -1.25em;
	z-index: 1;

	-moz-transition: color 500ms linear 0ms, background 500ms linear 500ms;
	-webkit-transition: color 500ms linear 0ms, background 500ms linear 500ms;
	transition: color 500ms linear 0ms, background 500ms linear 500ms;
}

#message.success {
	color: #00AA00;
}

#message.error {
	color: #CC0000;
}

#message.hide {
	background-color: transparent;
	color: transparent;
}