-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.css
100 lines (82 loc) · 1.45 KB
/
app.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
91
92
93
94
95
96
97
98
99
100
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
background-image: url('https://abs.twimg.com/images/themes/theme1/bg.png');
background-color: #C0DEED;
background-repeat: no-repeat;
}
.app {
display: flex;
flex-direction: row;
justify-content: center;
}
.app-center-column {
display: flex;
flex-direction: column;
justify-content: center;
}
.status-view {
margin-top: 5px;
margin-bottom: 5px;
background-color: white;
border-radius: 3px;
padding: 10px;
}
.status-view-refresh-icon {
}
.spin-element {
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.status-view-refresh-icon:hover {
filter: drop-shadow(0px 0px 2px #000);
}
@keyframes spin {
from: {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.tweet-list {
width: 500px;
background-color: white;
border-radius: 5px;
}
.tweet-item {
display: flex;
flex-direction: row;
cursor: pointer;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.tweet-item-details {
margin-left: 10px;
}
.tweet-item:hover {
background-color: #efefef;
}
.tweet-item-user-icon {
border-radius: 3px;
width: 48px;
height: 48px;
}
.tweet-item-user-description {
font-weight: bold;
padding-right: 5px;
}
.tweet-item-user-screen-name {
color: #bbb;
font-size: 12px;
}
.tweet-item-date {
color: #bbb;
}
.tweet-item-text {
}
.tweet-item-selected {
background-color: #eee;
}