-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwikipedia.css
58 lines (50 loc) · 837 Bytes
/
wikipedia.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
body {
background: #2F4F4F;
font-family: Oswald;
}
#main {
margin: auto;
margin-top: 5%;
width: 50%;
}
#main * {
background: #ddd;
margin: auto;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
width: 50%;
}
a {
color: black;
text-decoration: none;
}
#searchbox {
border: 4px solid black;
border-radius: 20px;
width: 75%;
}
#searchbox:focus {
outline: none;
}
.resultBox {
background: #aaa;
border: 3px solid black;
cursor: pointer;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 10px;
padding-right: 10px;
margin: auto;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
width: 70%;
}
.resultBox:hover {
background: grey;
border: 3px solid white;
}
.title {
font-size: 150%;
}