-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesHome.css
86 lines (83 loc) · 1.51 KB
/
stylesHome.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
78
79
80
81
82
83
84
85
86
.nav-container {
display: flex;
}
.navigation {
position: absolute;
top: 30px;
left: 15px;
user-select: none;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.bar-elements {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 30px;
background-color: #fff;
padding: 8px 10px;
border-radius: 10px;
width: 150px;
}
/* .bar-elements {
width: 150px;
box-shadow: 2px 2px 6px #00000088;
transition: width 300ms ease-in;
transition: border-radius 300ms ease-in;
} */
.material-icons {
color: var(--mainColor);
font-size: 24px;
font-weight: 600;
}
.material-symbols-outlined {
font-weight: 500;
color: var(--mainColor);
cursor: pointer;
}
.nav-elements {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
.nav-texts {
font-size: 1.1rem;
font-weight: 600;
color: var(--whiteColor);
color: var(--mainColor);
}
.reviewBtn {
width: 100%;
text-align: center;
border: 1px dashed var(--choicesBorder);
border-radius: 5px;
font-size: 36px;
font-weight: 600;
user-select: none;
}
.reviewBtn:hover {
background-color: var(--choicesHover);
}
.reviewBtn:first-of-type {
margin-top: -5px;
margin-bottom: 20px;
}
.reviewBtn:last-of-type {
margin-top: 20px;
margin-bottom: -5px;
}
.answers {
width: 100%;
font-size: 1.3rem;
border: 1px solid var(--choicesBorder);
border-radius: 4px;
padding: 5px 10px;
margin: 5px auto;
}
.notTrue {
border: 1px solid #ff0000;
background: #ff000040;
}