-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (86 loc) · 1.44 KB
/
style.css
File metadata and controls
88 lines (86 loc) · 1.44 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
html {
height: 100%;
width: 100%;
}
body{
background-color: burlywood;
}
.wrapper{
background-color:whitesmoke;
height:450px;
width:400px;
display:flexbox;
justify-content: center;
flex-flow: column;
margin: 30px auto;
padding:50px auto;
outline: 2px solid black;
}
.title{
background-color: floralwhite;
color:#d17600;
text-align:center;
height:17%;
padding-bottom: 5px;
margin-bottom: 10px;
display: flex;
justify-content: center;
outline: 2px solid #dda336;
}
.inputDiv{
height:10%;
margin: 10px auto;
padding:5px;
display:flex;
justify-content: center;
}
.inputBox{
width:80%;
background-color: wheat;
color:#352003;
font-size: 1.5rem;
border:2px solid #71644b;
border-radius: 5%;
}
.buttonDiv{
display:flex;
justify-content: center;
}
.searchBtn{
height:40px;
width:100px;
margin:5px auto;
background-color: #ffa600;
font-weight: bold;
border-radius: 10%;
}
.displayDiv{
margin-top: 10px;
height: 49%;
display:flex;
justify-content:space-evenly;
flex-flow: column;
text-align:center;
}
#city{
background-color:floralwhite;
outline: 2px solid #8c7d7d;
height:20%;
margin-top: 25px;
padding-bottom: 15px;
color:#543b3b;
font-weight: bold;
}
.displayText{
padding:0;
margin-top:2px;
height:25%;
display: flex;
justify-content:center;
background-color: palegoldenrod;
color:#270349;
font-size:0.8rem;
}
#minmax{
justify-content: space-evenly;
}