-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
95 lines (80 loc) · 1.4 KB
/
Copy pathindex.css
File metadata and controls
95 lines (80 loc) · 1.4 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
.hljs {
color: #e9e9f4;
background: #011627;
border-radius: 8px;
border: 1px solid #84719040;
font-size: 15px;
transition: 0.2s;
}
.mylinks {
text-decoration: none !important;
}
#myspinner {
height: 0px;
transition: 0.3s;
text-shadow: -5px 5px 10px black, 5px 5px 10px black, -5px -5px 10px black, 5px -5px 10px black;
}
#space {
height: 80vh;
}
.hiddenclass,
.hiddenclass>* {
height: 0px;
font-size: 0;
transition: 0.2s;
text-shadow: none;
}
.btn-group {
left: 50%;
transform: translateX(-50%);
}
.maincontainer {
left: 0px;
right: 0px;
top: 0px;
width: 100vw;
height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
transition: 0.3s;
position: fixed;
width: 100%;
z-index: 1000;
border-radius: 10px;
}
.minimized {
top: 10px;
height: 130px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.525);
background-color: #222222;
}
/* .minimized form {
display: flex;
justify-content: stretch;
} */
.minimized h1 {
font-size: 0;
}
.minimized label {
display: none;
}
.btn-outline-primary {
color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-outline-primary:hover {
color: var(--bs-dark);
background-color: var(--bs-success);
}
.form-control {
border-color: var(--bs-gray-200);
flex-grow: 1;
}
.form-control:focus {
background-color: var(--bs-gray-200);
color: var(--bs-dark);
}
i {
font-size: 20px;
}