Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Css/Dark/Website.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
.Data {
9
display:inline-block;
10
justify-content: left;
11
width: 750px !important;
12
border: 3px solid;
13
border-color: #ffffff;
14
border-radius: 10px;
15
background-color: #1a07076c;
16
overflow:hidden;
17
word-wrap: normal;
18
height:fit-content;
19
}
20
21
.Data p {
22
text-align: center;
23
color: #ffffff;
24
font-size: medium;
25
}
26
27
.Geo {
28
display: inline-block;
29
position: absolute;
30
margin-top: -30px;
31
margin-right: auto;
32
margin-left: auto;
33
margin-bottom: 500px;
34
margin-left: 50px;
35
}
36
37
.Geo p {
38
display: block;
39
margin-top: 20px;
40
text-align: center;
41
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
42
font-size: x-large;
43
}
44
45
.map {
46
display: block;
47
justify-content: left;
48
border:2px solid;
49
border-color: #ffffff;
50
background-color: #1a07076c;
51
border-radius: 10px;
52
height: 475px;
53
width: 500px;
54
}
55
56
@media only screen and (min-width: 200px) and (max-width: 711px) {
57
58
.Geo {
59
margin-top: 40px;
60
display: block;
61
height: 200px;
62
min-width: 100px;
63
max-width: 220px;
64
}
65
66
.Data p {
67
font-size: 14px;
68
}
69
70
.map {
71
display: block;
72
margin-right: auto;
73
margin-left: -50px;
74
height: 400px;
75
min-width: 150px;
76
max-width: 305px;
77
}
78
}
79
80