-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (51 loc) · 892 Bytes
/
styles.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
.scrolling-wrapper {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}
.scrolling-wrapper .card {
display: inline-block;
}
.scrolling-wrapper-flexbox {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
}
.scrolling-wrapper-flexbox .card {
flex: 0 0 auto;
margin-right: 3px;
}
.card {
width: 100px;
height: 100px;
margin: 20px;
position: relative;
overflow: hidden;
border-radius: 50%;
}
.card:hover {
box-shadow: 0px 0px 15px 0px rgba(00,00,00,0.77)
}
.stories-img {
width: 100%;
}
.scrolling-wrapper,
.scrolling-wrapper-flexbox {
height: 200px;
margin-bottom: 20px;
width: 100%;
-webkit-overflow-scrolling: touch;
}
.stories-title {
font-family: Space Grotesk;
text-align: center;
color: #126229;
font-size: 0.8em;
font-weight: 600;
}
img {
display: inline;
margin: 0 auto;
height: 100%;
width: auto;
}