All checks were successful
DEPLOY / deploy (push) Successful in 6s
feat(images): add Pokémon images for random selection feature style(CSS): enhance styling for body, buttons, and layout for better user experience
114 lines
1.6 KiB
CSS
114 lines
1.6 KiB
CSS
@font-face {
|
|
font-family: JetBrainsMono;
|
|
src: url(assets/font/JetBrainsMono-Regular.woff2) format(woff2);
|
|
}
|
|
|
|
* {
|
|
font-family: JetBrainsMono;
|
|
}
|
|
|
|
body {
|
|
color:#F8F8F2;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: #282936;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#main{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#pokemon_team{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
#title {
|
|
padding : 1rem;
|
|
}
|
|
|
|
#menubar {
|
|
background-color: #44475A;
|
|
border-radius: 20px;
|
|
padding: 10px;
|
|
display: flex;
|
|
gap: 50px;
|
|
justify-content: center;
|
|
}
|
|
|
|
button {
|
|
color: black;
|
|
padding : 10px;
|
|
border-radius: 10px;
|
|
background-color: #BD93F9;
|
|
border: none;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #BD93F966;
|
|
}
|
|
|
|
.title_button {
|
|
color: black;
|
|
padding : 10px;
|
|
border-radius: 10px;
|
|
background-color: #BD93F9;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
|
|
.title_button:hover {
|
|
background-color: #BD93F966;
|
|
}
|
|
|
|
|
|
#content {
|
|
background-color : #44475A;
|
|
padding: 10px;
|
|
border-radius: 20px;
|
|
margin-left: 10rem;
|
|
margin-right: 10rem;
|
|
}
|
|
|
|
|
|
.project_box {
|
|
flex-direction: row;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.project_box_thumbnail {
|
|
width: 20rem;
|
|
height: 20rem;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
#player_input {
|
|
color: #F8F8F2;
|
|
border-radius: 30px;
|
|
border: none;
|
|
padding: 10px;
|
|
background-color: #44475A;
|
|
}
|
|
|
|
#pokemon_frame{
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|