-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (46 loc) · 911 Bytes
/
styles.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
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#content {
display: grid;
grid-template-rows: 1fr 9fr;
height: 100vh;
}
#header {
display: flex;
margin-left: 1rem;
flex-direction: row;
justify-content: left;
align-content: center;
}
#header h2 {
margin: 0;
padding: 0;
align-self: center;
min-width: 20vw;
}
#map {
min-height: 10vh;
height: 100%;
width: 100vw;
}
#btn {
font-family: inherit;
margin: 1rem 2rem ;
padding: 1rem;
background-color: rgb(255, 204, 0);
text-transform: uppercase;
border: 4px solid black;
border-radius: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bolder;
}
#btn:hover {
border: 4px solid grey;
box-sizing: border-box;
}
a {
text-decoration: none;
color: rgb(255, 82, 2);
}