This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/src/styles/global.css

48 lines
1.0 KiB
CSS
Raw Normal View History

2021-03-23 12:07:19 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2021-03-28 14:46:32 +00:00
.underline-navigation,
.underline-primary-thick {
background-image: linear-gradient(to bottom, #00c65e, #00c65e);
background-position: 0 1.1rem;
background-repeat: repeat-x;
background-size: 2px 2px;
}
2021-03-30 10:56:05 +00:00
@keyframes bg-primary-dashed-animation {
0% {
background-position-x: 0;
}
100% {
background-position-x: 15px;
}
}
2021-03-28 14:46:32 +00:00
.bg-primary-dashed {
background: repeating-linear-gradient(to right, #00c65e, #00c65e 10px, transparent 10px, transparent 15px);
2021-03-30 10:56:05 +00:00
background-size: 15px 15px;
}
.bg-primary-dashed.move {
animation: bg-primary-dashed-animation 0.3s infinite linear forwards;
2021-03-28 14:46:32 +00:00
}
.bg-error-dashed {
background: repeating-linear-gradient(to right, #ed5454, #ed5454 10px, transparent 10px, transparent 15px);
}
2021-03-28 16:34:52 +00:00
.tip {
width: 0;
height: 0;
border-style: solid;
border-width: 7px 0 7px 6px;
border-color: transparent transparent transparent #000000;
}
2021-03-29 21:32:17 +00:00
@layer base {
h1 {
@apply font-semibold text-3xl desktop:text-6xl desktop:leading-16;
}
}