add day 50

This commit is contained in:
Zoe
2022-11-11 18:09:56 -06:00
parent 4ed008a755
commit 2eb6a70088
45 changed files with 11558 additions and 2 deletions

27
day50/src/style.css Normal file
View File

@@ -0,0 +1,27 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body {
background-color: #101010;
color: #FEFEFE;
font-family: Helvetica, Arial, Sans-Serif;
padding: 0;
margin: 0;
min-height: 100vh;
}
a:not([link\:active]):hover {
text-decoration: underline;
}
a[link\:active] {
pointer-events: none;
cursor: default;
font-weight: 600;
}
.container__content {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}