aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/themes/default/general.css
blob: ec23a472ee6648788a23452554da8f01fc576bb7 (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
/*-----------------------------------------------------------------------------

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 {
	margin: 0px;
	padding: 15px;
	cursor: default;
}

body, td, textarea, input, select {
	font-family: "Cantarell","Arial","Helvetica","FreeSans",sans-serif;
	color: #000000;
	font-size: 16px;
}

*, :after, :before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

body, a, a:link {
	text-decoration: none;
	text-transform: none;
}

a, a:link {
	color: #3485C7;
}

input:focus, textarea:focus, .animate-all {
	-moz-transition: all 150ms linear 0s;
	-webkit-transition: all 150ms linear 0s;
	-o-transition: all 150ms linear 0s;
	transition: all 150ms linear 0s;
}

a:visited {
	color: #3485C7;
}

a:hover {
	color: #266394;
	cursor: pointer;
}

h1 {
	font-size: 28px;
	font-weight: normal;
	line-height: 1.25em;
}

h1, h2 {
	margin: 0px;
	font-weight: normal;
	overflow: hidden;
}

.underlined {
	display: block;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: 1px solid #CCCCCC;
}

.muted-text {
	color: #808080;
}

.striped-rows-odd tr:nth-child(odd) {
	background-color: #F5F5F5;
}

.striped-rows-even tr:nth-child(even) {
	background-color: #F5F5F5;
}

.column-borders td {
	border-right: 1px solid #CCCCCC;
}

.striped-rows-even.column-borders tr:first-child > td,
.column-borders td:last-child {
	border: none;
}

p, .p-spaced {
	margin: 0px 0px 1em 0px;
	padding: 0px;
	overflow: hidden;
}

p:last-child {
	margin-bottom: 0px;
}

table {
	width: 100%;
}

.left {
	float: left;
}

.right {
	float: right;
}

.margin-left-children > * {
	margin-left: 10px;
}

.margin-right-children > * {
	margin-right: 10px;
}