-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (65 loc) · 1.39 KB
/
styles.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
body{
direction: rtl;
margin: 0;
display: flex;
flex-direction: column;
background-color: #fbfbfb;
}
#app-header{
border-bottom: 1px solid #cccccc;
height: 50px;
display: flex;
box-shadow: 1px 1px 1px 1px #f3f3f3;
margin-bottom: 15px;
justify-content: flex-end;
align-items: center;
padding: 0 20px;
font-size: 20px;
font-family: Roboto;
color:#454545;
background-color: white;
}
#search-wikipedia-input{
background: #fff;
display: flex;
border: 1px solid #dfe1e5;
box-shadow: none;
height: 39px;
width: 630px;
z-index: 3;
height: 44px;
margin: 0 auto;
padding: 0 20px;
font-size: 17px;
outline: none;
color: rgba(0,0,0,.87);
}
#search-wikipedia-input:focus{
border: 1px solid #c0c3c5;
}
#search-wikipedia-input:hover{
border: 1px solid #c0c3c5;
}
#results{
display: flex;
flex-direction: column;
width: 630px;
margin: 0 auto;
padding-right: 18px;
box-sizing: border-box;
background-color: white;
border-bottom: 1px solid #e6e8ea;
border-left: 1px solid #e6e8ea;
border-right: 1px solid #e6e8ea;
}
#results .result{
width: 170px;
height: 20px;
text-decoration: none;
font-size: 18px;
color: rgba(0,0,0,.77);
padding: 2px;
}
#results .result:hover{
color: black;
}