162 lines
2.9 KiB
CSS
162 lines
2.9 KiB
CSS
@font-face {
|
|
font-family: 'Hack';
|
|
src: url(fonts/Hack-Regular.ttf) format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
min-height: 100%;
|
|
font-family: monospace;
|
|
font-size: small;
|
|
background-color: #2a2a2a;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
color: #f0f0f0;
|
|
flex-direction: column;
|
|
overflow-x: hidden;
|
|
margin: 0;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
::selection {
|
|
background-color: #c099ff;
|
|
color: #2a2a2a;
|
|
}
|
|
|
|
img {
|
|
user-select: none;
|
|
perspective: 1000px;
|
|
transform-origin: center;
|
|
transition: transform 0.1s ease;
|
|
}
|
|
|
|
.topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: start;
|
|
gap: 2vw;
|
|
width: 100%;
|
|
max-width: 100vw;
|
|
position: fixed;
|
|
background-color: rgba(59, 59, 59, 0.885);
|
|
backdrop-filter: blur(3px);
|
|
font-size: large;
|
|
top: 0;
|
|
border-bottom: 1px solid rgba(70, 70, 70, 0.885);
|
|
z-index: 9999;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.theme-button {
|
|
cursor: pointer;
|
|
background: none;
|
|
border: none;
|
|
transition: 0.3s;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.welcome {
|
|
text-align: center;
|
|
margin: 0;
|
|
width: 60vw;
|
|
max-width: 1920px;
|
|
line-height: 1.4;
|
|
padding-bottom: 25px;
|
|
padding-top: 60px;
|
|
box-sizing: border-box;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.welcome * {
|
|
color: #f0f0f0;
|
|
}
|
|
|
|
#welcome :not(h1) {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.tools-main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 2.5vw;
|
|
justify-content: center;
|
|
min-height: 10vh;
|
|
max-width: 80vw;
|
|
margin-bottom: 50px !important;
|
|
}
|
|
|
|
.tool-div {
|
|
bottom: 20px !important;
|
|
padding: 1vh 3vw;
|
|
background-color: rgba(75, 75, 75, 1);
|
|
border: 2px solid rgba(80, 80, 80, 1);
|
|
border-radius: 7px;
|
|
transition: 0.3s;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: auto;
|
|
max-width: 90vw;
|
|
width: 50vw;
|
|
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
|
|
}
|
|
|
|
.tool-header {
|
|
margin-bottom: 0;
|
|
padding-top: 15px;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.tool-desc {
|
|
margin: 5px;
|
|
font-weight: normal;
|
|
max-width: 60%;
|
|
}
|
|
|
|
.tool-media {
|
|
max-width: 30vw;
|
|
border-radius: 5px;
|
|
margin: 10px;
|
|
}
|
|
|
|
.visit-tool {
|
|
padding: 10px 20px;
|
|
background-color: rgb(60, 120, 85);
|
|
color: #f0f0f0;
|
|
border: 2px solid rgb(75, 135, 100);
|
|
border-radius: 4px;
|
|
transition: 0.1s;
|
|
font-weight: bolder;
|
|
font-size: large;
|
|
margin: 5px 0 15px 0;
|
|
}
|
|
|
|
.visit-tool:hover {
|
|
background-color: rgb(75, 135, 100);
|
|
border-color: rgb(90, 150, 115);
|
|
}
|
|
|
|
.slideshow-container {
|
|
position: relative;
|
|
width: 90vw;
|
|
max-width: 500px;
|
|
margin: auto;
|
|
}
|
|
|
|
.tool-image {
|
|
width: 100%;
|
|
max-width: 90vw;
|
|
max-height: 40vh;
|
|
border-radius: 10px;
|
|
object-fit: contain;
|
|
}
|