-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (66 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #111;
color: #eee;
}
.main-container {
min-height: 100vh;
display: flex;
flex-flow: column wrap;
justify-content: space-between;
align-items: center;
}
header {
margin-top: 50px;
}
footer {
margin-bottom: 50px;
}
.search-container {
height: 310px;
overflow: hidden;
}
input[type = text] {
width: 400px;
height: 40px;
padding: 10px 12px;
font-size: 16px;
border: none;
outline: none;
border-radius: 10px;
}
.search-box {
position: relative;
}
#search-icon {
cursor: default;
color: #aaa;
position: absolute;
right: 5px;
top: 8px;
user-select: none;
}
.search-suggestions {
max-height: calc(100% - 40px);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
overflow: hidden;
}
.sunl {
width: 400px;
height: 30px;
padding: 5px 12px;
font-size: 16px;
color: #111;
cursor: pointer;
background-color: #eee;
background-color: #eee;
}
.suhl {
background-color: #ccc;
}