-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,88 @@ | ||
/* Общие стили для всего приложения */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f0f0f0; | ||
margin: 0; | ||
padding: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
height: 90vh; /* Высота экрана 100% от доступной высоты окна */ | ||
overflow: hidden; /* Убираем прокрутку */ | ||
font-family: Arial, sans-serif; | ||
background-color: #f0f0f0; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
align-items: center; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
|
||
/* Стили для рядов */ | ||
.row { | ||
display: flex; | ||
justify-content: center; /* Центрирование карт в ряду */ | ||
margin-bottom: 10px; /* Меньший отступ между рядами */ | ||
/* Стили для руки */ | ||
.hand { | ||
display: flex; | ||
justify-content: center; | ||
margin: 10px 0; | ||
} | ||
|
||
.opponent-hand { | ||
align-self: flex-start; | ||
} | ||
|
||
.player-hand { | ||
align-self: flex-end; | ||
} | ||
|
||
.card { | ||
width: 80px; /* Уменьшена ширина карт для лучшей адаптации на мобильных устройствах */ | ||
height: 120px; /* Уменьшена высота карт */ | ||
background-color: white; | ||
border: 2px solid black; | ||
border-radius: 10px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: 14px; | ||
margin: 0 5px; /* Уменьшены отступы между картами */ | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
cursor: pointer; | ||
width: 80px; | ||
height: 120px; | ||
background-color: white; | ||
border: 2px solid black; | ||
border-radius: 10px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: 14px; | ||
margin: 0 5px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
cursor: pointer; | ||
position: relative; | ||
} | ||
|
||
.card.dragging { | ||
opacity: 0.5; | ||
z-index: 10; | ||
} | ||
|
||
.card:hover { | ||
transform: translateY(-3px); | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | ||
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; | ||
transform: translateY(-3px); | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | ||
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; | ||
} | ||
|
||
/* Стили для рядов */ | ||
.row { | ||
display: flex; | ||
justify-content: center; | ||
margin-bottom: 10px; | ||
border: 2px dashed #ccc; /* Разметка поля */ | ||
height: 120px; /* Высота ряда, равная высоте карт */ | ||
} | ||
|
||
/* Стили для полоски между картами оппонента и игрока */ | ||
.divider { | ||
width: 100%; | ||
border-top: 2px solid black; | ||
margin: 10px 0; /* Отступ сверху и снизу от полоски */ | ||
padding: 5px 0; | ||
font-weight: bold; | ||
text-transform: uppercase; | ||
font-size: 12px; | ||
width: 100%; | ||
border-top: 2px solid black; | ||
margin: 10px 0; | ||
padding: 5px 0; | ||
font-weight: bold; | ||
text-transform: uppercase; | ||
font-size: 12px; | ||
} | ||
|
||
/* Адаптация для мобильных устройств */ | ||
@media (max-width: 480px) { | ||
.card { | ||
width: 70px; /* Ещё больше уменьшаем карты для маленьких экранов */ | ||
height: 100px; | ||
font-size: 12px; | ||
} | ||
.card { | ||
width: 70px; | ||
height: 100px; | ||
font-size: 12px; | ||
} | ||
|
||
.divider { | ||
font-size: 10px; | ||
} | ||
.divider { | ||
font-size: 10px; | ||
} | ||
} |