-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
82 lines (69 loc) · 1.14 KB
/
style.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
body {
color: #ddd;
background-color: #333;
font-family: sans-serif;
font-size: 14px;
}
form {
margin-bottom: 20px;
}
input[type="text"] {
background-color: transparent;
border: none;
border-bottom: 1px solid #999;
margin-right: 20px;
outline: none;
color: inherit;
font-size: inherit;
}
input[type="checkbox"] {
margin-right: 5px;
}
em {
font-style: normal;
color: #8BD;
border-bottom: 1px dotted #8BD;
}
ul, ol, li {
list-style-type: none;
margin: 0;
padding: 0;
}
.tweets-column {
width: 360px;
float: left;
}
.tweets-column + .tweets-column {
margin-left: 30px;
}
.tweet {
padding: 5px;
margin: 5px 0;
border-bottom: 1px solid #444;
}
/* meh, clearfix */
.tweet:before, .tweet:after {
content: " ";
display: table;
}
.tweet:after {
clear: both;
}
.tweet__avatar {
float: left;
width: 48px;
height: 48px;
border-radius: 4px;
margin-right: 10px;
}
.tweet__content {
float: left;
width: calc(100% - 58px);
}
.tweet__author {
font-weight: bold;
}
.tweet__handle {
color: #777;
margin-left: 10px;
}