Files
SpaghettiKart/docs/docs.css
T

95 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2024-01-14 14:32:13 -07:00
.pagebutton {
display: inline-block;
margin-right: 1em;
margin-bottom: 1em;
}
2024-01-21 05:24:05 +01:00
html.dark-mode .pagelink {
2024-01-14 14:32:13 -07:00
display: block;
background-color: rgb(40, 44, 52);
width: 320px;
2024-01-14 22:32:46 -07:00
box-shadow: 0 0 0 0;
transition: 0.3s ease;
}
2024-01-21 05:24:05 +01:00
html.dark-mode .pagelink:hover {
2024-01-14 22:32:46 -07:00
box-shadow: 0 5px 15px 5px rgba(0,0,0,1);
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pagelink:hover img {
transform: scale3d(1.1,1.1,1.1);
2024-01-14 14:32:13 -07:00
}
2024-01-21 05:24:05 +01:00
2024-01-14 14:32:13 -07:00
.pageimg {
display: inline-block;
width: 100%;
position: relative;
overflow: hidden;
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pageimg img {
transition: 0.3s ease;
}
2024-01-21 05:24:05 +01:00
html.dark-mode .content {
2024-01-14 14:32:13 -07:00
color: white;
font-size: 1em;
padding: 0;
margin: 0;
}
2024-01-21 05:24:05 +01:00
html.dark-mode .pageheading {
2024-01-14 14:32:13 -07:00
padding: .5em .5em;
font-size: 18px;
color: white;
font-weight: bold;
2024-01-14 22:32:46 -07:00
text-decoration: none;
2024-01-14 14:32:13 -07:00
}
2024-01-21 05:24:05 +01:00
html.dark-mode .pagedescription {
2024-01-14 14:32:13 -07:00
color: #fff;
border-color: transparent;
opacity: 0.75;
height: 84px;
text-overflow: ellipsis;
overflow: hidden;
margin-top: 10px;
display: block;
padding: 10px;
text-decoration: none;
line-height: 1.64em;
font-size: 1em;
font-weight: normal;
2024-01-14 22:32:46 -07:00
text-decoration: none;
2024-01-14 14:32:13 -07:00
}
2024-01-21 05:24:05 +01:00
2024-01-14 14:32:13 -07:00
.pagea {
display: inline-block;
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pagea:link {
text-decoration: none;
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pagea:visited {
text-decoration: none;
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pagea:hover {
text-decoration: none;
}
2024-01-21 05:24:05 +01:00
2024-01-14 22:32:46 -07:00
.pagea:active {
text-decoration: none;
}
2024-01-21 05:24:05 +01:00
2024-01-14 14:32:13 -07:00
p {
margin: 0;
padding: 0;
}
2024-01-21 05:24:05 +01:00
html.dark-mode .clipboard {
fill: white;
2024-04-13 02:54:59 +02:00
}