-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
90 lines (73 loc) · 1.69 KB
/
mystyle.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
87
88
89
*{
margin:0;padding:0;
}
body{width:100%;height:100vh;
background-image: url('weather7.jpg') ;
background-position: center center fixed;
background-size: cover;
font-family:'Reggae One',cursive;
overflow: hidden;
}
.wrapper{
height:75vh;width: 50vh;
margin:100px auto;
background-image: linear-gradient(to bottom, rgb(12, 12, 160) , white);
background-color:rgb(197, 179, 245);
align-items: center;
text-align:center;
box-shadow:5px 5px 15px rgb(11,3,32);
border-radius: 25px;
}
.searchinp{
width:100%;
text-align: center;
margin: top 10px;
}
.searchbar{height:40px;
width:90%;
transition-duration: 0.8sec;
border:none;
outline:none;
padding:3pt;
font-size: 1.2rem;
box-shadow:5px 5px 10px black;
background-image: linear-gradient(to bottom, rgb(255, 174, 0) , rgb(255, 115, 0));
border-radius: 15px;
}
.details{
padding-bottom: 10pt ;
text-align: center;
}
.temperature{font-size:xx-large;
font-weight:bolder;
font-size :4rem;
padding-bottom:10pt;
padding-top:10pt;
text-shadow: 2px 2px #ff0000;;
}
.location{font-size:x-large;
padding-bottom:10pt;
padding-top:10pt;
}
.humidity{font-size:x-large;
padding-bottom:10pt;
padding-top:10pt;}
.weather{font-size:x-large;
padding-bottom:10pt;
padding-top:10pt;}
.footer{float:right;
height:3vh;
}
.searchbar:hover{transform:scale(1.1);}
.date{padding-bottom:10pt;
padding-top:10pt;}
::placeholder {
color:rgb(0, 0, 39);
opacity: 2;
}
.city:hover{transform:scale(1.1);}
.date:hover{transform:scale(1.1);}
.temperature:hover{transform:scale(1.1);}
.hilo:hover{transform:scale(1.1);}
.humidity:hover{transform:scale(1.1);}
.weather:hover{transform:scale(1.1);}