diff --git a/css/style.css b/css/style.css index ec66113..5ecdb45 100644 --- a/css/style.css +++ b/css/style.css @@ -134,8 +134,9 @@ img.screenshot { background: var(--rd-blue); border: white 2px solid; border-radius: 5px; + text-align: left; /* transition: 0.5s; */ - width: 75%; + /* width: 75%; */ } .feature-card h3 { @@ -149,6 +150,28 @@ img.screenshot { font-family: var(--body-font); } +img.d-pad { + opacity: 0%; + transition: 0.25s; +} + +.carousel-button:hover img.d-pad { + opacity: 100%; + transition: 0.25s; +} + +.carousel-indicators { + opacity: 0%; + pointer-events: none; + transition: 0.25s; +} + +.carousel:hover .carousel-indicators { + opacity: 100%; + pointer-events: auto; + transition: 0.25s; +} + /* Link Styles */ .jumbotron p a, footer a, a.btn { color: var(--rd-purple); diff --git a/index.html b/index.html index 1c708df..c803935 100644 --- a/index.html +++ b/index.html @@ -290,10 +290,17 @@