-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (94 loc) · 1.36 KB
/
style.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
html{
height: 100%;
width: 100%;
}
body {
height:100%;
width: 100%;
margin: 0;
background: linear-gradient(to bottom right,lightgrey, lightblue);
background-repeat: no-repeat;
background-attachment: fixed;
}
#container{
height:50%;
width: 75%;
position: absolute;
left: 13%;
top: 10%;
}
#count{
text-align: center;
padding: 25% 0;
border: 1px solid;
position: relative;
top:25%;
border-radius: 5%;
}
#title{
text-align: center;
}
@keyframes snowfall{
0% {top:-5px;}
100% {top:95%;}
}
.snow{
height:7px ;
width: 7px;
background-color: white;
border:1px,solid;
border-radius: 5px;
position: absolute;
}
#snow1{
right:0px;
animation:snowfall 3s infinite ;
}
#snow2{
animation:snowfall 2s infinite ;
right:14%;
}
#snow3{
animation:snowfall 3.5s infinite ;
right:26%;
}
#snow4{
animation:snowfall 2.1s infinite ;
left:0px;
}
#snow5{
animation:snowfall 2.7s infinite ;
left:18%;
}
#snow6{
animation:snowfall 3s infinite ;
left:30%;
}
#snow7{
animation:snowfall 4s infinite ;
left:57%;
}
.snowpile{
height:150px;
width:150px;
background-color: white;
border:1px,solid;
border-radius: 75px;
position: fixed;
}
#snowpile1{
bottom: -55px;
left:-20px;
}
#snowpile2{
bottom: -60px;
left:85px;
}
#snowpile3{
bottom: -80px;
right:100px;
}
#snowpile4{
bottom: -65px;
right:-20px;
}