-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilos.css
105 lines (87 loc) · 1.49 KB
/
estilos.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
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:wght@300&display=swap');
*{
background-color: rgb(169, 216, 228);
}
h1{
text-align: center;
border-style: inset;
color: brown;
background-color: coral;
border-radius: 5px;
font-size: 1cm;
font-family: 'Poppins';
}
.datos{
border-style: inset;
border-color: chocolate;
display: flex;
justify-content: center;
text-align: center;
}
table ,tr,td{
table-layout: fixed;
width: 30%;
border-collapse: collapse;
border: 3px solid purple;
text-align: center;
}
tr th{
color: red;
font-family: 'Poppins';
}
a{
color: brown;
text-decoration: none;
font-weight: bolder;
}
a:hover{
color: rgb(255, 0, 221);
}
@media (max-width:360px){
.titulo{
font-size: 151%;
padding: 0px;
}
.datos{
font-size: 73%;
padding: 0px;
}
.ejercicios{
width: 200%;
}
.ejemplos{
width: 300%;
}
}
@media (max-width:400px){
.titulo{
font-size: 151%;
padding: 0px;
}
.datos{
font-size: 73%;
padding: 0px;
}
.ejercicios{
width: 300%;
}
.ejemplos{
width: 300%;
}
}
@media (max-width:500px){
.titulo{
font-size: 151%;
padding: 0px;
}
.datos{
font-size: 73%;
padding: 0px;
}
.ejercicios{
width: 300%;
}
.ejemplos{
width: 300%;
}
}