-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
executable file
·68 lines (59 loc) · 871 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
68
body {
margin: 1em auto;
max-width: 60em;
padding: 0 .62em;
font:1.2em/1.62 sans-serif;
font-family:verdana, sans-serif;
}
h1,h2,h3 {
line-height:1.2;
}
@media print{
body{
max-width:none
}
}
.buttons {
border : solid 0px;
border-radius : 8px;
padding : 5px 18px;
cursor:pointer;
font-size:1em;
}
.buttons:hover {
background-color: #777;
}
.buttons:active {
position:relative;
top:1px;
}
#char-counter {
float: right
}
textarea {
width: 100%;
height: 10em;
font-size:18px;
}
section {
margin-left: auto ;
margin-right: auto;
margin-bottom: 10px;
word-spacing:4pt;
}
.posts {
font-weight:normal;
word-spacing:4pt;
text-align:left;
width: 100%;
margin: 0 auto;
}
.posts th {
padding: 8px;
border-bottom: 1px solid #ddd;
}
.posts td {
padding: 8px;
border-color: #666666;
border-bottom: 1px solid #ddd;
}