-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewchanger.css
82 lines (64 loc) · 1.14 KB
/
viewchanger.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
body{
font-family: 'Roboto', sans-serif;
background-color: grey;
}
hr{
width: 50px;
margin: 0 auto 65px auto;
}
/* header ******************************/
header {
width:100%;
height: 30px;
position: fixed;
left: 0;
top: 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
font-weight: bold;
font-size:medium;
}
/* navigation **************************/
nav {
margin: 0px 50px 0 0;
float: right;
}
nav ul {
margin-top: 5px;
}
nav ul li {
float: left;
list-style-type: none;
margin-right: 16px;
}
nav ul li:hover {
padding-top: 3px;
}
nav ul li a {
color:rgb(0, 0, 0);
text-decoration: none;
}
nav ul li a:hover {
color:rgb(171, 171, 171);
}
/* Searchbar ************************/
form {
margin-top: 2px;
margin-left: 10px;
}
input {
border-radius: 0px;
border-width: 1px;
font-family: 'Roboto', sans-serif;
color:rgb(68, 68, 68);
background-color: darkgrey;
font-weight: bold;
height: 20px;
}
#submitbutton {
height: 23.6px;
color: black;
}
#submitbutton:hover {
color:rgb(171, 171, 171);
background-color: gray;
}