-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (94 loc) · 1.95 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (94 loc) · 1.95 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
body{
background-color: #000;
margin:0;
font-family: sans-serif;
}
.imagen{
background-image: url("./ultra-wide-nature-9e39l4h3spqgynd2.jpg");
min-height: 150px; /*No es recomendable tener un height fijo*/
width: 100%;
margin:0;
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
/*---------------------------Navbar---------*/
.nav{
min-height: 40px;
background-color: rgb(83, 129, 255);
position: sticky;
/*box-sizing: border-box;*/
/*border-radius: 5px;*/
}
.nav__ul{
margin: 0; /*esto Dalto lo puso*/
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.nav__item{
list-style:none;
box-sizing: border-box;
}
.nav__link{
margin:30px;
background-color: rgb(119, 183, 248);
display: inline-block;
border-radius: 5px;
color: rgb(255, 255, 255);
text-decoration: none;
font-weight: bold;
box-sizing: border-box;
padding: 5px;
margin:6px; /*se ve la separacion entre los elementos*/
}
.nav__link:hover{
background-color: rgb(29, 114, 199);
}
.nav__link:active{
background-color: rgb(1, 61, 121);
}
.nav__item:last-child .nav__link{
margin-left: 590px;
color:#000;
box-sizing: border-box;
}
.box{
width: 300px;
height: 150px;
display: flex;
margin: auto;
margin-top: 100px;
align-items: center;
flex-direction: column;
gap: 8px;
}
.etiqueta{
color: white;
font-weight: bold;
font-size: 20px;
}
.formulario{
background-color: #000;
display: flex;
flex-direction: column;
padding: 20px;
gap:10px;
width: 300px;
height: 50px;
border: 2px solid grey;
border-radius: 10px;
}
.formulario_item{
width: 300px;
border-radius: 8px;
}
.texto{
color:#FFF;
max-width: 800px;
margin: auto;
text-align: center;
padding-top: 10px;
border: 2px solid #FFF;
column-count: 1;
}