PawsAndPetals/style.css

114 lines
1.7 KiB
CSS
Raw Normal View History

2025-04-30 22:38:41 +01:00
:root{
2025-04-01 09:18:28 +00:00
--text: #729b78;
--backing: white;
}
body{
background-image: url("wallpaper.png");
background-size: 250px;
2025-04-30 22:38:41 +01:00
color: var(--text);
2025-04-01 09:18:28 +00:00
}
header, article, section{
2025-04-30 22:38:41 +01:00
background-color: var(--backing);
2025-04-01 09:18:28 +00:00
padding: 10px;
border-radius: 0 0 0px 0px;
}
main{
border-radius: 0 0 0px 0px;
width: 60vw;
margin: auto;
margin-top: 15px;
padding: 5px;
text-align: center;
}
2025-04-30 22:38:41 +01:00
/*
NAV BAR
*/
2025-04-01 09:18:28 +00:00
nav{
display:flex;
flex-direction: row;
justify-content: center;
2025-04-30 22:38:41 +01:00
background-color: var(--backing);
color: var(--text);
2025-04-01 09:18:28 +00:00
font-size: 1.5rem;
gap: 20px;
padding: 10px;
margin-top: 20vh;
}
nav a{
font-size: 1.5rem;
2025-04-30 22:38:41 +01:00
color: var(--text);
2025-04-01 09:18:28 +00:00
text-decoration: none;
2025-04-30 22:38:41 +01:00
border-bottom: solid var(--text) 0px;
2025-04-01 09:18:28 +00:00
transition: border-bottom 0.1s,font-size 0.7s;
}
nav a:hover{
font-size: 1.6rem;
2025-04-30 22:38:41 +01:00
border-bottom: solid var(--text) 2px;
2025-04-01 09:18:28 +00:00
}
nav a:visited{
2025-04-30 22:38:41 +01:00
color: var(--text);
2025-04-01 09:18:28 +00:00
text-decoration: none;
}
2025-04-30 22:38:41 +01:00
table{
2025-04-01 09:18:28 +00:00
margin: auto;
2025-04-30 22:38:41 +01:00
width: 80%;
2025-04-01 09:18:28 +00:00
}
2025-04-30 22:38:41 +01:00
.white_backing{
background-color: var(--backing);
2025-04-01 09:18:28 +00:00
}
2025-04-26 15:05:09 +01:00
2025-04-30 22:38:41 +01:00
.hover_rotate{
transition: transform 0.25s;
2025-04-01 09:18:28 +00:00
}
2025-04-30 22:38:41 +01:00
.hover_rotate:hover{
transform: rotate(5deg);
2025-04-01 09:18:28 +00:00
}
@media screen and (max-width:1000px){
2025-04-26 15:05:09 +01:00
table{
width: 80%;
font-size: 1.5rem;
}
table, th, td{
/* border: 2px solid; */
/* border-radius: 5px; */
/* border-collapse: collapse; */
}
header, article, section{
2025-04-30 22:38:41 +01:00
background-color: var(--backing);
2025-04-26 15:05:09 +01:00
padding: 10px;
padding-bottom: 20px;
border-radius: 0 0 0px 0px;
}
2025-04-01 09:18:28 +00:00
main{
width: 90vw;
font-size:2rem;
}
nav a{
font-size: 2.5rem;
2025-04-30 22:38:41 +01:00
color: var(--text);
2025-04-01 09:18:28 +00:00
text-decoration: none;
2025-04-30 22:38:41 +01:00
border-bottom: solid var(--text) 0px;
2025-04-01 09:18:28 +00:00
transition: border-bottom 0.1s,font-size 0.7s;
}
nav a:hover{
font-size: 2.6rem;
2025-04-30 22:38:41 +01:00
border-bottom: solid var(--text) 2px;
2025-04-01 09:18:28 +00:00
}
}