Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Css/Light/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: #000000;
14
background-color: #5983e663;
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: #000000;
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: #000000;
51
background-color: #5983e663;
52
border-radius: 10px;
53
height: 475px;
54
width: 500px;
55
}
56
57
@media only screen and (min-width: 200px) and (max-width: 711px) {
58
59
.Geo {
60
margin-top: 40px;
61
display: block;
62
height: 200px;
63
min-width: 100px;
64
max-width: 220px;
65
}
66
67
.Data p {
68
text-align: center;
69
font-size: 14px;
70
}
71
72
.map {
73
display: block;
74
margin-right: auto;
75
margin-left: -50px;
76
height: 400px;
77
min-width: 150px;
78
max-width: 305px;
79
}
80
}
81
82