Spaces:
Running
Running
File size: 2,263 Bytes
901176a 6eb7f5d d963b2c 901176a 6eb7f5d 901176a 6eb7f5d d963b2c 6eb7f5d d963b2c 6eb7f5d 901176a 6eb7f5d 901176a 6eb7f5d 901176a |
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
h1 {
font-size: 24px;
font-weight: 700;
color: #333;
}
.body {
background-color: #4a4a4a;
}
.header-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 20px;
margin-bottom: 20px;
}
.container {
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
background-color: rgb(249, 249, 249);
padding: 20px;
margin-left: 10px;
margin-right: 10px;
max-height: 600px;
justify-content: center;
}
.container-visu {
width: 70%;
display: flex;
justify-content: center;
align-items: center;
}
.container-table {
align-items: center;
overflow-x: auto;
}
/* remove background in periodical table */
.periodic-table {
background-color: transparent;
box-shadow: none;
}
.container-row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 10px;
margin-bottom: 10px;
margin-top: 10px;
}
.container-row-periodic {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
}
.container-col {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 10px;
margin-bottom: 10px;
margin-top: 10px;
}
body {
font-family: "Arial", sans-serif;
font-size: 16px;
}
.footer {
background-color: transparent;
font-family: "Arial", sans-serif;
padding: 20px;
margin-top: 10px;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
text-align: center;
}
.footer-content p {
line-height: 1.6;
font-size: 14px;
}
.footer-content a {
color: #0073e6;
text-decoration: none;
font-weight: bold;
}
.footer-content a:hover {
text-decoration: underline;
}
.footer-content strong {
color: #555;
}
.main-div {
padding-left: 20px;
padding-right: 20px;
}
@media (max-width: 800px) {
.main-div {
padding-left: 30px;
padding-right: 30px;
}
.container {
width: 100%;
margin: 5px;
margin-top: 10px;
margin-bottom: 10px;
}
.container-row {
flex-direction: column;
}
.container-row-periodic {
flex-direction: column;
}
.container-visu {
width: 100%;
}
}
@media (max-width: 1000px) and (min-width: 800px) {
.container-visu {
width: 100%;
}
}
|