-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_style.css
More file actions
58 lines (48 loc) · 777 Bytes
/
Copy pathindex_style.css
File metadata and controls
58 lines (48 loc) · 777 Bytes
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
body {
background-color: #f7f7f7;
}
#poster {
display: block;
margin: 50px auto 0;
width: 250px;
height: 250px;
}
#title {
margin: 0 auto;
text-align: center;
font-size: 54px;
font-family: "Roboto";
}
#subtitle {
margin: 0 auto 30px;
text-align: center;
font-size: 25px;
font-family: "Roboto";
}
#products {
margin: 0 auto;
}
#social {
margin: 15px auto;
}
a {
margin-left: 8px;
margin-right: 8px;
text-decoration: none;
}
img.bigger {
width: 75px;
height: 75px;
}
img.smaller {
width: 45px;
height: 45px;
}
img.desaturate:not(:hover) {
filter: grayscale(100%);
transition: all .5s ease-out;
}
img.desaturate:hover {
filter: none;
transition: all .5s ease-out;
}