-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (128 loc) · 2.31 KB
/
styles.css
File metadata and controls
129 lines (128 loc) · 2.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{
background: #F2F2F2;
font-family: monospace;
margin: 0;
}
header{
color: #0D0D0D;
display: flex;
flex-direction: column;
align-items: flex-start;
font-family: monospace;
margin: 5px;
font-size: 2vh;
}
h1{
margin: 5px 15px;
}
.header--logo{
width: 8vh;
margin: 0px 25px;
}
h2{
margin: 15px;
border-top: 2px solid #F29544;
font-size: 3vh;
/* text-align: justify; */
}
nav{
color: #0D0D0D;
}
ol{
background-color: #F2B441;
padding: 5px;
list-style-position: inside;
border: #F29544 solid 2px;
margin: 3px 20px;
width: 30vw;
}
.workshop--n3__list{
display: none;
list-style: none;
padding: 1vh 5vw;
}
.workshop--n3:hover > .workshop--n3__list{
display:block;
}
li{
padding: 6px 0px;
}
a {
color: #0D0D0D;
text-decoration: none;
}
form{
display: grid;
grid-auto-flow: row;
}
label{
font-size: 17px;
margin: 5px;
}
/* Input */
input{
background-color: #F2B441;
padding: 5px;
border: #F29544 solid 2px;
margin: 3px 10px;
text-decoration: none;
width: 43vw;
outline: none;
}
/* Flechas de los input type number*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.Coupons{
background-color: #F2B441;
border: #F29544 solid 2px;
color: #0D0D0D;
cursor: pointer;
margin: 3px 10px;
padding: 3px;
width: 24vw;
}
/* Botones */
button{
background-color: #F29544;
border-radius: 10px;
border: none;
color: #0D0D0D;
cursor: pointer;
font-size: 2vh;
margin: 5px 10px;
width: 30vw;
}
/* Respuesta */
.Answer{
text-decoration: underline solid #F29544 2px;
font-size: 19px;
margin: 10px 20px;
}
footer{
color: #0D0D0D;
display: flex;
flex-direction: row;
align-items: flex-start;
margin: 20px;
font-size: 1.6vh;
}
.footer--logo{
width: 5vh;
margin: 0px 25px;
}
.footer--disclaimer{
margin: 0px 10px;
}
.footer--disclaimer__title{
font-weight: bold;
font-size: 15px
}
#platzi{
text-decoration: underline solid #206A5D;
}
.footer--icons{
margin: 0px 10px;
}