styles changes
This commit is contained in:
+119
-29
@@ -23,7 +23,7 @@ body {
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr auto;
|
||||
min-height: 100dvh;
|
||||
width: 100dvw;
|
||||
width: 100vw;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -173,9 +173,9 @@ select {
|
||||
border: 1px solid #cfcfcf;
|
||||
background-color: #fff;
|
||||
border-radius: 4px;
|
||||
font-size: 2rem;
|
||||
font-size: 1.5rem;
|
||||
color: black;
|
||||
height: 4rem;
|
||||
height: 3.5rem;
|
||||
}
|
||||
|
||||
input:focus,
|
||||
@@ -186,12 +186,20 @@ select:focus {
|
||||
transition: all 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
select:-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
option {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
min-width: 3rem;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 2rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
}
|
||||
@@ -201,7 +209,7 @@ button {
|
||||
padding: 1rem 1.75rem;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
height: 4rem;
|
||||
height: 3.5rem;
|
||||
}
|
||||
|
||||
.groupInput {
|
||||
@@ -210,6 +218,8 @@ button {
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
}
|
||||
|
||||
.button {
|
||||
@@ -278,23 +288,50 @@ a {
|
||||
.information {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 1px solid #e5e7eb;
|
||||
background-color: #ffffff;
|
||||
border-radius: 4px;
|
||||
background-color: #f3f4f6;
|
||||
width: 100%;
|
||||
max-width: 450px;
|
||||
margin-top: 10px;
|
||||
margin-top: 1rem;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
overflow: hidden;
|
||||
transition: box-shadow 0.3s ease, transform 0.3s ease;
|
||||
}
|
||||
|
||||
.information ul {
|
||||
padding: 1rem;
|
||||
.informationList {
|
||||
list-style: none;
|
||||
padding: 0 1rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.informationItem {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
padding: 5px 0;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
}
|
||||
|
||||
.informationItem:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.informationKey {
|
||||
font-weight: 600;
|
||||
text-transform: capitalize;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.informationValue {
|
||||
color: #555;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.title {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
font-size: 3rem;
|
||||
font-size: 2.5rem;
|
||||
font-weight: bold;
|
||||
text-align: start;
|
||||
color: #bd8c01;
|
||||
@@ -324,9 +361,9 @@ form {
|
||||
width: 100%;
|
||||
max-width: 750px;
|
||||
margin-top: 1rem;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 4px;
|
||||
background-color: #f9fafb;
|
||||
background-color: #fff;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.toggleGroup {
|
||||
@@ -354,10 +391,10 @@ form {
|
||||
|
||||
.toggleButton.active {
|
||||
font-weight: 600;
|
||||
background-color: #e5e7eb;
|
||||
background-color: #ffffff;
|
||||
color: rgb(1, 92, 184);
|
||||
border-radius: 4px 4px 0 0;
|
||||
border-bottom: 1px solid rgb(1, 92, 184);
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
p {
|
||||
@@ -366,28 +403,78 @@ p {
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0 1rem;
|
||||
table-layout: auto;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 1.5rem;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
table th,
|
||||
table td {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #cfcfcf;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
padding: 0.85rem 1.5rem;
|
||||
}
|
||||
|
||||
table th {
|
||||
position: sticky;
|
||||
top: 0px;
|
||||
background-color: rgb(1, 92, 184);
|
||||
color: white;
|
||||
top: 0;
|
||||
color: #ffffff;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
text-align: center;
|
||||
z-index: 2;
|
||||
border: none;
|
||||
}
|
||||
|
||||
table td {
|
||||
text-align: center;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
border: none;
|
||||
}
|
||||
|
||||
table tr {
|
||||
min-width: 400px;
|
||||
background-color: rgb(255, 255, 255);
|
||||
transition: background-color 0.2s ease;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
thead tr {
|
||||
background-color: #2563eb;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
tbody tr {
|
||||
transition: transform 0.3s ease, opacity 0.3s ease;
|
||||
opacity: 1;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
tbody tr.hidden {
|
||||
transform: translateY(-10px);
|
||||
opacity: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
table tr:nth-child(even) {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
table tr:hover {
|
||||
background-color: #cfcfcf;
|
||||
}
|
||||
|
||||
table th:first-child,
|
||||
table td:first-child {
|
||||
border-radius: 4px 0 0 4px;
|
||||
}
|
||||
|
||||
table th:last-child,
|
||||
table td:last-child {
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
|
||||
.tableContainer {
|
||||
@@ -462,10 +549,6 @@ table tr {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1300px) {
|
||||
@@ -473,6 +556,11 @@ table tr {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.containerSection {
|
||||
overflow: auto;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
@@ -526,6 +614,7 @@ table tr {
|
||||
|
||||
.containerSection {
|
||||
align-items: center;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
.centerGrid {
|
||||
@@ -564,6 +653,7 @@ table tr {
|
||||
|
||||
@media (max-width: 450px) {
|
||||
.title {
|
||||
text-align: center;
|
||||
max-width: 250px;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user