blob: 9840f692f1f751d5198f4db47077a7504ebdacab (
plain)
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
149
150
151
152
153
154
155
156
157
158
159
160
161
|
#brand{
font-size: 2vw;
font-family: "Times New Roman", Georgia, serif;
}
#tag {
padding: 15 15 15 15;
font-size: 3vw;
color: goldenrod;
font-family: Arial, Helvetica, sans-serif;
}
#search_bar {
padding-top: 3.5%;
}
#center_row {
background-color: #A5C9FF;
height: 420px;
padding: 5%;
text-align: center;
}
#container_img {
margin: auto;
}
form.example input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 70%;
background: #f1f1f1;
}
form.example button {
padding: 6px;
width: 30%;
background:#F5404C;
color: white;
font-size: 150%;
border: 1px solid grey;
border-left: none;
cursor: pointer;
}
form.example button:hover {
background: red;
}
form.example::after {
content: "";
clear: both;
display: table;
}
* {
box-sizing: border-box;
}
#btns {
padding:25 25 25 25;
font-size: 155%;
font-family: 'Lato', sans-serif;
}
#btns > a {
color: white;
}
iframe {
margin-bottom: 3%;
}
hr {
color: darkgrey;
background-color: darkgray;
height: 3px;
}
#r4 {
margin-bottom: 1%;
}
/* Style all font awesome icons */
.fa {
padding: 6px;
font-size: 40px;
width: 40px;
text-align: center;
text-decoration: none;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.7;
}
/* Facebook */
.fa-facebook {
background: #3B5998;
color: white;
}
/* Google */
.fa-google {
background: #dd4b39;
color: white;
}
/* Youtube */
.fa-youtube {
background: #bb0000;
color: white;
}
#social a{
color: white;
}
#circle:hover {
background-color: #ffe0b2;
border-radius: 50%;
}
.footer{
right: 0;
left: 0;
<<<<<<< HEAD
bottom: 0;
padding: 1rem;
=======
position: relative;
bottom: 0;
owerflow: hidden;
padding: 95px;
>>>>>>> cfdc41deed280bddbcc6c3cf45e30f33ea139e88
text-align: center;
}
a{
color:white;
}
a:hover{
color:white;
background-color: gray;
}
.navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
content: "";
background: no-repeat center center;
background-size: 100% 100%;
background-color: white;
}
|