94 lines
No EOL
1.6 KiB
CSS
94 lines
No EOL
1.6 KiB
CSS
html *
|
|
{
|
|
font-family: Cantarell, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
}
|
|
.button {
|
|
background-color: #EBEBEB;
|
|
color: black;
|
|
border: none;
|
|
border-radius: 8px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
display: flex;
|
|
font-size: 16px;
|
|
font-family: Cantarell, sans-serif;
|
|
margin: 4px 2px;
|
|
cursor: pointer;
|
|
width: 100px;
|
|
height: 40px;
|
|
transition-duration: 0.2s;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #E0E0E0;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.versionbutton {
|
|
background-color: #E5EFFB;
|
|
color: #1a5fb4;
|
|
border: none;
|
|
border-radius:50px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
display: flex;
|
|
font-size: 16px;
|
|
font-family: Cantarell, sans-serif;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
padding-top: 10px;
|
|
padding-right: 15px;
|
|
padding-bottom: 10px;
|
|
padding-left: 15px;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-areas:
|
|
'header header header header header'
|
|
'left middle middle middle right'
|
|
'footer footer footer footer footer';
|
|
}
|
|
|
|
.left {
|
|
grid-area: left;
|
|
}
|
|
|
|
/* Style the middle column */
|
|
.middle {
|
|
grid-area: middle;
|
|
}
|
|
|
|
/* Style the right column */
|
|
.right {
|
|
grid-area: right;
|
|
}
|
|
|
|
/* Invidious */
|
|
.list {
|
|
border-radius: 12px 12px 12px 12px;
|
|
background-color: rgba(255, 255, 255, 1);
|
|
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
|
margin-bottom: 50px;
|
|
} |