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