You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
1.4 KiB

/* Tailwind base - put variables under: tailwind.config.js */
@import "node_modules/tailwindcss/base";
/* Tailwind component classes registered by plugins*/
@import "node_modules/tailwindcss/components";
/* Tailwind's utility classes - generated based on config file */
@import "node_modules/tailwindcss/utilities";
/*----------- Don't forget to rerun hugo after changing this file! As this triggers node to regenerate main.css */
/*
#
# Buttons
#
*/
blink {
animation: blinker 2s linear infinite;
color: #1c87c9;
}
@keyframes blinker {
50% { opacity: 0; }
}
.button-primary {
background-color: green;
text-shadow: 2px 2px 5px yellow;
box-shadow: 10px 10px 15px lightgreen;
border-radius: 20px;
}
/*
.button-primary:hover {
background-color: rgb(236, 113, 18);
}
.button-secondary {
color: rgba(255, 255, 255, 0.95);
background-color: rgb(100, 100, 100);
}
.button-secondary:hover {
background-color: rgb(90, 90, 90);
}
*/
/*
#
# Top border color of form inputs
#
*/
/*
.border-t {
border-color: rgb(239, 130, 44);
}
*/
/*
#
# Header Background & Text
#
*/
/*
#header-inner-wrapper {
background-color: rgba(26, 38, 191, 0.9);
}
#brand-headline {
color: rgb(239, 130, 44);
}
#tagline-paragraph {
color: rgba(255, 255, 255, 0.95);
}
*/
/*
#
# Content below the header
#
*/
/*
.prose h1 {
color: rgb(239, 130, 44);
}
.prose p {
color: white;
}
*/