summaryrefslogtreecommitdiff
path: root/styles/style.css
blob: 8177684046eac027034f49aa11b71e5e707e20e8 (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
body {
	background-color: #222;
	text-align: center;

	font-family: sans-serif;
	font-size: 10pt;
}

nav, section, table {
	background-color: white;
	border: 1px solid black;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;
}

section {
	padding: 15px;
}

footer {
	font-size: 65%;
	color: #999;
	text-align: left;
	display: inline-block;
	width: 100%;
}

table {
	border-collapse: collapse;
	width: 100%;
	padding: 20px 30px;
	text-align: left;
}

th {
	background-color: #078;
	color: white;
	border: 1px solid black;
	padding: 0.25em;
}

form {
	text-align: left;
	padding: 5px 5px 5px 50px;
	display: inline-block;
}

a {
	color: #000;
}

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

th a {
	color: white;
	font-style: italic;
}

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

#title {
	color: #eee;
	margin: 20px;
}

#wrapper {
	width: 900px;
	margin: 0 auto;
}

#user {
	float: right;
	text-align: right;
}

.post td {
	height: 200px;
	min-height: 200px;
	max-height: 600px;
}

.nav_button {
	background-color: #00728B;
	border: 1px solid black;
	color: white;
	padding: 3px;
	text-decoration: none;
}

.nav_button:hover {
	color: white;
	background-color: #009FC1;
}

.left {
	width: 70%;
}

.right {
	width: 30%;
}

h1, h4 {
	margin-top: 2px;
	margin-bottom: 10px;
}

td {
	padding: 5px;
	border: 1px solid black;
}

h3 {
	margin: 0; 
	padding: 0;
}

textarea {
	width: 500px;
	height: 200px;
	overflow: scroll;
}