add samples page
This commit is contained in:
38
src/components/Samples.css
Normal file
38
src/components/Samples.css
Normal file
@@ -0,0 +1,38 @@
|
||||
#samples-table {
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#samples-table td,
|
||||
#samples-table th {
|
||||
border: 1px solid #ddd;
|
||||
padding: 8px;
|
||||
width: 10vw;
|
||||
}
|
||||
|
||||
#samples-table td {
|
||||
width: 15vw;
|
||||
}
|
||||
|
||||
#samples-table tr:nth-child(even) {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
#samples-table tr:hover {
|
||||
background-color: #ddd;
|
||||
}
|
||||
|
||||
#samples-table th {
|
||||
padding-top: 12px;
|
||||
padding-bottom: 12px;
|
||||
text-align: center;
|
||||
background-color: rgb(144, 183, 255);
|
||||
color: black;
|
||||
width: 5vw;
|
||||
}
|
||||
|
||||
.samples-container {
|
||||
overflow-x: auto;
|
||||
overflow-y: auto;
|
||||
}
|
||||
Reference in New Issue
Block a user