-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (58 loc) · 974 Bytes
/
styles.css
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
.buttons {
border : solid 0px #e6b215;
border-radius : 8px;
moz-border-radius : 8px;
font-size : 16px;
color : white;
padding : 5px 18px;
background-color : #202020;
cursor:pointer;
}
.buttons:hover {
background-color:#202020;
}
.buttons:active {
position:relative;
top:1px;
}
#newPost {
margin: 0 auto;
width: 90%;
}
#charCounter { float:right }
textarea {
width: 100%;
height: 10em;
}
#content {
width: 90% ;
margin-left: auto ;
margin-right: auto;
margin-bottom: 10px;
font-family:verdana, sans-serif;
word-spacing:4pt;
font-size:14px;
}
#posts {
font-weight:normal;
color:#000000;
word-spacing:4pt;
font-size:10px;
text-align:left;
font-family:verdana, sans-serif;
width: 90%;
margin: 0 auto;
}
#posts th {
background-color: #202020;
color: white;
padding: 8px;
border-bottom: 1px solid #ddd;
}
#posts td {
padding: 8px;
color:white;
border-color: #666666;
background-color: #202020;
border-bottom: 1px solid #ddd;
}