-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (95 loc) · 1.96 KB
/
styles.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.container-recetas {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
}
.container-recetas__title {
text-align: center;
background-color: #863A6F;
color: white;
padding: 10px;
}
/* column left */
.container-recetas__left {
flex-direction: column;
background-color: #046582;
color: white;
padding: 1em;
width: 500px;
float: left;
margin-bottom: 1em;
}
.container-recetas__left__search {
padding: 15px 15px;
border: none;
font-size: 12px;
font-weight: bold;
color: black;
border-radius: 20px;
cursor: pointer;
}
.container-recetas__left__input {
padding: 5px 10px;
border: none;
font-size: 12px;
font-weight: bold;
color: black;
border-radius: 20px;
cursor: pointer;
}
.container-recetas__left__list {
color: #FDF1D6;
}
.container-recetas__left__btn-add {
padding: 10px 10px;
border: none;
font-size: 14px;
font-weight: bold;
background-color: #FFE05D;
color: black;
border-radius: 20px;
cursor: pointer;
margin-top: 2em;
}
.container-recetas__left__description {
border-radius: 20px;
width: 90%;
padding: 1em;
}
.container-recetas__left__btn-save {
padding: 15px 15px;
border: none;
font-size: 16px;
font-weight: bold;
background-color: #5D9C59;
color: white;
border-radius: 20px;
cursor: pointer;
margin-top: 2em;
}
.container-recetas__left__btn-save:focus {
background-color: #DFFFD8;
color: black;
}
/* column right */
.container-recetas__right {
flex-direction: column;
background-color: #3C6255;
color: white;
padding: 1em;
width: 500px;
float: right;
margin-right: 1em;
margin-bottom: 1em;
}
.container-recetas__right__title {
font-size: 24px;
color: #FFF6BD;
text-align: center;
}
.container-recetas__right__data-chef {
display: flex;
}
.container-recetas__right__data-chef__name {
margin-left: 5px;
}