-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (125 loc) · 2.17 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
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
#header {
width: 100%;
height: 10%;
border: 2px solid black;
text-align: center;
vertical-align: middle;
top: 0;
right: 0;
left: 0;
position: fixed;
}
#body {
display: flex;
justify-content: space-around;
width: 100%;
margin-top: 12%;
}
.grid {
display: grid;
grid-template-columns: auto auto auto;
}
.nonet {
display: grid;
grid-template-columns: auto auto auto;
/* background-color: rgb(35, 35, 35); */
/* padding: 5px; */
width: 150px;
height: 150px;
}
.box {
border:none;
background-color:rgba(0,0,0,0);
width: 94%;
height: 94%;
text-align: center;
font-size: 2rem;
}
.highlight {
background-color: rgba(4, 183, 207, 0.3);
}
#run {
margin-top: 10%;
}
#import-button {
margin-top: 10%;
}
#clear-grid {
margin-top: 10%;
}
/* input:read-only {
background-color: red;
} */
#canvas {
position:absolute;
z-index: -1;
}
/* #canvas-grid {
display:grid;
} */
/* Loading screen */
#loading {
position:fixed;
top: 0px;
left:0px;
width: 100%;
height: 100%;
margin-left: 0px;
margin-right: 0px;
padding: 0px;
text-align: center;
background-color: rgba(70, 70, 70, 0.8);
display:flex;
justify-content: center;
display:none;
}
.vertical-center {
margin: 0;
position: absolute;
top: 50%;
background-color: #ababab;
padding: 10px, 0px;
vertical-align: middle;
}
::placeholder {
color: peru;
opacity: 1; /* Firefox */
}
/* Taken from https://loading.io/css/ with CC0 liscence */
.lds-ring {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
vertical-align: middle;
}
.lds-ring div {
box-sizing: border-box;
display: block;
position: absolute;
width: 64px;
height: 64px;
margin: 8px;
border: 8px solid #fff;
border-radius: 50%;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
animation-delay: -0.15s;
}
@keyframes lds-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* End loading screen */