-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (87 loc) · 1.96 KB
/
style.css
File metadata and controls
105 lines (87 loc) · 1.96 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
:root{
--background:#CEDCED;
--header:#91B0F6;
--title:white;
--links:white;
--cardTitles:black;
--cardBodyBg:#748fcd;
}
body{
background-color: var(--background);
header{
background-color: var(--header);
border-bottom: 2px solid #5a19ff;
h1 {
font-size: 1.5rem;
font-weight: bold;
color: var(--title);
}
span {
color: rgb(9, 7, 101);
}
nav a {
color: var(--links);
text-decoration: none;
text-transform: uppercase;
font-weight: bold;
font-size: 1rem;
margin-left: 20px;
padding: 10px;
}
nav a:hover{
background-color: whitesmoke;
color: var(--header);
}
}
.noRecetasMsj{
color: black;
}
/* Select */
#categoriaSelect{
background-color: #D6DFFA;
border-color: #5a19ff;
outline: none;
option:nth-child(even){
background-color:#bbc6ec ;
}
}
/* Cartas */
.main-card{
height: 570px;
.card-header{
background-color: var(--header);
}
.card-body{
background-color: var(--cardBodyBg);
.card-title{
height: 50px;
margin-bottom: 30px;
}
.abrir{
width: 100%;
}
}
}
/* Modal */
.modal-content {
height: 800px; overflow-y: scroll;
color: black;
.modal-header{
background-color: var(--cardBodyBg);
}
.modal-body{
background-color: var(--background);
}
.modal-footer{
background-color: var(--cardBodyBg);
}
}
/* Toast */
.toast-header{
background-color: #1a3e31;
}
.toast-body{
background-color: #92baab;
color: black;
}
}