-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
81 lines (68 loc) · 1.12 KB
/
styles.css
File metadata and controls
81 lines (68 loc) · 1.12 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #232323;
color: #aaa;
font-family: 'Raleway', sans-serif;
text-align: center;
font-size: 30px;
}
h1{
font-size: 75px;
padding-top: 120px;
padding-bottom: 40px;
text-transform: uppercase;
}
h2{
padding-bottom: 20px;
text-transform: uppercase;
}
h3{
text-transform: uppercase;
margin-bottom: 0px;
font-size: 30PX;
}
.temp-div a{
text-transform: uppercase;
display: none;
padding-top: 0;
padding-bottom: 25px;
}
.temp-div a:hover,
.temp-div a:visited,
.temp-div a:active{
text-decoration: none;
color: #007bff;
}
i{
font-size: 80px;
padding-top: 30px;
}
.fas{
display: none;
}
.animation-icon{
position: relative;
animation-name: weatheranimation;
animation-duration: 7s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@keyframes weatheranimation {
0%{
top: 0px;
left: -75px;
opacity: 0;
}
50%{
opacity: 1;
}
100%{
top: 0px;
left: 100px;
opacity: 0;
}
}