-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
112 lines (93 loc) · 1.46 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
html {
height: 100vh;
}
#root {
opacity: 0.1;
transition: opacity 0.5s ease-in-out;
}
#root.loaded {
opacity: 1;
}
body {
background-color: rgb(75, 75, 75);
height: 100%;
color: whitesmoke;
overflow: hidden;
font-family: 'Courier New', Courier, monospace;
}
a:link {
color: rgb(31, 111, 235)
}
.container {
background-color: rgb(51, 51, 51);
display: flex;
flex-direction: column;
}
.tools {
position: fixed;
left: 0;
top: 0;
background-color: rgba(27, 27, 27, 0.233);
border-radius: 6px;
z-index: 9999;
color: blanchedalmond;
font-size: 2.5rem;
align-items: center;
display: flex;
}
.tools a {
text-decoration: none;
color: blanchedalmond;
font-size: 2.5rem;
padding: 2.5px;
}
.title {
background-color: rgb(77, 77, 77);
text-align: center;
}
.title h1 {
color: whitesmoke;
margin: 0;
}
.selector {
font-size: 0.4em;
border-radius: 6px;
}
.composer {
flex-grow: 1;
display: flex;
flex-direction: row;
}
.input {
flex-grow: 1;
margin: 1%;
}
.output {
flex-grow: 1;
flex-wrap: wrap;
margin: 1%;
font-size: larger;
overflow: auto;
background-color: #1e1e1eff
}
.resizer {
background-color: #151515;
cursor: ew-resize;
width: 10px;
}
.loader {
position: absolute;
left: calc(50% - 50px);
top: calc(50% - 50px);
width: 100px;
height: 100px;
animation: spin 1s linear infinite;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.disabled {
display: none;
}