summaryrefslogtreecommitdiff
path: root/styles/style.css
blob: 95d3a94556d3af2db6b0fa75c4f3e13289e32b42 (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
body {
	font-family: Arial, sans-serif;
	font-size: 10pt;
	margin: auto;
	width: 980px;
}

a {
	color: #2365B0;
}

small {
	font-size: 8pt;
	color: #333;
}

.header > small {
	color: #dde;
}

.success {
	background-color: #efe;
	margin: 8px 40px 14px 18px;
	padding: 12px;
	border: 1px solid #aea;
	overflow: hidden;
	border-radius: 5px;
}

.error {
	background-color: #fee;
	margin: 8px 40px 14px 18px;
	padding: 12px;
	border: 1px solid #eaa;
	overflow: hidden;
	border-radius: 5px;
}

a:hover {
	color:#373737;
	text-decoration: none;
}

table {
	width: 100%;
}

th, .header {
	background-color: #469;
	color: #eee;
	padding: 2px;
}

th, .header a {
	color: #eee;
	font-weight: bold;
}

td {
	background-color: #eee;
	padding: 3px;
}

.info {
	color: #666;
}

.post-content {
	overflow: auto;
	background-color: #eee;
	padding: 12px 8px;
	margin: 2px 0px;
	display: block;
}

.youtube-embed {
	width: 480px;
	height: 270px;
	border: none;
}

.image-embed {
	width: 480px;
}

textarea {
	width: 100%;
	height: 200px;
	margin-right: 0px;
	overflow: scroll;
	resize: none;
}

blockquote {
	background-color: #DDE0E6;
	margin: 8px 40px 14px 18px;
	padding: 12px;
	border: 1px solid #9FAFC7;
	overflow: hidden;
	border-radius: 5px;
}