Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Css/High-Contrast/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
background-color: #cdd5e618;
15
border-radius: 10px;
16
overflow:hidden;
17
word-wrap: normal;
18
height:fit-content;
19
}
20
21
.Data p {
22
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
23
text-align: center;
24
color: #ffffff;
25
font-size: medium;
26
}
27
28
.Geo {
29
display: inline-block;
30
position: absolute;
31
margin-top: -30px;
32
margin-right: auto;
33
margin-left: auto;
34
margin-bottom: 500px;
35
margin-left: 50px;
36
}
37
38
.Geo p {
39
display: block;
40
margin-top: 20px;
41
text-align: center;
42
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
43
font-size: x-large;
44
}
45
46
.map {
47
display: block;
48
justify-content: left;
49
border:2px solid;
50
border-color: #ffffff;
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
text-align: center;
68
font-size: 14px;
69
}
70
71
.map {
72
display: block;
73
margin-right: auto;
74
margin-left: -50px;
75
height: 400px;
76
min-width: 150px;
77
max-width: 305px;
78
}
79
}
80