-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (118 loc) · 2.91 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* 1.covid 19 repnse fund donate button, 2.map, 3.showing number in different colors
4.hover, 5.chart, 6.search bar, 7.share logo, info logo, 8.vaccintion animated pic, 9.safety guidelines
, 10.vaccination process explain */
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: rgb(163, 14, 26);
color: bisque;
}
body {
background-color: bisque;
}
.hh {
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
line-height: normal;
font-size: 47px;
border-width: 5px;
letter-spacing: normal;
text-align: justify;
color: rgb(139, 0, 139);
background-color: darkorchid;
margin-top: 0px;
padding-top: 10px;
padding-bottom: 10px;
}
.slider {
width: 70%;
height: 400px;
position: relative;
left: 18%;
right: 50%;
top: 75%;
background-image: url("https://images.pexels.com/photos/8736416/pexels-photo-8736416.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
background-size: 100% 100%;
box-shadow: 1px 2px 10px darkslateblue;
animation: slide 15s infinite linear;
}
@keyframes slide {
0% {
background-image: url("https://images.pexels.com/photos/8736416/pexels-photo-8736416.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
}
35% {
background-image: url("https://images.pexels.com/photos/4037279/pexels-photo-4037279.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
}
85% {
background-image: url("https://images.pexels.com/photos/4386466/pexels-photo-4386466.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
}
}
.button {
background-color: white; /* Green */
border-color: rgb(107, 0, 128);
color: blue;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 25px;
}
.button:hover {
transition-duration: 0.3s;
cursor: pointer;
background-color: rgb(47, 255, 151);
color: rgb(0, 30, 128);
}
.vacst {
color: crimson;
background-color: darkorange;
float: left;
margin-top: 25px;
width: 100%;
border-color: red;
margin-left: 0%;
}
input[type="text"] {
width: 89px;
-webkit-transition: width 0.3s ease-in-out;
transition: width 0.3s ease-in-out;
padding-top: 0px;
/* border-spacing: 15px; */
color: rgba(73, 22, 15, 0.89);
background-color: white;
font-weight: normal;
font-family: monospace;
font-size: 20px;
float: right;
}
input[type="text"]:focus {
width: 40%;
}
details > summary {
padding: 4px;
font-size: 20px;
width: 100%;
background-color: white;
border: none;
box-shadow: 1px 1px 2px #bbbbbb;
cursor: pointer;
}
details > p {
background-color: #eeeeee;
padding: 4px;
margin: 0;
box-shadow: 1px 1px 2px #bbbbbb;
}