-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (73 loc) · 1.77 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* Общие стили для всего приложения */
body {
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; /* Высота экрана 100% от доступной высоты окна */
overflow: hidden; /* Убираем прокрутку */
}
/* Стили для руки */
.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;
}
.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;
}
/* Стили для рядов */
.row {
display: flex;
justify-content: center;
margin-bottom: 10px;
}
/* Стили для полоски между картами оппонента и игрока */
.divider {
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;
}
.divider {
font-size: 10px;
}
}