2023-01-01 16:16:42 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: 'Fira Code', 'Times New Roman', Times, serif;
|
|
|
|
}
|
2023-01-02 16:34:56 +00:00
|
|
|
|
|
|
|
.url {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.url::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
transform: scaleX(0);
|
|
|
|
height: 2px;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: #000;
|
|
|
|
transform-origin: bottom right;
|
|
|
|
transition: transform 0.25s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.url:hover::after {
|
|
|
|
transform: scaleX(1);
|
|
|
|
transform-origin: bottom left;
|
|
|
|
}
|