-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
72 lines (70 loc) · 1.39 KB
/
style.scss
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
.wiki-search {
background-color: #263238;
color: #dff5ff;
#title{
text-align: center;
margin-bottom: 25px;
}
#searchbar{
border: 1px solid #dff5ff;
border-radius: 25em;
transition: all 1s .25s;
display: block;
margin: 25px auto;
width: 60%;
input {
font-size: 1.5em;
display: block;
margin : auto;
text-align: center;
width: 95%;
border: none;
background-color: transparent;
outline: none;
}
}
#searchbar:hover {
border-color: green;
color: green;
background-color: #dff5ff;
width: 90vw;
}
.collapsed {
min-width: auto;
}
button {
transition: all 1s .50s;
background-color: #4f5b62;
border-radius: 1em;
color: #dff5ff;
display: block;
margin: auto;
}
button:hover {
color: #4f5b62;
background-color: #dff5ff;
}
#search-results {
margin-top: 25px;
.result {
transition: all 1s .25s;
border: 1px solid #000a12;
border-radius: 1em;
background-color: #4f5b62;
margin: 5px 25px;
padding: 1em;
h2 {
transition: all 1s .25s;
color: #dff5ff;
}
}
.result:hover {
border-color: green;
color: green;
background-color: #dff5ff;
h2 {
color: green;
}
}
}
}