forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-01 12:11:15 -06:00
parent 130548f473
commit 93767fe034
2 changed files with 21 additions and 0 deletions

View File

@ -4,6 +4,21 @@
@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap');
@responsive {
.text-shadow {
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12)
}
.text-shadow-t {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12)
}
.text-shadow-light {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1)
}
.text-shadow-light-t {
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1)
}
}
.test {
@apply text-red-700 font-bold text-3xl;
}

View File

@ -23,6 +23,12 @@ module.exports = {
'heading': ['Delius Swash Caps']
},
extend: {
boxShadow: {
'inset-b-white-07': '-1px -1px 1px rgba(255, 255, 255, 0.07) inset',
'inset-t-white-05': '0 1px 0 rgba(255, 255, 255, 0.05) inset',
'inset-t-white-10': '0 1px 0 rgba(255, 255, 255, 0.10) inset',
'inset-r-white-05': '1px 0 0 rgba(255, 255, 255, 0.05) inset'
},
colors: {
gray: {
'100': '#f4f6f4',