-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
152 lines (130 loc) · 2.15 KB
/
main.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
padding-top: 80px;
}
.navbar-brand {
padding: 15px 8px;
}
.starter-template {
padding: 8px 0px;
text-align: center;
}
.container {
padding-right: 0px;
padding-left: 0px;
}
.container>.navbar-header {
padding-right: 15px;
padding-left: 15px;
}
.btn-cromo {
width: 50px;
height: 46px;
margin: 0 3px 3px 0;
}
.btn-repetida {
background-color: yellowgreen;
color: #fff;
border-color: #4cae4c;
}
.btn-repetida:hover, .btn-repetida:focus, .btn-repetida:active, .btn-repetida.active, .open > .dropdown-toggle.btn-repetida {
background-color: yellowgreen;
color: #fff;
border-color: #4cae4c;
}
.btn-repetida:active, .btn-repetida.active {
background-color: yellowgreen;
color: #fff;
border-color: #4cae4c;
}
.btn-header {
margin-top: 8px;
}
.importCromoMenu li {
width: 300px;
}
.importCromoMenu textarea {
height: 200px;
width: 100%;
}
.compareCromoMenu li {
width: 240px;
}
.compareCromoMenu textarea {
height: 110px;
width: 100%;
}
.tooltip-contagem {
width: 280px;
max-width: unset;
}
.flag {
display: inline-block;
width: 62px;
font-family: monospace;
font-size: medium;
line-height: 2em;
}
.flag img {
width: 32px;
}
.btn-check span.glyphicon-ok {
opacity: 0;
}
.btn-check.active span.glyphicon-ok {
opacity: 1;
}
.dropdown-menu {
left: -60%;
}
#loading {
opacity: 0.5;
background: #000;
width: 100%;
height: 100%;
z-index: 10;
top: 0;
left: 0;
position: fixed; -color: grey;
}
/* LOADING ANIM */
i {
height: 2em;
width: 2em;
border-radius: 100%;
background: #fff;
display: block;
margin: 25% auto;
position: absolute;
left: 50%;
animation: spin 2s ease infinite;
}
i:before, i:after {
content: '';
display: block;
position: absolute;
height: inherit;
width: inherit;
background: inherit;
border-radius: inherit;
animation: spin 2s ease infinite;
}
i:before {
left: -2.3em;
}
i:after {
left: 2.3em;
}
@keyframes spin {
0% {
top: 0;
transform: rotate(0deg);
}
50% {
top: -4em;
transform: rotate(-180deg);
}
100% {
top: 0;
transform: rotate(-360deg);
}
}