-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (114 loc) · 2.02 KB
/
style.css
File metadata and controls
115 lines (114 loc) · 2.02 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
*{
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
}
body{
background-color: royalblue;
color: whitesmoke;
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.mainHeader{
margin-top: 15px;
}
.inputContainer{
display: block;
margin: 20px auto;
width: 90%;
height: 40px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
form{
width: 80%;
}
input{
font-size: 15px;
width: 80%;
padding: 10px;
border-radius: 20px;
outline: none;
border: 0;
}
button{
background-color: transparent;
border: 0;
height: 30px;
width: 30px;
cursor: pointer;
}
.fa-search{
color: white;
text-align: center;
font-size: 1.5em;
}
.header{
margin-bottom: 20px;
}
.response{
display: block;
border-radius: 20px;
width: 90%;
/* height: 100px; */
background-color: white;
color: black;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.box{
margin: 10px 0px 10px 0px;
}
.box p{
font-weight: bold;
}
li:first-child{
color: #D70F32;
}
li:last-child{
color:royalblue;
}
ul{
margin: 5px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
#chart{
display: none;
background-color: white;
margin-top:20px;
margin-bottom: 20px;
}
.choiceafter{
background-color: white;
margin:5px;
border-radius: 6px;
font-weight: bold;
color:grey;
}
.choice{
display: none;
}
#locErr{
background-color: rgb(241, 89, 89);
width: 18%;
margin: 0 auto;
height: 30px;
line-height: 30px;
block-size: auto
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
font-size: 70%;
}