-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (82 loc) · 1.26 KB
/
style.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
91
92
93
94
95
96
97
98
99
/* Center of Page Stuff */
body {
margin: 0px;
font-size: 13px;
font-family: Arial, Helvetica, sans-serif;
}
.center {
position: absolute;
top: 190px;
left: 50%;
margin-left: -152px;
}
.input {
padding: 15px;
width: 100%;
display: block;
margin-left: -150px;
}
.textfield {
height: 40px;
border: 1px solid rgb(209, 209, 209);
box-shadow: 1px 1px 1px grey;
}
.textfield:hover {
box-shadow: 1px 1px 3px black;
}
.mic {
position: absolute;
width: 40px;
height: 40px;
left: 335px;
bottom: 54px;
}
button {
padding: 0 10px;
height: 30px;
font-weight: bold;
color: gray;
border: none;
margin: 3px;
}
button:hover {
border-style: solid;
border-width: 1px;
border-color: grey;
color: black;
}
/* Header and Footer Stuff */
.header {
margin-top: 10px;
}
.menuicon {
margin-top: 4px;
}
.signinbutton {
background: #4683ea;
color: white;
border: 1px solid #4683ea;
font-size: .8em;
padding: 6px 12px;
font-weight: bold;
margin-left: 10px;
}
ul {
float: left;
}
li {
list-style-type: none;
display: inline;
padding: 10px;
}
.right {
float: right;
margin-right: 30px;
}
.footer {
position:absolute;
bottom:0;
width: 100%;
background-color: #f2f2f2;
border-top: 1px solid #e4e4e4;
}