diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..f2877fc --- /dev/null +++ b/css/styles.css @@ -0,0 +1,247 @@ +/***********************************************************/ +/*************** Variables ***************/ +/***********************************************************/ +:root{ + --blue-color: #1A46E5; + --green-color: #43D8C9; + --yellow-color: #FFBD11; + --pink-color: #FF89BB; + --white-color:#FFFFFF; + --black-color: #000000; +} + +.body{ + font-family: 'Poppins', sans-serif; + height: 100vh; + width: 100%; +} + +.circle-left-small{ + background: var(--blue-color); + border-radius: 100%; + height: 90px; + left: 162px; + position: absolute; + top: 16px; + width: 90px; +} + +.circle-left-big{ + /* position: absolute; */ + background:var(--blue-color); + border-radius: 100%; + height: 180px; + margin-left: -48px; + margin-top: 25px; + width: 180px; +} + +.circle-right-big{ + background: var(--blue-color); + border-radius: 100%; + height: 250px; + margin-left: 1004px; + /* position: absolute; */ + margin-top: -380px; + width: 250px; +} + +.circle-right-small{ + background: var(--blue-color); + border-radius: 100%; + height: 49px; + margin-left: 95%; + position: absolute; + width: 49px; +} + +h1{ + font-family: 'Poppins', sans-serif; + font-size: 60px; + font-style: normal; + font-weight: bold; + margin-left: 536px; +} + +.cards-players{ + display: flex; + justify-content: space-evenly; +} + +h2{ + color: var(--white-color); + font-family: 'Poppins', sans-serif; + font-size: 36px; + font-style: normal; + font-weight: bold; + line-height: 54px; + /* margin: 20px 0 20px 0; */ + text-align: center; +} + +h5{ + color: var(--white-color); + margin: 0 0 0 100px; + font-family: 'Poppins', sans-serif; + font-size: 25px; + font-weight: bold; + line-height: 45px; + /* identical to box height */ +} + +.card-player1{ + /* position: absolute; */ + background: var(--green-color); + border: 3px solid var(--black-color); + border-radius: 20px; + /* box-sizing: border-box; */ + height: 500px; + width: 370px; +} + +.percent-player1, .percent-player2{ + /* background: var(--blue-color); */ + /* border: 2px solid var(--black-color); */ + border-radius: 30px; + height: 40px; + margin-left: 35px; + width: 200px; +} + +.percent-player1::-webkit-progress-bar, .percent-player2::-webkit-progress-bar{ + background: var(--blue-color); + border-radius: 30px; +} + +.percent-player1::-webkit-progress-value, .percent-player2::-webkit-progress-value{ + background: var(--pink-color); + border-radius: 30px; +} + +.container-img-player1{ + background-color: var(--white-color); + border: 2px solid var(--black-color); + border-radius: 20px; + margin-left: 30px; + margin-top: 70px; + width: 300px; +} + +.img-player1{ + height: 170px; + margin-left: 50px; + transform: matrix(-1, 0, 0, 1, 0, 0); + width: 200px; +} + +.button-player{ + color: var(--white-color); + font-family: 'Poppins', sans-serif; + font-size: 20px; + font-weight: bold; + position: absolute; + width: 80px; + height: 80px; + background: var(--blue-color); + border: 3px solid var(--black-color); + border-radius: 100px; + margin-top: -20px; + margin-left: 20px; +} + +.card-player2{ + background: var(--yellow-color); + border: 3px solid var(--black-color); + border-radius: 20px; + height: 500px; + width: 370px; +} + + + +.container-img-player2{ + background-color: var(--white-color); + border: 2px solid var(--black-color); + border-radius: 20px; + margin-left: 30px; + margin-top: 70px; + width: 300px; +} + +.img-player2{ + height: 170px; + margin-left: 50px; + width: 200px; +} + +/***********************************************************/ +/*************** Modal ***************/ +/***********************************************************/ +.container-modal{ + /* border: 1px solid var(--black-color); */ + align-items: center; + display: flex; + height: 100vh; + justify-content: center; + width: 100%; +} + +.jake-profile{ + border-radius: 20px; + width: 350px; +} + +.container-elements{ + align-items: center; + display: flex; + flex-direction: column; + margin-left: 50px; +} + +.winner{ + color: var(--black-color); + font-family: 'Poppins', sans-serif; + font-size: 30px; + font-weight: bold; + width: 220px; +} + +.player-winner{ + color: var(--black-color); + font-family: 'Poppins', sans-serif; + font-size: 25px; + font-style: normal; + font-weight: bold; + width: 100px; +} + +.btn-play-again{ + /* position: absolute; */ + background: var(--blue-color); + border: 3px solid var(--black-color); + border-radius: 40px; + box-sizing: border-box; + color: var(--white-color); + font-family: 'Poppins', sans-serif; + font-size: 30px; + font-weight: bold; + height: 70px; + margin-top: 20px; + width: 200px; +} + + +/***********************************************************/ +/*************** Footer ***************/ +/***********************************************************/ +.footer{ + align-items: center; + display: flex; + justify-content: flex-end; + width:100%; + margin-top: 50px; +} + +.networks{ + margin-right: 20px; +} diff --git a/images/icon-github.png b/images/icon-github.png new file mode 100644 index 0000000..f0c7c4f Binary files /dev/null and b/images/icon-github.png differ diff --git a/images/icon-instagram.png b/images/icon-instagram.png new file mode 100644 index 0000000..2032351 Binary files /dev/null and b/images/icon-instagram.png differ diff --git a/images/icon-linkedin.png b/images/icon-linkedin.png new file mode 100644 index 0000000..05e1f5b Binary files /dev/null and b/images/icon-linkedin.png differ diff --git a/images/icon-twitter.png b/images/icon-twitter.png new file mode 100644 index 0000000..4ba8bad Binary files /dev/null and b/images/icon-twitter.png differ diff --git a/images/jake.png b/images/jake.png new file mode 100644 index 0000000..a536553 Binary files /dev/null and b/images/jake.png differ diff --git a/images/personajes.webp b/images/personajes.webp new file mode 100644 index 0000000..73f753f Binary files /dev/null and b/images/personajes.webp differ diff --git a/images/player1.png b/images/player1.png new file mode 100644 index 0000000..77fe43f Binary files /dev/null and b/images/player1.png differ diff --git a/images/player2.png b/images/player2.png new file mode 100644 index 0000000..5b20cc2 Binary files /dev/null and b/images/player2.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..392d542 --- /dev/null +++ b/index.html @@ -0,0 +1,56 @@ + + +
+ + + + +
+