-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
128 lines (107 loc) · 1.7 KB
/
index.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
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html, body, .main{
min-height: 100% !important;
height: 100%;
}
body{
background-color:#000;
}
#table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 90%;
font-size:13px;
color:lime;
margin:auto;
display:none;
border-style:dotted;
padding:10px;
}
#table th{
text-align:left;
}
#table td:nth-child(odd) {
font-weight:1000;
}
#table td:nth-child(even) {
font-weight:500;
}
#main{
height:100%;
width:100%;
background-color:#000;
overflow-y:scroll;
color:lime;
font-size:10px;
padding:10px 0 0 10px;
}
#animation{
display:none;
}
pre{
color:red;
font-size:13px;
margin-left:20px;
}
#code{
display:none;
}
#line2{
display:none;
}
#code2{
display:none;
}
.red{
color:red;
}
.blue{
color:dodgerblue;
}
.white{
color:white;
}
.progress,.progress1{
background: rgba(255,255,255,0.1);
justify-content: flex-start;
border-radius: 100px;
align-items: center;
position: relative;
padding: 0 5px;
display: none;
height: 40px;
width: 100%;
}
#progress{
display:none;
}
.progress-value {
animation: load 3s normal forwards;
transition-delay:3s;
box-shadow: 0 10px 40px -10px lime;
border-radius: 100px;
background: lime;
height: 30px;
width: 0;
}
@keyframes load {
0% { width: 0; }
100% { width: 100%; }
}
.swal-overlay {
background-color: rgba(43, 165, 137, 0.45);
}
.swal-modal {
background-color: #343434;
}
.swal-button {
padding: 7px 19px;
border-radius: 2px;
font-size: 12px;
border: 1px solid #3e549a;
text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}