blob: a2a4495fb692eb8fac194a64e8a22e910f508374 (
plain)
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
|
/* General */
body {
margin: 0;
}
/* Header */
.header__link {
display: block;
text-decoration: none;
background-color: #333333;
color: white;
padding: 10px;
margin-bottom: 20px;
font-size: 22px;
font-weight: bold;
}
/* Index */
.index__poses {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.index__poseLink {
color: #333366;
padding: 20px;
transition: transform 0.1s ease-in;
}
.index__poseLink:hover {
transform: scale(1.05);
}
.index__poseName {
text-align: center;
font-size: 20px;
margin: 10px 0;
}
.index__poseImageParent {
display: flex;
justify-content: center;
align-items: center;
width: 300px;
height: 300px;
}
.index__poseImage {
max-width: 90%;
max-height: 90%;
border-radius: 3px;
}
|