forked from MarkCameron13/henry-Prep-checkpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo2.css
112 lines (103 loc) · 2.11 KB
/
estilo2.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
111
112
#div-negro{
height: 300px;
width: 500px;
background-color: black;
margin-top: 30px;
margin-bottom: 30px;
border: 1px 20px 30px 1px solid black;
padding: 10px 5px;
}
#contenedor {
display: grid;
grid-column-gap: 50px;
grid-row-gap: 50px;
row-gap: 10px;
text-align: center;
color: white;
font-size: 15px;
font-weight: bold;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#uno {
display: flex;
flex-direction: row;
border: 5px solid peru;
height: 50px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
box-sizing: border-box;
}
#uno-contact {
background-color: lightcoral;
justify-self: baseline;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}
#uno-careers {
background-color: lightseagreen;
justify-self: baseline;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}
#uno-about {
background-color: lightgreen;
margin-left: auto;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}
#dos {
border: 5px solid lightpink;
}
#dos-contact{
background-color: lightcoral;
height: 50px;
margin: 0px;
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack: center
}
#dos-careers{
margin: 0px;
height: 50px;
background-color: lightseagreen;
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack: center
}
#dos-about{
height: 50px;
background-color: lightgreen;
margin: 0px;
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack: center
}
#tres {
border: 5px solid peru;
height: 50px;
display: flex;
flex-direction: row;
}
#tres-contact {
background-color: lightcoral;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}
#tres-careers {
background-color: lightseagreen;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}
#tres-about {
background-color: lightgreen;
display: -webkit-box;
-webkit-box-align: center;
padding: 10px
}