-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.css
48 lines (46 loc) · 988 Bytes
/
weather.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
*{
box-sizing: border-box;
}
body{
background-color: skyblue;
padding: 20px;
}
.row {
display: flex;
}
input[type=submit]:hover{
background-color: chartreuse;
}
input[type=submit]
{
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-position: 10px 10px;
padding: 12px 20px 12px 40px; background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 20px;
}
input[type=text] {
width: 70%;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('https://img.icons8.com/search');
background-size: 25px;
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
}
/* Create two equal columns that sits next to each other */
.column {
flex: 50%;
padding: 10px;
height: 300px; /* Should be removed. Only for demonstration */
}
td{
font-weight: bold;
}