forked from team-piranha/Chrome-NoteTakerExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (85 loc) · 1.29 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
select {
margin: 10px;
}
html, body{
margin: 0px;
min-width: 230px;
}
*{
box-sizing: border-box;
}
*:focus{
outline: none;
}
#mainPopup {
padding: 10px;
width: 320px;
min-height: 100px;
font-family: Helvetica, Ubuntu, Arial, sans-serif;
}
.hidden {
display: none;
}
.loading {
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
}
.loading-bar {
display: inline-block;
width: 2px;
height: 16px;
border-radius: 0px;
animation: loading 1s ease-in-out infinite;
}
.loading-bar:nth-child(1) {
background-color: #eb5424;
animation-delay: 0;
}
.loading-bar:nth-child(2) {
background-color: #44c7f4;
animation-delay: 0.09s;
}
.loading-bar:nth-child(3) {
background-color: #16214d;
animation-delay: .18s;
}
.loading-bar:nth-child(4) {
background-color: #eaca2c;
animation-delay: .27s;
}
@keyframes loading {
0% {
transform: scale(1);
}
20% {
transform: scale(1, 2.2);
}
40% {
transform: scale(1);
}
}
.logout-button {
margin-bottom: 10px !important;
}
.login-button {
margin: 10px !important;
}
.floater-profile * {
color: #fff;
}
label {
display: inline;
}
p {
font-size: 12px;
margin: 8px .5px 4.5px;
}
.container2{
flex-direction: row;
flex-wrap: nowrap;
}
.penguin{
height: 30px;
}