-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
50 lines (44 loc) · 867 Bytes
/
homepage.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
#tch_logo{
display: block;
margin-left: auto;
margin-right: auto;
width: 45%;
padding: 80px 0;
text-align: center;
}
body{
background-color:ivory;
}
* {
box-sizing: border-box;
}
/* Style the search field */
form.searchbar input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 40%;
background: #f1f1f1;
}
/* Style the submit button */
form.searchbar button {
float: left;
width: 5%;
padding: 10px;
background: #2196F3;
color: white;
font-size: 17px;
border: 1px solid grey;
border-left: none; /* Prevent double borders */
cursor: pointer;
}
form.searchbar button:hover {
background: #0b7dda;
}
/* Clear floats */
form.searchbar::after {
content: "";
clear: both;
display: table;
}