-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (67 loc) · 1.29 KB
/
style.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
/*ESTILOS GENERALES*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background: url(images/rm373batch13-086.jpg) ;
background-attachment: fixed;
background-position: 0%;
background-size:cover;
background-repeat: no-repeat;
}
.contenido-centrado{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.contenedorPrincipal{
width: 80vw;
max-width: 600px;
min-height: 500px;
padding: 20px;
background-color: white;
border: 5px solid black;
border-radius: 30px;
}
.contenedorInterno{
width: 80%;
}
/*Contenido*/
#titulo{
width: 100%;
font-weight: bold;
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#ecuacion{
font-size: 32px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 15%;
padding-bottom: 15%;
}
#boton{
width: 180px;
height: 50px;
margin: 1%;
padding: 1%;
}
.contenedorSecundario{
margin-top: 10%;
padding-top: 5%;
}
.contenedorSecundario p{
margin-right: 15px;
}