-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (116 loc) · 2.27 KB
/
style.css
File metadata and controls
139 lines (116 loc) · 2.27 KB
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
130
131
132
133
134
135
136
137
138
139
* { margin: 0; padding: 0; }
a { text-decoration: none; color: blue; }
a:hover { text-decoration: underline; }
body { font: 16px/1.3 'Lucida Grande'; color: #333; background-color:#fff; }
div.tweets {
/* margin-top: 2em;*/
}
li {
white-space: pre-wrap;
}
/*Tweet styles*/
.tweet_list li:nth-child(even), .tweet_list li:nth-child(odd) {
padding: 0.2em 0.4em 0.2em 60px; /* The 60px left margin is to allow room for the profile image */
margin:0;
min-height: 52px; /* To make sure short messages don't cut off profile image */
word-wrap: break-word;
/* border-top: solid 1px #aaa;*/
}
.tweet_list li:nth-child(even) {
background-color: #e0eafa; /* light blue */
}
.tweet_list li.mine {
background-color: #d4f4ce; /* light green */
}
.tweet_list li.tome {
background-color: #f6d2d1 !important; /* pink */
}
.tweet_list span.spam {
text-decoration: line-through;
}
img.profile_image {
float:left;
margin: 3px auto 2px -54px; /* Negative margin places the profile image in the space created by the padding in .tweet_list li */
}
img.inline {
max-width: 95%;
margin-top: .5em;
}
a.user {
font-weight:bold;
font-size: 90%;
color: black;
}
a.reply, a.favorite, a.spam, a.retweet, a.edit, a.delete {
font-weight: bold;
text-decoration: none;
color: black;
float: right;
width: 2em;
text-align: center;
margin-right: -0.4em;
}
a.delete, a.edit {
display: none;
}
a.time {
color: #666;
font-size: 75%;
}
span.info {
color: #666;
font-size: 75%;
font-style: italic;
}
#message_entry {
background-color: #e8e8e8;
margin:0;
padding:0;
position: fixed;
bottom: 0; left: 0;
z-index: 10;
width:100%;
border-top: solid 2px #bebebe;
/* display: none;*/
}
form {
margin: 0.4em 0.5em;
}
textarea#status {
width: 100%;
height: 5em;
font-size: 1em;
font-family: 'Lucida Grande';
line-height: 1.25;
margin-right:auto;
margin-left:auto;
margin-top: .2em;
}
input#send {
float: right;
}
input#image {
float: right;
margin-right: 1em;
}
input#status:focus, input#status:active, a:focus, a:active
{
color:#000;
background-color:#ffa;
}
label {
display:block;
}
label.normal {
color: black;
}
label.warning {
color: red;
}
span.c18th {
font-family: 'IM Fell English', 'Lucida Grande';
font-size: 19px;
}
.invisible {
visibility: hidden;
}