-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (90 loc) · 1.68 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
83
84
85
86
87
88
89
90
#batch_mutter{
min-width: 250px;
min-height: 100px;
margin-bottom: 10px;
}
#btn_mutter{
border:none;
text-align: center;
background: #1DA1F2;
border-radius: 100px;
height: 30px;
width: 100px;
color:white;
font-size: 14px;
font-weight: 600;
transition: all ease-In 0.2s ;
cursor: pointer;
}
#btn_mutter:hover{
transform: scale(1.03) translateY(-3px);
box-shadow: 0 3px 5px rgba(0,0,0,.2);
transition: all ease-In 0.2s ;
}
#link-more{
color: #1DA1F2;
cursor: pointer;
}
#more-options{
display: none;
padding: 15px 0;
text-align: left;
}
#more-options input{
margin-bottom: 5px;
}
#btn-more{
border:none;
display: block;
text-align: center;
background: #1DA1F2;
border-radius: 50px;
height: 15px;
width: 40px;
color:white;
font-size: 12px;
font-weight: 400;
transition: all ease-In 0.2s ;
cursor: pointer;
padding: 5px;
}
.twitter-image{
width: 30px;
height: 30px;
transition: all ease-In 0.2s ;
}
.twitter-image:hover{
opacity: 0.6;
transition: all ease-In 0.2s ;
}
.wrapper{
padding: 10px;
text-align: center;
}
#textarea-div{
position: relative;
}
#custom{
width: 100%;
height: 20px;
}
.loader {
position: absolute;
top:calc(50% - 45px);
left:calc(50% - 45px);
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #1DA1F2; /* Blue */
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
display: none;
}
.half-width{
width: 50%;
float: left;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}