-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_index.scss
47 lines (40 loc) · 938 Bytes
/
_index.scss
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
.index {
max-width: 900px;
margin: auto;
padding: 20px 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
&__col {
white-space: nowrap;
padding: 15px 25px;
margin: 15px;
background: #fefefe;
box-shadow: 0 1px 4px rgba(0, 0, 100, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
&:hover {
box-shadow: 0 8px 40px rgba(0, 0, 100, 0.15), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
}
a {
line-height: 1.5;
color: #888;
font-size: 24px;
}
a[href^="#"] {
color: #BBBBBB;
}
a:hover {
color: #3A98C8;
}
a[href^="#"]:hover {
color: #BBBBBB;
}
h2 {
font-size: 24px;
text-align: left;
color: #707070;
margin: 0 0 10px;
text-transform: uppercase;
}
}