1062 lines
20 KiB
CSS
1062 lines
20 KiB
CSS
/* MOBILE AND GLOBAL STYLES */
|
|
|
|
/* applies to screens smaller than 500px (first breakpoint) */
|
|
/* and above unless overwritten below */
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..600&display=swap');
|
|
|
|
:root {
|
|
--bgColor: #ffffff;
|
|
--normal: #999999;
|
|
--fighting: #C03028;
|
|
--flying: #A890F0;
|
|
--poison: #A040A0;
|
|
--ground: #E0C068;
|
|
--rock: #B8A038;
|
|
--bug: #A8B820;
|
|
--ghost: #705898;
|
|
--steel: #B8B8D0;
|
|
--fire: #F08030;
|
|
--water: #6890F0;
|
|
--grass: #78C850;
|
|
--electric: #F8D030;
|
|
--psychic: #F85888;
|
|
--ice: #98D8D8;
|
|
--dragon: #7038F8;
|
|
--dark: #41314e;
|
|
--fairy: #EE99AC;
|
|
}
|
|
|
|
|
|
body {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 1.5em;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* LANDING STYLES */
|
|
|
|
@keyframes fadeImage {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
#landing {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-size: cover;
|
|
transition: opacity 1s forwards; /*transition does not work for images*/
|
|
position: relative;
|
|
}
|
|
|
|
#landing #background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -2;
|
|
}
|
|
|
|
#landing #background-transition {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
transition: opacity 1s;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 10vw;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
user-select: none;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#titleBanner {
|
|
padding-left: 5%;
|
|
padding-right: 5%;
|
|
transition: color 1s, background-color 1s, border-radius 0.5s ease;
|
|
}
|
|
|
|
#titleBanner:hover {
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.black {
|
|
background-color: #000; /* Reference[0] https://www.w3schools.com/howto/howto_css_cutout_text.asp */
|
|
color: #fff;
|
|
mix-blend-mode: multiply;
|
|
}
|
|
|
|
.white {
|
|
background-color: #fff;
|
|
color: #000;
|
|
mix-blend-mode: lighten;
|
|
}
|
|
|
|
#colorSelector {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 10px;
|
|
align-items: center;
|
|
|
|
padding: 10px;
|
|
background-color: #ffffff50;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#colorSelector input {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#colorSelector label {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
/* BELOW LANDING STYLES */
|
|
|
|
#below-landing {
|
|
background-color: #101010;
|
|
overflow: auto;
|
|
color: white;
|
|
padding: 10px;
|
|
}
|
|
|
|
p {
|
|
font-weight: 200;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 3em;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
text-decoration: underline;
|
|
text-decoration-color: var(--bgColor);
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5em;
|
|
font-weight: 300;
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.features {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#features-intro p {
|
|
text-align: center;
|
|
}
|
|
|
|
#table-heading {
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.feature-showcase {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: 40px;
|
|
background-color: #181818;
|
|
}
|
|
|
|
.feature-showcase-item {
|
|
padding: 30px;
|
|
border-bottom: 1px solid var(--bgColor);
|
|
}
|
|
|
|
#modern-css {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* FULLSCREEN STYLES */
|
|
#fullscreen {
|
|
position: fixed;
|
|
height: 100vh;
|
|
width: 100%;
|
|
background: #1118;
|
|
z-index: 100;
|
|
backdrop-filter: blur(10px);
|
|
top: 0px;
|
|
left: 0px;
|
|
display: none;
|
|
}
|
|
|
|
#fullscreen.visible {
|
|
display: flex;
|
|
}
|
|
|
|
#pokemon-display {
|
|
height: calc(100% - 90px);
|
|
width: calc(100% - 90px);
|
|
background: white;
|
|
margin: auto;
|
|
align-self: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: 26px;
|
|
padding: 10px;
|
|
overflow-y: scroll;
|
|
min-width: 260px;
|
|
}
|
|
|
|
#pokemon-display::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
#fullscreen #close-button {
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 0px;
|
|
height: 40px;
|
|
width: 40px;
|
|
border: 0;
|
|
background: #fff0;
|
|
font-size: 1.5em;
|
|
cursor: pointer;
|
|
color: white;
|
|
text-shadow: black 1px 1px 3px;
|
|
}
|
|
|
|
#pokemon-display #image-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
max-height: 475px;
|
|
background: #ddd;
|
|
background-image: linear-gradient(to right, transparent 0px, #999 1px, transparent 2px), linear-gradient(to bottom, transparent 0px, #999 1px, transparent 2px);
|
|
background-size: 35px 35px;
|
|
animation: transform 2.5s infinite;
|
|
animation-timing-function: linear;
|
|
border-radius: 15px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#pokemon-display img {
|
|
width: 100%;
|
|
}
|
|
|
|
#description-carousel {
|
|
display: flex;
|
|
flex-direction: row;
|
|
background: #222;
|
|
border-radius: 15px;
|
|
padding-left: 28px;
|
|
padding-right: 28px;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
height: fit-content;
|
|
position: relative;
|
|
}
|
|
|
|
#description-carousel .description-carousel-item {
|
|
color: white;
|
|
width: 100%;
|
|
flex: 0 0 100%;
|
|
height: fit-content;
|
|
margin-right: 33px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
#description-carousel #carousel-left-button {
|
|
top: 0;
|
|
left: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
#description-carousel #carousel-right-button {
|
|
top: 0;
|
|
right: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
#description-carousel button {
|
|
position: absolute;
|
|
height: 100%;
|
|
border: none;
|
|
background: #0000;
|
|
color: white;
|
|
width: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#description-carousel button:hover {
|
|
font-size: 16px;
|
|
}
|
|
|
|
#description-carousel .description-text {
|
|
left: 0;
|
|
color: #ccc;
|
|
}
|
|
|
|
#description-carousel .description-game {
|
|
left: 0;
|
|
font-size: 1em;
|
|
font-weight: 400;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
@keyframes transform {
|
|
from {
|
|
background-position: 0px 0px;
|
|
}
|
|
to {
|
|
background-position: 35px 35px;
|
|
}
|
|
}
|
|
|
|
#pokemon-display .pokemon-name {
|
|
font-size: 1.2em;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
margin-left: 10px;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
#pokemon-display .pokemon-id {
|
|
font-size: 1.6em;
|
|
font-weight: 150;
|
|
margin: 0;
|
|
margin-left: 10px;
|
|
position: relative;
|
|
overflow: visible;
|
|
height: 0;
|
|
width: 0;
|
|
text-shadow: #fff 0px 0px 5px;
|
|
}
|
|
|
|
#statblock .stat-empty {
|
|
color: #bbb;
|
|
}
|
|
|
|
#statblock #hp .stat-filled {
|
|
color: #90d060;
|
|
}
|
|
|
|
#statblock #attack .stat-filled {
|
|
color: #ffd060;
|
|
}
|
|
|
|
#statblock #defense .stat-filled {
|
|
color: #f09040;
|
|
}
|
|
|
|
#statblock #special-attack .stat-filled {
|
|
color: #40a0f0;
|
|
}
|
|
|
|
#statblock #special-defense .stat-filled {
|
|
color: #6b30ff;
|
|
}
|
|
|
|
#statblock #speed .stat-filled {
|
|
color: #ff40ff;
|
|
}
|
|
|
|
#statblock {
|
|
background-color: #222;
|
|
color: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 10px;
|
|
height: fit-content;
|
|
border-radius: 15px;
|
|
}
|
|
|
|
.stat-bar {
|
|
display: grid;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#statblock .stat-name {
|
|
grid-column: 1;
|
|
grid-row: 1;
|
|
}
|
|
|
|
#statblock .stat-value {
|
|
grid-column: 2;
|
|
grid-row: 1;
|
|
text-align: right;
|
|
}
|
|
|
|
#statblock .stat-graphic {
|
|
grid-column: 1 / span 2;
|
|
grid-row: 2;
|
|
}
|
|
|
|
#statblock p {
|
|
margin: 0;
|
|
}
|
|
|
|
#image-and-stats {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* POKEDEX STYLES */
|
|
|
|
#pokedex {
|
|
max-width: 1440px;
|
|
margin: auto;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
#generation-selector, #type-selector {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#pokedex h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
#generation-selector {
|
|
display: flex;
|
|
}
|
|
|
|
#generation-selector input {
|
|
display: none;
|
|
}
|
|
|
|
#generation-selector label {
|
|
display: inline-block;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
min-height: 40px;
|
|
min-width: 40px;
|
|
text-align: center;
|
|
text-shadow: black 0px 0px 3px;
|
|
line-height: 40px;
|
|
border-radius: 30px;
|
|
background-color: #202020;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
#generation-selector label:hover {
|
|
background-color: #303030;
|
|
}
|
|
|
|
#generation-selector input:checked + label {
|
|
background-color: var(--bgColor);
|
|
}
|
|
|
|
#type-selector {
|
|
display: flex;
|
|
}
|
|
|
|
#type-selector input {
|
|
display: none;
|
|
}
|
|
|
|
#type-selector label {
|
|
display: inline-block;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
height: 40px;
|
|
width: 40px;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
border-radius: 30px;
|
|
background-color: #202020;
|
|
color: white;
|
|
cursor: pointer;
|
|
transition: background-color 0.5s;
|
|
}
|
|
|
|
#type-selector label img {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 10px;
|
|
}
|
|
|
|
#type-selector label:hover {
|
|
background-color: #303030;
|
|
}
|
|
|
|
#type-selector input:checked + label {
|
|
background-color: var(--bgColor);
|
|
}
|
|
|
|
#normal:checked + label {
|
|
background-color: var(--normal) !important;
|
|
}
|
|
|
|
#fighting:checked + label {
|
|
background-color: var(--fighting) !important;
|
|
}
|
|
|
|
#flying:checked + label {
|
|
background-color: var(--flying) !important;
|
|
}
|
|
|
|
#poison:checked + label {
|
|
background-color: var(--poison) !important;
|
|
}
|
|
|
|
#ground:checked + label {
|
|
background-color: var(--ground) !important;
|
|
}
|
|
|
|
#rock:checked + label {
|
|
background-color: var(--rock) !important;
|
|
}
|
|
|
|
#bug:checked + label {
|
|
background-color: var(--bug) !important;
|
|
}
|
|
|
|
#ghost:checked + label {
|
|
background-color: var(--ghost) !important;
|
|
}
|
|
|
|
#steel:checked + label {
|
|
background-color: var(--steel) !important;
|
|
}
|
|
|
|
#fire:checked + label {
|
|
background-color: var(--fire) !important;
|
|
}
|
|
|
|
#water:checked + label {
|
|
background-color: var(--water) !important;
|
|
}
|
|
|
|
#grass:checked + label {
|
|
background-color: var(--grass) !important;
|
|
}
|
|
|
|
#electric:checked + label {
|
|
background-color: var(--electric) !important;
|
|
}
|
|
|
|
#psychic:checked + label {
|
|
background-color: var(--psychic) !important;
|
|
}
|
|
|
|
#ice:checked + label {
|
|
background-color: var(--ice) !important;
|
|
}
|
|
|
|
#dragon:checked + label {
|
|
background-color: var(--dragon) !important;
|
|
}
|
|
|
|
#dark:checked + label {
|
|
background-color: var(--dark) !important;
|
|
}
|
|
|
|
#fairy:checked + label {
|
|
background-color: var(--fairy) !important;
|
|
}
|
|
|
|
.normal-primary-type {
|
|
background-color: var(--normal) !important;
|
|
}
|
|
|
|
.normal-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--normal) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.fighting-primary-type {
|
|
background-color: var(--fighting) !important;
|
|
}
|
|
|
|
.fighting-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--fighting) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.flying-primary-type {
|
|
background-color: var(--flying) !important;
|
|
}
|
|
|
|
.flying-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--flying) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.poison-primary-type {
|
|
background-color: var(--poison) !important;
|
|
}
|
|
|
|
.poison-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--poison) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.ground-primary-type {
|
|
background-color: var(--ground) !important;
|
|
}
|
|
|
|
.ground-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--ground) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.rock-primary-type {
|
|
background-color: var(--rock) !important;
|
|
}
|
|
|
|
.rock-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--rock) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.bug-primary-type {
|
|
background-color: var(--bug) !important;
|
|
}
|
|
|
|
.bug-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--bug) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.ghost-primary-type {
|
|
background-color: var(--ghost) !important;
|
|
}
|
|
|
|
.ghost-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--ghost) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.steel-primary-type {
|
|
background-color: var(--steel) !important;
|
|
}
|
|
|
|
.steel-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--steel) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.fire-primary-type {
|
|
background-color: var(--fire) !important;
|
|
}
|
|
|
|
.fire-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--fire) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.water-primary-type {
|
|
background-color: var(--water) !important;
|
|
}
|
|
|
|
.water-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--water) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.grass-primary-type {
|
|
background-color: var(--grass) !important;
|
|
}
|
|
|
|
.grass-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--grass) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.electric-primary-type {
|
|
background-color: var(--electric) !important;
|
|
}
|
|
|
|
.electric-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--electric) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.psychic-primary-type {
|
|
background-color: var(--psychic) !important;
|
|
}
|
|
|
|
.psychic-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--psychic) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.ice-primary-type {
|
|
background-color: var(--ice) !important;
|
|
}
|
|
|
|
.ice-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--ice) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.dragon-primary-type {
|
|
background-color: var(--dragon) !important;
|
|
}
|
|
|
|
.dragon-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--dragon) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.dark-primary-type {
|
|
background-color: var(--dark) !important;
|
|
}
|
|
|
|
.dark-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--dark) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
.fairy-primary-type {
|
|
background-color: var(--fairy) !important;
|
|
}
|
|
|
|
.fairy-secondary-type {
|
|
box-shadow: inset 0px -150px 100px -100px var(--fairy) , 0px 0px 0px 0px transparent !important;
|
|
}
|
|
|
|
#pokemon-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
width: 100%;
|
|
height: 230px;
|
|
}
|
|
|
|
.pokemon-card {
|
|
height: 200px;
|
|
min-width: 300px;
|
|
background-color: #444;
|
|
margin: 10px;
|
|
border-radius: 40px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pokemon-card img {
|
|
position: relative;
|
|
top: -120px;
|
|
left: 100px;
|
|
height: 192px;
|
|
width: 192px;
|
|
margin: 10px;
|
|
image-rendering: pixelated;
|
|
color: black;
|
|
}
|
|
|
|
.pokemon-card .pokemon-name {
|
|
font-weight: 500;
|
|
font-size: 1.15em;
|
|
position: relative;
|
|
margin: 0;
|
|
top: 15px;
|
|
left: 15px;
|
|
z-index: 1;
|
|
text-shadow: black 1px 1px 3px;
|
|
}
|
|
|
|
.pokemon-card .pokemon-id {
|
|
font-weight: 100;
|
|
font-size: 3.5em;
|
|
position: relative;
|
|
margin: 0;
|
|
top: 15px;
|
|
left: 15px;
|
|
z-index: 0;
|
|
text-shadow: #0008 1px 1px 2px;
|
|
}
|
|
|
|
/* CAROUSEL STYLES */
|
|
|
|
#carousel {
|
|
height: 100vh;
|
|
background-color: #101010;
|
|
position: relative;
|
|
display: flex;
|
|
}
|
|
|
|
#carousel-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding: 50px 0px;
|
|
}
|
|
|
|
.carousel-item {
|
|
position: relative;
|
|
display:block;
|
|
height: 100px;
|
|
width: calc(100% - 34px);
|
|
min-height: 100px;
|
|
margin: 12px;
|
|
border-radius: 52px;
|
|
border: 3px solid var(--bgColor);
|
|
overflow: hidden;
|
|
|
|
transition: width 1s ease, height 1s ease;
|
|
}
|
|
|
|
.carousel-item .carousel-id {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
transform: translate(10px, 5px);
|
|
width: 70px;
|
|
height: 70px;
|
|
background-color: #202020;
|
|
border-radius: 40px;
|
|
margin: 0;
|
|
margin-bottom: 15px;
|
|
border: 3px solid var(--bgColor);
|
|
text-shadow: black 5px 5px 5px;
|
|
user-select: none;
|
|
}
|
|
|
|
.carousel-item .carousel-title {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
transform: translate(100px, -35px);
|
|
color: white;
|
|
font-size: 25px;
|
|
font-weight: 550;
|
|
margin: 0;
|
|
text-shadow: rgb(0, 0, 0) 3px 3px 3px;
|
|
width: 500px;
|
|
}
|
|
|
|
#carousel-container .active {
|
|
height:100%;
|
|
}
|
|
|
|
#carousel-container #carousel-1 {
|
|
background-image: linear-gradient(to top, #0008, #0000), url("/assets/photos/code-1839406_1920.jpg");
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
#carousel-container #carousel-2 {
|
|
background-image: linear-gradient(to top, #000a, #0000), url("/assets/photos/software-3682509_1920.jpg");
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
#carousel-container #carousel-3 {
|
|
background-image: linear-gradient(to top, #000a, #0000), url("/assets/photos/keyboard-5466431_1920.jpg");
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
/* TABLET STYLES */
|
|
|
|
@media screen and (min-width: 500px) {
|
|
|
|
/* applies to screens wider than 499px */
|
|
|
|
/* FULLSCREEN STYLES */
|
|
#pokemon-display {
|
|
height: calc(100% - 120px);
|
|
width: calc(100% - 120px);
|
|
border-radius: 30px;
|
|
padding: 20px;
|
|
max-height: 600px;
|
|
max-width: 900px;
|
|
}
|
|
|
|
#image-and-stats {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: 1fr 280px;
|
|
|
|
}
|
|
|
|
#pokemon-display img {
|
|
grid-column: 1;
|
|
max-height: 440px;
|
|
max-width: 440px;
|
|
justify-self: center;
|
|
}
|
|
|
|
#pokemon-display #image-container {
|
|
display: flex;
|
|
grid-column: 1;
|
|
width: calc(100% - 10px);
|
|
justify-content: center;
|
|
margin: 0;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#statblock {
|
|
grid-column: 2;
|
|
width: 260px;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* DESKTOP STYLES */
|
|
|
|
@media screen and (min-width: 1000px) {
|
|
|
|
/* applies to screens wider than 999px */
|
|
#carousel {
|
|
height: 910px;
|
|
}
|
|
|
|
#carousel-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.carousel-item {
|
|
height: 800px;
|
|
width: 146px;
|
|
min-width: 146px;
|
|
border-radius: 75px;
|
|
}
|
|
|
|
.carousel-item .carousel-id {
|
|
width: 120px;
|
|
height: 120px;
|
|
line-height: 120px;
|
|
font-size: 100px;
|
|
border-radius: 65px;
|
|
}
|
|
|
|
#carousel-container .active {
|
|
width:100%;
|
|
height: 800px;
|
|
}
|
|
|
|
.carousel-item .carousel-title {
|
|
transform: translate(180px, -50px);
|
|
font-size: 50px;
|
|
}
|
|
|
|
.content-column {
|
|
max-width: 1440px;
|
|
margin: auto;
|
|
}
|
|
|
|
/* FULLSCREEN STYLES */
|
|
|
|
#pokemon-display {
|
|
border-radius: 35px;
|
|
padding: 20px;
|
|
max-height: 755px;
|
|
max-width: 1120px;
|
|
}
|
|
|
|
#fullscreen #close-button {
|
|
top: 20px;
|
|
right: 20px;
|
|
height: 60px;
|
|
width: 60px;
|
|
font-size: 2em;
|
|
}
|
|
|
|
#pokemon-contents {
|
|
display: grid;
|
|
grid-template-columns: 475px 1fr;
|
|
grid-column-gap: 8px;
|
|
}
|
|
|
|
#pokemon-display .pokemon-name {
|
|
font-size: 2.2em;
|
|
text-align: left;
|
|
margin-bottom: 5px;
|
|
transform: translate(0px, -8px);
|
|
}
|
|
|
|
#pokemon-display .pokemon-id {
|
|
font-size: 2.5em;
|
|
}
|
|
|
|
#pokemon-display img {
|
|
max-height: 475px;
|
|
max-width: 475px;
|
|
height: 475px;
|
|
width: 475px;
|
|
}
|
|
|
|
#pokemon-display #image-container {
|
|
max-height: 475px;
|
|
max-width: 475px;
|
|
height: 475px;
|
|
width: 475px;
|
|
margin: 0;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#statblock {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
width: 455px;
|
|
font-size: 0.85em !important;
|
|
justify-content: space-between;
|
|
grid-column: 1;
|
|
grid-row: 2;
|
|
}
|
|
|
|
/* BELOW LANDING STYLES */
|
|
|
|
#below-landing {
|
|
padding: 50px;
|
|
}
|
|
|
|
.feature-showcase {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-template-rows: auto;
|
|
}
|
|
|
|
.feature-showcase-item {
|
|
padding: 30px;
|
|
}
|
|
|
|
#interactive-ui {
|
|
grid-column: 1 / 2;
|
|
grid-row: 2 / 3;
|
|
border-right: 1px solid var(--bgColor);
|
|
}
|
|
|
|
#responsive-design {
|
|
grid-column: 2 / 2;
|
|
grid-row: 2 / 3;
|
|
}
|
|
|
|
#user-input {
|
|
grid-column: 1 / 2;
|
|
grid-row: 3 / 3;
|
|
border-right: 1px solid var(--bgColor);
|
|
border-bottom: none;
|
|
}
|
|
|
|
#modern-css {
|
|
grid-column: 2 / 2;
|
|
grid-row: 3 / 3;
|
|
}
|
|
|
|
/* POKEDEX STYLES */
|
|
|
|
#generation-selector {
|
|
justify-content: center;
|
|
}
|
|
|
|
}
|
|
|
|
h1 {
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
} |