-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.php
More file actions
109 lines (88 loc) · 1.8 KB
/
style.php
File metadata and controls
109 lines (88 loc) · 1.8 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
<style type="text/css">
html{
scroll-behavior: smooth;
}
{*margin: 0; padding: 0; box-sizing:border-box; font-family: 'Muli',sans-serif;}
.row{
margin-left: 0!important; margin-right: 0!important;
}
.nav_style{
background-color: #a29bfe!important;
}
.nav_style a{color :#fff;
}
/* mainheader */
.main_header{
height: 450px;
width: 100%;
}
.rightside h1{
font-size: 3rem;
}
.corona_rot img{
animation: gocorona 3s linear infinite;
}
@keyframes gocorona{
0% { transform: rotate(0);}
100% { transform: rotate(360deg);}
}
.leftside img{ animation: heartbeat 5s linear infinite; }
@keyframes heartbeat
{
0% { transform: scale(.75);}
20% { transform: scale(1);}
40% { transform: scale(.75);}
60% { transform: scale(1);}
80% { transform: scale(.75);}
100% { transform: scale(.75);}
}
/* **************coronaupdates******************** */
.corona_update{
margin: 0 0 30px 0;
}
.corona_update h3{
color:#ff7675;
}
.corona_update h1{
font-size: 2rem; text-align: center;
}
/* **************ABOUTSECTION****************** */
.sub_section{
background-color: #fbfafd;
}
/* FOOTER STYLE */
.footer_style{
background-color: #a29bfe!important;
}
.footer_style{
margin-bottom: 0!important;
}
/* TOP SCROLL */
#mybtn{
display: none;
position: fixed;
bottom: 30px;
right: 40px;
z-index:99;
border: none;
outline: none;
background-color: #00A8FF;
color: white;
cursor: pointer;
padding: 10px;
border-radius: 10px;
}
#mybtn:hover{
background: #606060;
}
/* RESPONSIVENESS */
@media only screen and (max-width:768px){
.mainheader{ height: 700px; text-align: center; }
.mainheader h1{
text-align: center;
padding: 0;
width: 100%;
font-size: 3px;
}
}
</style>