-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
148 lines (125 loc) · 2.79 KB
/
style.css
File metadata and controls
148 lines (125 loc) · 2.79 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body{
background-image: url("image/gg.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.btn-primary{
margin: 10px 50px 50px 50px;
}
.form-control{
margin: auto;
width: 25%;
padding: 10px;
}
.display{
margin-top: 50px;
}
#myChart{
margin: 20px;
background: #fff;
box-shadow: 0 20px 50px rgba(0,0,0,.1);
border-radius: 10px;
transition: 0.5s;
width: 635px;
height: 380px;
}
#myChart:hover{
box-shadow:0 30px 70px rgba(0,0,0,.2);
}
#myChart1{
margin: 20px;
background: #fff;
box-shadow: 0 20px 50px rgba(0,0,0,.1);
border-radius: 10px;
transition: 0.5s;
width: 635px;
height: 380px;
}
#myChart1:hover{
box-shadow:0 30px 70px rgba(0,0,0,.2);
}
.weather-wrapper {
margin-top: 20px;
display: flex;
flex-direction: row;
justify-content: center;
}
sup {
font-size: 15px;
top: -1.5em;
}
.weather-card {
margin: 20px 5px;
border-radius: 20px;
position: relative;
overflow: hidden;
width: 270px;
height: 270px;
background-image: url("image/orgCard.jpg");
background-size: cover;
background-position: center center;
box-shadow: 0px 20px 25px 1px rgba(46, 49, 49, 1);
animation: appear 500ms ease-out forwards;
}
.weather-card:hover {
background-image: url("image/bluCard.jpg"); no-repeat;
}
.weather-card h1{
position: absolute;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 40px;
color: white;
bottom: 50;
left: 35px;
animation: title-appear 500ms ease-out 500ms forwards;
}
.weather-card .dates{
top: 20px;
position: absolute;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 18px;
color: white;
transform: translateX(10px);
animation: title-appear 500ms ease-out 500ms forwards
}
.weather-card p{
position: absolute;
font-family: 'Lato', sans-serif;
font-weight:300;
font-size:28px;
color: white;
bottom: 0;
left: 35px;
animation: title-appear 1s ease-out 500ms forwards;
}
.weather-icon {
position: relative;
width: 50px;
height: 50px;
top: 40;
right: 30px;
float: right;
margin: 40px 40px 0 0;
animation: weather-icon-move 5s ease-in-out infinite;
}
.card {
width: 50%;
height: 220px;
left: 25%;
background: #fff;
box-shadow: 0 20px 50px rgba(0,0,0,.1);
border-radius: 10px;
transition: 0.5s;
}
.card:hover {
box-shadow:0 30px 70px rgba(0,0,0,.2);
}
.card .box {
position: absolute;
padding: 20px;
box-sizing: border-box;
width: 100%;
}