diff --git a/dev-roster-website/src/App.css b/dev-roster-website/src/App.css index 425f81f..0b284ea 100644 --- a/dev-roster-website/src/App.css +++ b/dev-roster-website/src/App.css @@ -4,4 +4,65 @@ .margin-left-1 { margin-left: 0.5em; +} + +.lex-zero-waste { + font-family: fantasy; + font-size: 40px; +} + +.kyra-mccandless { + font-family: cursive; + font-size: 20px; +} + +.dev-button { + background-color: aquamarine; + outline-color: black; + outline-style: dotted; + outline-offset: 5px; + outline-width: 3px; + border-radius: 10px; + animation-name: bg-color-change; + animation-duration: 2s; + animation-iteration-count: infinite; + box-shadow: 0 9px #999; +} + +@keyframes bg-color-change { + 0% { + background-color: aquamarine; + outline-offset: 5px; + border-radius: 10px; + } + 25% { + background-color: blue; + outline-offset: 20px; + border-radius: 30px; + + } + 50% { + background-color: green; + outline-offset: 30px; + border-radius: 60px; + } + 100% { + background-color: aquamarine; + outline-offset: 5px; + border-radius: 10px; + } +} + +.dev-button:hover { + background-color: red; + outline-style: solid; +} + +.dev-button:active { + box-shadow: 0 5px #666; + transform: translateY(4px); +} + +.add-space-above { + margin-top: 50px; } \ No newline at end of file diff --git a/dev-roster-website/src/App.jsx b/dev-roster-website/src/App.jsx index b3affe1..71ba84f 100644 --- a/dev-roster-website/src/App.jsx +++ b/dev-roster-website/src/App.jsx @@ -21,6 +21,18 @@ function App() {