FreesideWeb/css/tailwind.scss

56 lines
1.0 KiB
SCSS
Raw Normal View History

2021-08-30 20:22:23 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
2021-09-15 22:52:23 +01:00
.about-links {
@apply underline text-primary font-semibold hover:text-danger visited:text-discord
}
2024-02-13 10:17:03 +00:00
.logo {
width: 10rem;
}
2021-09-15 22:52:23 +01:00
.font-big {
font-size: 1.125rem;
line-height: 3;
}
.about-cta {
@apply flex-auto h-16 pb-1 pt-2 pl-2 pr-2 mr-2 bg-primary hover:ring-white rounded ring-2 ring-black text-white;
}
2021-08-30 20:22:23 +01:00
.btn-cta {
@apply inline-block pb-1 pt-2 pl-2 pr-2 mr-2 bg-primary hover:ring-white rounded ring-2 ring-black text-white;
}
2024-02-13 10:17:03 +00:00
.bg-block {
top:0;
left: 0;
right: 0;
2024-02-13 10:17:03 +00:00
position: relative;
overflow: auto;
display: block;
background-size:cover;
2024-02-13 10:17:03 +00:00
}
2024-02-13 10:17:03 +00:00
.bg-projects {
@apply bg-block;
background-image: url("/img/projects-bg.jpg");
2021-08-30 20:22:23 +01:00
}
2024-02-13 10:17:03 +00:00
.bg-resources {
@apply bg-block;
background-image: url("/img/resources-bg.jpg");
}
2024-02-13 10:17:03 +00:00
.bg-discord-guild {
@apply bg-block;
background-image: url("/img/discord-bg.jpg");
2021-08-30 20:22:23 +01:00
}
.social-icons .icon-link:hover {
color: #fe6431;
}
2024-02-13 10:17:03 +00:00
}