-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter.css
127 lines (113 loc) · 1.84 KB
/
twitter.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
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
.navbar .navbar-nav > li > a.purple_btn {
background: #6C307D;
color: #fff;
}
h1 {
text-transform: uppercase;
text-align: center;
font-weight: 100;
font-variant: small-caps;
font-size: 24px;
letter-spacing: -0.1px;
visibility: hidden;
}
#hashtag {
border: none;
background: none;
border-bottom: 1px solid #000;
width: 100%;
text-align: center;
font-size: 32px;
}
#analyze-button {
border: none;
background: none;
width: 100%;
text-align: center;
font-weight: bold;
color: #fff;
background: #6C307D;
font-size: 24px;
line-height: 32px;
padding: 24px;
border-radius: 10px;
}
.explanation-text {
text-align: center;
}
.results-container {
margin-top: 48px;
}
.results {
vertical-align: top;
}
td,
tr {
margin: 0;
padding: 0;
}
td {
padding-bottom: 48px;
}
.results__avatar {
height: 48px;
width: 48px;
border-radius: 48px;
margin: 8px;
}
.results__tweet {
font-size: 16px;
line-height: 24px;
}
.results__score {
display: block;
box-sizing: border-box;
background: #3366cc;
color: #fff;
height: 48px;
width: 48px;
border-radius: 100%;
text-align: center;
font-size: 24px;
line-height: 48px;
}
.results__score--positive {
background: #00af89;
}
.results__score--negative {
background: #dd3333;
}
/* https://loading.io/css/ */
.lds-ripple {
display: none;
margin: 32px auto;
position: relative;
width: 80px;
height: 80px;
}
.lds-ripple div {
position: absolute;
border: 4px solid #6C307D;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
animation-delay: -0.5s;
}
@keyframes lds-ripple {
0% {
top: 36px;
left: 36px;
width: 0;
height: 0;
opacity: 1;
}
100% {
top: 0px;
left: 0px;
width: 72px;
height: 72px;
opacity: 0;
}
}