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