mirror of
https://github.com/FAUSheppy/oh-my-nemesis
synced 2025-12-10 00:28:32 +01:00
48 lines
709 B
CSS
48 lines
709 B
CSS
body{
|
|
background: #161618;
|
|
}
|
|
table{
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
td{
|
|
border-style: groove;
|
|
border-width: 2px;
|
|
border-color: antiquewhite;
|
|
background-color: #f5f7f6;
|
|
}
|
|
.header{
|
|
background: lightcyan !important;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hidden{
|
|
display: none;
|
|
}
|
|
.information{
|
|
margin-top: 8px;
|
|
font-style: italic;
|
|
color: #f5f7f6;
|
|
}
|
|
button{
|
|
height: 40px;
|
|
width: 30%;
|
|
margin: 20px;
|
|
border: transparent;
|
|
border-radius: 20px;
|
|
background: aqua;
|
|
font-weight: bold;
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
|
button:hover {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
.color-cell{
|
|
transition-duration: 0.3s;
|
|
}
|
|
.color-cell:hover{
|
|
opacity: 0.75;
|
|
}
|