-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (48 loc) · 865 Bytes
/
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
body {
background: #eee;
color: #666;
font-family: "Roboto", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
font-weight: 300;
margin: 30px;
}
a {
text-decoration: none;
color: #FF0080;
}
.container {
max-width: 1024px;
margin: auto;
}
.row {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
img {
width: 100px;
height: 100px;
object-fit: cover;
}
h4 {
color: #777;
font-weight: 200;
font-size: 12px;
text-align: center;
}
.imgwrap {
background-color: #fff;
padding: 10px;
margin: 10px;
border-radius: 3px;
position: relative;
box-shadow: 1px 2px 4px rgba(0, 0, 0, .2);
transform: scale(1.0);
transition: transform 0.3s;
}
.imgwrap:hover {
transform: scale(1.1);
transition: transform 0.3s;
}