-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (96 loc) · 1.47 KB
/
style.css
File metadata and controls
118 lines (96 loc) · 1.47 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background-color: #f1f1f1;
}
.title {
margin: .5em auto;
text-align: center;
}
.container-tabla,
.container-tabla-2 {
width: 78%;
display: grid;
border: none;
overflow: hidden;
margin: auto;
}
.container-tabla {
grid-template-columns: repeat(18, 1fr);
grid-template-rows: repeat(7, 58px);
}
.container-tabla-2 {
grid-template-columns: repeat(18, 1fr);
grid-template-rows: repeat(2, 58px);
}
div {
display: flex;
width: 100%;
justify-content: center;
border: 2px solid white;
}
table,
th,
td {
border-spacing: 4px;
border-collapse: separate;
}
table {
width: 78%;
margin: 20px auto;
}
th,
td {
font-size: .9em;
padding: 10px;
text-align: center;
}
.transparent {
visibility: hidden;
}
.gris {
background-color: lightgrey;
}
/*Morado oscuro*/
.alcalinos {
background-color: rgb(151, 7, 132);
}
/*Pink */
.alcalinoterreos {
background-color: pink;
}
/*Orange*/
.metales-transicion {
background-color: orange;
}
.lantanidos {
background-color: orangered;
}
.actinidos {
background-color: deeppink;
}
.otros-metales {
background-color: yellow;
}
.metaloides {
background-color: greenyellow;
}
.otros-no-metales {
background-color: olivedrab;
}
.halogenos {
background-color: cyan;
}
.gases-nobles {
background-color: lightblue;
}
span {
font-weight: 700;
font-size: 1.1em;
justify-self: center;
align-self: center;
}