-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.css
More file actions
90 lines (80 loc) · 1.94 KB
/
theme.css
File metadata and controls
90 lines (80 loc) · 1.94 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
90
.urlfile{
list-style-type: none;
margin: 0;
padding: 0;
}
.folder{
list-style-type: none;
margin: 0;
padding: 0;
}
.triangle-right {
width: 0;
height: 0;
border-top: 10px solid transparent;
border-left: 10px solid #555;
border-bottom: 10px solid transparent;
}
image{
display: inline;
}
.caret {
cursor: pointer;
-webkit-user-select: none; /* Safari 3.1+ */
-moz-user-select: none; /* Firefox 2+ */
-ms-user-select: none; /* IE 10+ */
user-select: none;
}
.caret::before {
content: "\25B6";
color: black;
display: inline-block;
margin-right: 6px;
}
.caret-down::before {
-ms-transform: rotate(90deg); /* IE 9 */
-webkit-transform: rotate(90deg); /* Safari */
transform: rotate(90deg);
}
.folderimage{
height: 20px;
width: 20px;
}
select {
background-color: #f0f0f0;
border: 2px solid #000000;
padding: 6px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
button {
background-color: #d9d9d9; /* Gris claro para aspecto limpio */
color: #333; /* Texto en gris oscuro para contraste */
border: 2px solid #888; /* Borde más definido */
padding: 8px 12px;
font-size: 16px;
border-radius: 25px; /* Bordes bien redondeados */
cursor: pointer;
transition: background 0.3s, transform 0.2s;
}
button:hover {
background-color: #bfbfbf; /* Cambio sutil al pasar el mouse */
transform: scale(1.05); /* Pequeño efecto de crecimiento */
}
span{
font-size: 22px;
}
li{
font-size: 22px;
}
select:hover {
background-color: #e0e0e0; /* Cambio de color sutil */
border-color: #555; /* Borde más oscuro */
}
/* Efecto al hacer clic */
select:focus {
outline: none;
border-color: #0078d4; /* Color de resaltado */
box-shadow: 0px 0px 8px rgba(0, 120, 212, 0.5); /* Sombra elegante */
}