Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions dev-roster-website/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
12 changes: 12 additions & 0 deletions dev-roster-website/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ function App() {
<li>Test Developer Name</li>
<li>Test Developer Name</li>
</ul>
<h2 className="lex-zero-waste">Lexington Zero Waste</h2>
<ul>
<button className="dev-button">
<p className="kyra-mccandless">Kyra McCandless</p>
</button>
</ul>
<h2 className="add-space-above">This is my experimental button!</h2>
<ul>
<li>Changing background color, outline offset, and border radius</li>
<li>Hover and clicking effects</li>
<li>Fun fonts!</li>
</ul>
</div>
</>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hi! My name is Kyra, and I am a freshman that wants to learn more about coding!