blob: 0a7895e38811eba9216fb7af49fe8a3b7fdd2241 (
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
|
#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%;
}
|