-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
113 lines (94 loc) · 1.68 KB
/
main.css
File metadata and controls
113 lines (94 loc) · 1.68 KB
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
a{
color:black;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
body{
background-color: #FFFFFF;
padding: 0px;
font-family: sans-serif;
color: #5F6368;
font-size: 12px;
font-weight: 400;
}
nav{
padding-top: 10px;
position: absolute;
top:0;
right: 0px;
width: 100%;
align-items: center;
}
svg:hover{
fill:#222325;
}
nav button {
color: white;
background-color: #2d7be0;
padding: 10px 20px;
border: 0px;
border-radius: 5px;
}
nav button:hover {
background-color: #4486F8;
box-shadow: 1px 1px 3px #4486F8;
}
.main{
margin-top: 75px;
padding-top: 10%;
display: grid;
justify-self: center;
justify-items: center;
}
.searchbar{
margin: 25px;
padding: 10px;
min-width: 400px;
border-radius: 50px;
}
.searchbar:hover{
box-shadow: 1px 1px 5px rgb(206, 204, 204);
}
.inline_buttons{
display: inline;
padding: 2px;
}
.inline_buttons button {
border-radius: 5px;
margin: 0px 5px;
padding: 10px;
border: 1px;
color: #202124;
background-color: #F8F9FA;
}
.inline_buttons button:hover{
border: solid 1px #c8c8c8;
}
footer{
position: fixed;
bottom: 0px;
right: 0px;
width: 100%;
padding: 5px 25px 5px 15px;
overflow: hidden;
background-color: #F2F2F2;
}
footer a{
color: #5F6368;
}
footer ul{
padding-left: 50px;
}
ul{
list-style-type:none;
margin: 0px;
padding: 0px;
overflow: hidden;
}
li{
display: inline;
float: right;
padding: 10px 15px;
}