-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 1.55 KB
/
style.css
File metadata and controls
89 lines (77 loc) · 1.55 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
body {
background-color: #585f65;
}
nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 4rem;
background-color: #585f65;
}
nav__a {
color: red;
}
nav__button {
background-color: #24ce99;
}
nav__button:hover {
background-color: #72afbe;
}
nav__input__textarea {
color: #fcfcfd;
}
input {
background-color: black !important;
}
.resultq {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-top: 1rem;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
list-style: none;
color: #fcfcfd;
text-align: center;
max-width: 30%;
margin-left: 30%;
}
.resultq__item {
width: 500px;
padding-top: 1rem;
-ms-flex-item-align: start;
align-self: flex-start;
padding-bottom: 2rem;
margin-left: 0;
background-color: #fcfcfd;
-webkit-box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
border-radius: 5px;
margin-bottom: 10px;
}
.resultq__item img {
width: 2.5rem;
padding-right: 1rem;
}
.resultq__item a {
color: #24ce99;
}
.resultq__item a:hover {
color: #72afbe;
}
.no-disp {
display: none;
}
/*# sourceMappingURL=style.css.map */