-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDogs.module.css
More file actions
96 lines (85 loc) · 1.63 KB
/
Dogs.module.css
File metadata and controls
96 lines (85 loc) · 1.63 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
.page {
min-height: 100vh; /* на всю высоту экрана */
display: flex;
justify-content: center;
align-items: center;
background: #eef2f7;
}
.container {
width: 100%;
max-width: 1000px;
display: flex;
gap: 32px;
background: #ffffff;
border-radius: 12px;
padding: 32px;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.sidebar {
flex: 0 0 220px;
display: flex;
flex-direction: column;
align-items: center;
}
.select {
width: 100%;
padding: 10px 16px;
font-size: 16px;
border-radius: 6px;
border: 1px solid #bbb;
outline: none;
transition: 0.2s;
font-family: sans-serif;
}
.select:hover {
border-color: #666;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
}
.imageWrapper {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 450px;
margin-bottom: 20px;
overflow: hidden;
border-radius: 8px;
background: #fafafa;
border: 1px solid #ddd;
}
.image {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.button {
padding: 12px 24px;
font-size: 16px;
background: #16a34a;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.2s, transform 0.1s;
font-family: sans-serif;
margin: 6px;
}
.button:hover {
background: #15803d;
transform: translateY(-2px);
}
.button:active {
transform: translateY(0);
background: #14532d;
}
.buttonsGroup {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 16px;
}