-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmain.css
82 lines (70 loc) · 1.25 KB
/
main.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
* {
background-image: url("https://wallpaperaccess.com/full/701802.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.name{
text-align: center;
font-size: 9vw;
color: grey;
margin: 4vw 0vw 8.5vw 0vw;
}
.input{
text-align: center;
}
#city{
text-align: center;
width: 45%;
height: 3vw;
font-size: 2vw;
background: #30829025;
margin-right: 3vw;
border-radius: 1vw;
border: none;
outline: none;
}
#btn{
text-align: center;
height: 3.3vw;
width: 20%;
font-size: 2vw;
background: #30829025;
border-radius: 0.8vw;
border: none;
outline: none;
cursor: pointer;
}
#city:hover{
border: 0.15vw inset white;
outline: none;
}
#btn:hover{
border: 0.15vw outset white;
outline: none;
}
#city:active{
background: white;
outline: none
}
#city:visited{
outline: none;
}
#btn:active{
background: white;
outline: none
}
#btn:visited{
outline: none;
}
.weather{
max-width: 60%;
margin: auto;
padding: 1.5vw;
background: none;
text-align: center;
font-size: 2vw;
color:burlywood;
}
.temprature,.humid{
background: none;
}