-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
69 lines (64 loc) · 1.04 KB
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
* {
margin: 0px;
padding: 0px;
}
nav {
height: 10%;
width: 100%;
background-color: rgb(117, 207, 240);
}
#grid {
display: grid;
grid-template-columns: repeat(2, 50%);
width: 95%;
margin-top: 2.5%;
grid-gap: 2.5%;
height: 83%;
}
#map {
width: 100%;
height: 100%;
float: right;
}
#infocont {
width: 100%;
height: 100%;
margin-left: 2.5%;
background-color: rgba(128, 128, 128, 0.055);
}
#input {
height: 40px;
width: 300px;
border: 0.5px solid rgb(172, 169, 169);
border-radius: 10px;
text-align: center;
color: green;
margin-top: 1%;
}
#btn {
height: 40px;
border: 0px;
background-color: yellowgreen;
width: 70px;
border-radius: 10px;
cursor: pointer;
}
#gretings {
float: right;
margin-top: 1%;
margin-right: 1%;
color: rgb(22, 37, 19);
font-size: larger;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
#infostack {
margin-top: 2%;
font-weight: lighter !important;
color: rgb(19, 20, 19);
}
#logo {
margin-top: 1%;
margin-left: 1%;
font-size: x-large;
}