-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
90 lines (76 loc) · 1.66 KB
/
main.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
body, html {
background-color: rgb(32, 32, 32);
}
html {
border-top: 3px solid #00CC0A;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
* {
margin: 0 auto;
}
.header {
display: inline-block;
text-align: center;
}
.logo {
display: inline;
padding-right: 0;
padding-top: 5px;
}
.title {
font-size: 15pt;
color: white;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: inline;
}
input {
padding: 10px;
margin-left: 10px;
margin-right: 10px;
background: none;
border: none;
border-radius: 25px;
color: white;
outline: none;
width: 270px;
font-size: 12pt;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
}
input:focus {
background-color: rgb(45, 45, 45);
}
.date::-webkit-calendar-picker-indicator {
filter: invert(1);
cursor: pointer;
}
#buttonimage:hover {
content: url("images/Search_Hover.png");
}
.filter-div {
margin: 5px;
display: flex;
justify-content: center;
}
.filter {
background-color: rgb(45, 45, 45);
border: none;
color: rgb(167, 167, 167);
margin-left: 5px;
margin-right: 5px;
font-family: Arial, Helvetica, sans-serif;
width: 65px;
height: 65px;
padding: 0;
border-radius: 50px;
cursor: pointer;
}
#image1:hover {
content: url("images/FamilySearch_Hover.png");
}
#image2:hover {
content: url("images/Ancestory_Hover.png");
}
#image3:hover {
content: url("images/Census_Hover.png");
}