diff --git a/luckydiamond/src/assets/css/PagesStyles/home.css b/luckydiamond/src/assets/css/PagesStyles/home.css
index ffb3803..5913b35 100644
--- a/luckydiamond/src/assets/css/PagesStyles/home.css
+++ b/luckydiamond/src/assets/css/PagesStyles/home.css
@@ -64,4 +64,67 @@
animation-delay: 5s;
}
-/* /Main */
\ No newline at end of file
+/* /Main */
+
+/* GameMode */
+
+.gamemode {
+ width: 80%;
+}
+
+.gamemode__content--text {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+}
+
+.gamemode__content--text h2 {
+ margin: 2% 0 .5% 10%;
+}
+
+.gamemode__content--text div {
+ width: 80%;
+ margin: 0 auto;
+ border: 1px solid #fff;
+ height: 1px;
+}
+
+.gamemode__content--card {
+ width: 100%;
+ height: 100%;
+}
+
+.gamemode__main {
+ border-radius: 40px;
+ background: #EF4444;
+ box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
+ width: 30%;
+ height: 100%;
+}
+
+.gamemode__main .line__content1 {
+ display: flex;
+ justify-content: center;
+ text-align: center;
+}
+
+.gamemode__main .line__content1 h3 {
+ color: #FFF;
+ padding-top: 10px;
+ text-transform: uppercase;
+ font-size: 91px;
+ font-weight: 700;
+ text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
+ font-family: Montserrat Alternates;
+}
+
+.gamemode__main .content .icon1 {
+ width: 50%;
+}
+
+.gamemode__main .content {
+ display: flex;
+ justify-content: space-between;
+}
+
+/* /GameMode */
\ No newline at end of file
diff --git a/luckydiamond/src/assets/css/global.css b/luckydiamond/src/assets/css/global.css
index c7b8c26..04a4bc9 100644
--- a/luckydiamond/src/assets/css/global.css
+++ b/luckydiamond/src/assets/css/global.css
@@ -95,8 +95,8 @@ body, html {
.gamemode {
grid-area: gamemode;
- background: #123123;
- align-self: start;
+ height: 70%;
+ width: 100%;
}
/* /GameMode */
\ No newline at end of file
diff --git a/luckydiamond/src/assets/icons-gamemodes/bomb-icon.svg b/luckydiamond/src/assets/icons-gamemodes/bomb-icon.svg
new file mode 100644
index 0000000..c89db10
--- /dev/null
+++ b/luckydiamond/src/assets/icons-gamemodes/bomb-icon.svg
@@ -0,0 +1,17 @@
+
diff --git a/luckydiamond/src/assets/icons-gamemodes/icon-right-array.svg b/luckydiamond/src/assets/icons-gamemodes/icon-right-array.svg
new file mode 100644
index 0000000..818afe4
--- /dev/null
+++ b/luckydiamond/src/assets/icons-gamemodes/icon-right-array.svg
@@ -0,0 +1,21 @@
+
diff --git a/luckydiamond/src/mocks/GameModes.js b/luckydiamond/src/mocks/GameModes.js
index 12afdad..c8c06de 100644
--- a/luckydiamond/src/mocks/GameModes.js
+++ b/luckydiamond/src/mocks/GameModes.js
@@ -1,27 +1,22 @@
export default [
{
id: 1,
- title: 'slots',
+ title: 'сапёр',
players: 0
},
{
id: 2,
- title: 'double',
+ title: 'кейсы',
players: 0
},
{
id: 3,
- title: 'crash',
+ title: 'слоты',
players: 0
},
{
id: 4,
- title: 'jackpot',
- players: 0
- },
- {
- id: 5,
- title: 'mines',
+ title: 'краш',
players: 0
}
]
\ No newline at end of file
diff --git a/luckydiamond/src/pages/HomePage.vue b/luckydiamond/src/pages/HomePage.vue
index 5227bb2..2a93419 100644
--- a/luckydiamond/src/pages/HomePage.vue
+++ b/luckydiamond/src/pages/HomePage.vue
@@ -1,3 +1,4 @@
+
-
-
-
GAMEMODE
+
+
+
+
+
+ -
+
+
{{ mode.title }}
+
+
+

+
play 
+
+
+
+
@@ -48,10 +68,10 @@ export default {
return this.GameModes.filter(mode => [1].includes(mode.id))
},
firstlineGameMode() {
- return this.GameModes.filter(mode => [2,3].includes(mode.id))
+ return this.GameModes.filter(mode => [2].includes(mode.id))
},
twolineGameMode() {
- return this.GameModes.filter(mode => [4,5].includes(mode.id))
+ return this.GameModes.filter(mode => [3, 4].includes(mode.id))
}
}
}