-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
79 lines (73 loc) · 1.31 KB
/
Copy pathmain.scss
File metadata and controls
79 lines (73 loc) · 1.31 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
// @import "bootstrap/scss/bootstrap";
@import "../node_modules/bootstrap/scss/bootstrap";
body{
.hidden{
visibility: hidden;
max-height: 0;
// transition: ease-in-out .1s;
}
.search{
position: relative;
width: 50%;
i{
position: absolute;
top: 12px;
left: 10px;
}
input{
padding-left: 30px;
}
}
.nota-wrap{
position: relative;
.notasContainer{
.accordion-item.nota{
.accordion-button::after{
display: none;
}
}
.nota{
transition: all ease-in-out .2s;
.btn-gestio{
position: relative;
display: flex;
flex-direction: row;
input,button{
height: 18px ;
width: 18px ;
}
button{
position: relative;
background-color: transparent;
border: none;
transition: all ease-in-out .2s;
}
button:hover{
color: red !important;
transition: all ease-in-out .2s;
}
.ocultarBtn{
visibility: hidden;
}
}
}
.nota.marcado{
background-color: rgba(191, 220, 249, 0.2);
transition: all ease-in-out .2s;
}
}
.btnBorrar{
position: absolute;
max-height: 0px;
z-index: 10;
top: 7px;
right: 100px;
visibility:hidden;
}
.checked{
visibility: visible;
max-height: min-content;
transition: all ease-out .2s;
}
}
}