-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
65 lines (57 loc) · 1021 Bytes
/
app.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
body{
background-color: white; margin: 0; font-family: 'arial' , 'sans-serif'; font-size: 14px;
}
.nav {
padding: 0;
margin: 0;
}
.nav li {
display: inline-block;
list-style: none;
}
.nav > li > a {
display: block;
padding: 10px;
color: #bbbbbb;
text-decoration: none;
}
.nav > li > a:hover {
color:#ffffff;
text-decoration: none;
}
.navigation-container{
border-bottom: 1px solid #000000;
background-color: red ;
}
.search-container{
padding:20px 10px;
/* The above is shorthand for:
padding-top: 20px;
padding-right: 10px;
padding-bottom: 20px;
padding-left: 10px;
*/
border-bottom: 1px solid #e5e5e5;
border-top: 1px solid #e5e5e5;
background: green;
}
.main-container{
width:512px;
margin-left:135px;
}
.search-result-list{
padding-left:0px;
list-style:none;
}
.search-result-list li{
margin-bottom:30px;
}
.search-result-title{
margin:none;
list-style:none
}
.search-result-source{
display:block;
font-style:normal;
color:#009933;
}