-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtwitter.css
More file actions
73 lines (61 loc) · 1003 Bytes
/
twitter.css
File metadata and controls
73 lines (61 loc) · 1003 Bytes
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
body {
margin: auto;
height: 100%;
}
.error_message {
width: 10%;
height: 15%;
position: absolute;
float: right;
background-color: yellow;
display: none;
}
.background {
padding-top: 100px;
height: 100%;
background-color: blue;
margin: auto;
width: 75%;
}
.header {
width: 60%;
margin: auto;
background-color: black;
}
.feed {
text-align: center;
color: white;
padding-top: 50px;
width: 60%;
margin: auto;
background-color: black;
}
.send_button {
height: 50px;
background-color: green;
float: right;
width: 30%;
text-align: center;
}
.message_input {
resize: none;
height: 44px;
/* ^Adds 6 pixels for no reason, should be 50 pixels*/
background-color: red;
width: 60%;
}
.message{
padding-top: 10px;
background-color: green;
}
.unmarked_tweet{
border: 1px solid;
padding: 5px;
background-color: #4477b2;
}
.marked_tweet{
border: 1px solid;
padding:1px;
color: rgba(0, 0, 0, 0.1);
background-color:#aec5e0;
}