-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (71 loc) · 1.31 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*styling.css*/
/*add font family, background image*/
body {
color: #5bc0de;
font-family: "Poppins", sans-serif;
}
.fa-map-marker-alt,
.fa-dot-circle {
color: #5bc0de;
}
/*Jumbotron*/
.jumbotron {
background-color: transparent;
margin: 0;
padding: 10px;
}
.jumbotron h1 {
letter-spacing: 2.5px;
font-size: 3.5em;
}
.jumbotron h1,
.jumbotron p {
text-align: center;
}
/*map*/
#googleMap {
width: 30%;
height: 700px;
margin: 10px auto;
}
/*output box*/
#output {
text-align: center;
font-size: 2em;
margin: 20px auto;
}
#mode {
color: black;
}
/* For mobile devices */
@media (max-width: 768px) {
#googleMap,
#output {
width: 100%;
}
.col-xs-12.col-md-6 {
width: 100%;
}
}
#start-button{
align-items: center;
text-align: center;
}
.button-container {
display: flex;
justify-content: center; /* Centers items horizontally */
margin-bottom: 20px; /* Optional: Add margin to separate from other elements */
}
/* Adjust button styles as needed */
.btn {
margin: 0 10px; /* Optional: Add margin between buttons */
background-color: #5bc0de;
border: none;
padding: 10px 20px;
border-radius: 10px;
transition: 0.5s ease;
}
.btn:hover{
cursor: pointer;
background-color: #13b3e4;
}