-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
86 lines (80 loc) · 1.51 KB
/
style.scss
File metadata and controls
86 lines (80 loc) · 1.51 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
$backgroundcolor: #1d2125;
$foregroundcolor: #24ce99;
$hover: #72afbe;
$textcolormain: #fcfcfd;
$highlightred: #c1472c;
$inactive: #585f65;
@mixin flexcenter {
display: flex;
justify-content: center;
align-items: center;
}
@mixin flexeven {
display: flex;
justify-content: space-around;
align-items: center;
}
body {
background-color: $inactive;
}
nav {
@include flexeven();
height: 4rem;
background-color: $inactive;
&__a {
color: red;
}
&__button {
background-color: $foregroundcolor;
&:hover {
background-color: #72afbe;
}
}
&__input {
&__textarea {
color: $textcolormain;
}
}
}
input {
background-color: black !important;
}
.resultq {
@include flexeven();
margin-top: 1rem;
// box-shadow: 0 4px 8px 0 #7a6f8e, 0 6px 20px 0 black;
flex-direction: column;
list-style: none;
color: $textcolormain;
// background-color: $inactive;
text-align: center;
// margin-left: 30rem;
// align-self: center;
max-width: 30%;
margin-left: 30%;
&__item {
width: 500px;
padding-top: 1rem;
align-self: flex-start;
padding-bottom: 2rem;
margin-left: 0;
background-color: $textcolormain;
box-shadow: 0 4px 8px 0 black, 0 6px 20px 0 black;
border-radius: 5px;
margin-bottom: 10px;
// border-bottom: 1px solid gray;
& img {
width: 2.5rem;
padding-right: 1rem;
}
& a {
color: $foregroundcolor;
&:hover {
color: $hover;
}
}
}
}
.no-disp {
display: none;
}