forked from isedgar/interpolation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (117 loc) · 2.33 KB
/
style.css
File metadata and controls
129 lines (117 loc) · 2.33 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body{
height: 100%;
background: #000;
color: #fff;
}
.wrapper{
height: 100%;
}
.subwrapper{
height: 100%;
display: flex;
}
#input{
position: relative;
width: 50%;
height: 100%;
background: rgba(13, 110, 255, 0.3);
overflow: auto;
}
#output{
position: relative;
width: 50%;
height: 100%;
background: rgba(130, 20, 255, 0.3);
overflow: auto;
}
.size-card{
position: fixed;
background: rgba(0,0,0,0.5);
color: #fff;
font-family: 'Courier New', Courier, monospace;
font-size: 16px;
padding: 10px;
opacity: 0;
z-index: 100;
}
.actions{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 50px;
bottom: 0;
background: rgb(0, 0, 0);
}
.open{
/* width: 120px;
height: 30px; */
font-family: 'Courier New', Courier, monospace;
font-size: 20px;
/* border: 2px solid rgb(221, 221, 221); */
color: rgb(221, 221, 221);
/* border-radius: 13px; */
margin: 0 20px;
cursor: pointer;
}
.open:first-child{
line-height: 30px;
}
#type{
font-family: 'Courier New', Courier, monospace;
font-size: 20px;
margin: 0 20px;
}
#factor{
font-family: 'Courier New', Courier, monospace;
font-size: 20px;
margin: 0 20px;
text-align: center;
width: 100px;
}
#loader, #loader:after {
border-radius: 50%;
width: 30px;
height: 30px;
}
#loader {
opacity: 0;
position: absolute;
right: 15px;
top: 12px;
border-top: 3px solid rgba(255, 255, 255, 0.2);
border-right: 3px solid rgba(255, 255, 255, 0.2);
border-bottom: 3px solid rgba(255, 255, 255, 0.2);
border-left: 3px solid #ffffff;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load8 1.1s infinite linear;
animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}