herreweb_site/static/styles.css

56 lines
1.2 KiB
CSS
Raw Normal View History

2023-12-29 21:37:15 +00:00
@font-face {
font-family: 'Herreweb';
src: url('static/ring_of_races_font.ttf') format('tff');
/* You can add additional font formats (e.g., ttf, eot) for better compatibility */
}
2023-12-24 21:24:57 +00:00
body {
2023-12-29 21:37:15 +00:00
background-color: rgb(228, 218, 210);
2023-12-24 21:24:57 +00:00
color: white;
2023-12-29 21:37:15 +00:00
font-family: 'Herreweb', sans-serif;
2023-12-24 21:24:57 +00:00
}
.main-container {
text-align: center;
margin-top: 50px;
}
h1 {
2023-12-29 21:37:15 +00:00
/* font-family: 'Times New Roman', serif; */
2023-12-24 21:24:57 +00:00
font-size: 36px;
margin-top: 20px;
}
2023-12-29 21:37:15 +00:00
/* .folder-container {
display: flex;
2023-12-24 21:24:57 +00:00
flex-wrap: wrap;
justify-content: center;
2023-12-29 21:37:15 +00:00
} */
2023-12-24 21:24:57 +00:00
.document-button {
2023-12-29 21:37:15 +00:00
width: 200px;
height: 300px;
margin: 4%;
background-color: #bda99b; /* Dark SaddleBrown color */
2023-12-24 21:24:57 +00:00
border: 2px solid #8B4513;
border-radius: 10px;
position: relative;
overflow: hidden;
2023-12-29 21:37:15 +00:00
color: rgb(17, 5, 5);
2023-12-24 21:24:57 +00:00
}
/* Add a subtle shadow for depth */
.document-button:hover {
2023-12-29 21:37:15 +00:00
transition: all 0.3s ease;
width: 200px;
height: 300px;
margin: 4%;
2023-12-24 21:24:57 +00:00
background-color: #8B4513; /* Dark SaddleBrown color */
border: 2px solid #8B4513;
background:
2023-12-29 21:37:15 +00:00
repeating-linear-gradient(in hsl longer hue, rgb(85, 48, 25), rgb(148, 94, 50) 50px);
2023-12-24 21:24:57 +00:00
border-radius: 10px;
position: relative;
overflow: hidden;
color: white;
2023-12-29 21:37:15 +00:00
}