-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (74 loc) · 1.19 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
font-family: verdana, arial, helvetica, sans-serif;
}
one-article {
padding: 10px;
}
article {
display: table-row;
}
article div {
display: table-cell;
}
article div.votes {
width: 50px;
margin: 0 auto;
text-align: center;
vertical-align: middle;
background-color: #ddd;
border: 1px solid black;
border-right: 0;
}
article div.main {
border: 1px solid black;
padding: 0 10px;
width: 400px;
}
article h2 {
font-weight: normal;
font-size: medium;
margin: 0;
}
article h2 span {
font-size: small;
color: #bbb;
}
article ul {
display: table-row;
}
article li {
display: table-cell;
list-style-type: none;
}
article li a {
font-size: small;
text-decoration: none;
border-right: 1px solid #ccc;
padding: 0 3px;
}
article li:last-child a {
border-right: 0;
}
section.new-link {
width: 500px;
border: 1px solid black;
padding: 10px;
background-color: #cee3f8;
}
div.control-group {
margin-bottom: 10px;
}
div.control-group label {
display: block;
width: 50px;
text-align: right;
margin-right: 10px;
}
div.control-group div {
display: table-cell;
}
div.control-group input {
width: 400px;
font-size: medium;
padding: 3px;
}