Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Css/Dark/Main.css
1071 views
1
/*ORIGINAL CREATOR: Luca Garofalo (Lucksi)
2
AUTHOR: Luca Garofalo (Lucksi)
3
Copyright (C) 2021-2023 Lucksi <[email protected]>
4
License: GNU General Public License v3.0*/
5
6
@import url("Style.css");
7
8
.Hidden-bar {
9
display: none;
10
}
11
12
.Hidden-bar button {
13
display: block;
14
margin-top: -50px;
15
float: right;
16
width: fit-content;
17
border:2px solid;
18
border-color: #000000;
19
background-color: #008000;
20
color: #ffffff;
21
border-radius: 10px;
22
font-size: medium;
23
}
24
25
.Hidden-bar button:hover {
26
background-color: #ffffff;
27
color: #000000;
28
}
29
30
.Options {
31
display: none;
32
background-color: #000000;
33
border: 3px solid;
34
border-radius: 10px;
35
border-color: #ffffff;
36
width: auto;
37
}
38
39
.Options a {
40
display:block;
41
color:#ffffff;
42
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
43
font-size: larger;
44
text-align: center;
45
}
46
47
.Cards {
48
display: block;
49
padding: 12px 14px 10px;
50
}
51
52
.Cards a {
53
text-decoration: none;
54
}
55
56
.Cards button {
57
display: block;
58
margin-left: auto;
59
margin-right: auto;
60
height: 40px;
61
min-width: 60px;
62
max-width: 100px;
63
margin-top: 120px;
64
}
65
66
.Cards button:hover {
67
background-color: #ffffff;
68
color: #000000;
69
}
70
71
.Cards img {
72
height: 80px;
73
width: 80px;
74
}
75
76
#Username, #Website, #Phone, #Ports {
77
display: inline-block;
78
margin-left: 10px;
79
border: 3px solid;
80
height: fit-content;
81
width: 300px;
82
border-color: #000000;
83
border-radius: 10px ;
84
}
85
86
#Username {
87
background-color: #ff00005d;
88
}
89
90
#Website {
91
background-color: rgba(0, 128, 0, 0.377);
92
}
93
94
#Phone {
95
background-color: #350f7c;
96
}
97
98
#Ports{
99
background-color: #00ffff23;
100
}
101
102
.Footer {
103
display:none;
104
margin-left: auto;
105
margin-right: auto;
106
animation: dissolvent,1s,1;
107
}
108
.Footer a {
109
text-decoration: none;
110
}
111
112
#Exc {
113
height: 80px;
114
width: auto;
115
}
116
117
.Footer img {
118
display: block;
119
margin-left: auto;
120
margin-right: auto;
121
margin-top: 10px;
122
height: 70px;
123
width: auto;
124
}
125
126
#Arrow {
127
margin-top: 10px;
128
width: 0px;
129
height: 0px;
130
display: block;
131
margin-left: auto;
132
margin-right: auto;
133
border-left: 20px solid transparent;
134
border-right: 20px solid transparent;
135
border-width: 30px;
136
border-top: 30px solid #ffffff;
137
}
138
139
.part {
140
margin-top: 5px;
141
margin-left: -4px;
142
display: inline-block;
143
background-color: #846e6e5e;
144
border: 3px solid black;
145
width: 100%;
146
border-radius: 20px;
147
}
148
149
.part p{
150
font-family: 'Courier New', Courier, monospace;
151
font-weight: bold;
152
color: #ffffff;
153
font-size: x-large;
154
}
155
156
.part img{
157
height: 130px;
158
width: auto;
159
border-radius: 30px;
160
border: 3px solid #ffffff;
161
}
162
163
#Arrow:hover {
164
animation: arrow 2s infinite;
165
}
166
167
@keyframes arrow {
168
0%{border-top:30px solid #ffffff;}
169
50%{border-top:30px solid #00ffff;}
170
100%{border-top:30px solid #ffffff;}
171
}
172
173
@media only screen and (min-width: 712px) and (max-width: 1024px) {
174
175
.Hidden-bar {
176
display: none;
177
}
178
179
.Cards {
180
display: block;
181
padding: 10px 10px 8px;
182
margin-left: 20px;
183
}
184
185
#Username, #Website, #Phone, #Ports {
186
display: inline-block;
187
margin-left: 5px;
188
border: 3px solid;
189
height: fit-content;
190
width: 200px;
191
border-radius: 10px ;
192
}
193
}
194
195
@media only screen and (min-width: 200px) and (max-width: 711px) {
196
197
.Hidden-bar {
198
display: block;
199
animation: dissolvent,2s,1;
200
}
201
202
.Hidden-bar:hover .Options {
203
display: block;
204
animation: dissolvent,2s,1;
205
}
206
207
.Cards {
208
display: none;
209
}
210
211
.languages {
212
display: none;
213
}
214
215
.part img{
216
height: 90px;
217
width: auto;
218
border-radius: 30px;
219
}
220
}
221
222