-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (69 loc) · 1.62 KB
/
style.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
87
88
/* ==================================== FONTS ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ==================================== ELEMENTS ==================================== */
* {
font-family: Montserrat;
transition: all 0.25s;
}
html {
background-color: #212529;
}
ul {
list-style: none;
}
/* ==================================== IDS ==================================== */
#btnAdd:hover {
transform: scale(1.1);
color: white;
background-color: black;
}
/* ==================================== CLASSES ==================================== */
.filteredText {
display: none;
}
/* ITEM BUTTONS */
.btnMoveUp, .btnMoveDown {
background-color: transparent;
border: none;
}
.btnMoveUp:hover, .btnMoveDown:hover {
transform: scale(1.3);
}
.btnPalette, .btnEdit, .btnDelete {
background-color: transparent;
}
.btnPalette:hover, .btnEdit:hover, .btnDelete:hover {
transform: scale(1.2);
}
/* TITLE & TEXT UPPERCASE */
.item h3 {
text-transform: uppercase;
}
.item p::first-letter {
text-transform: uppercase;
}
/* ITEM COLOR */
.item-white {
background-color: white;
}
.item-gray {
background-color: rgb(200, 200, 200);
}
.item-red {
background-color: rgb(255, 175, 175);
}
.item-blue {
background-color: rgb(170, 175, 255);
}
.item-yellow {
background-color: rgb(255, 255, 175);
}
.item-green {
background-color: rgb(185, 255, 185);
}
.item-orange {
background-color: rgb(255, 190, 130);
}
.item-purple {
background-color: rgb(230, 165, 255);
}