-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (57 loc) · 1.36 KB
/
Copy pathstyles.css
File metadata and controls
64 lines (57 loc) · 1.36 KB
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
59
60
61
62
63
64
.card {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.products .row {
margin-right: -15px;
margin-left: -15px;
}
.card.col-md-3 {
padding-right: 15px;
padding-left: 15px;
}
@media (min-width: 768px) {
.card.col-md-3 {
flex: 0 0 25%;
max-width: 25%;
}
}
button {
appearance: none;
background-color: transparent;
border: 0.125em solid #1A1A1A;
border-radius: 30em;
box-sizing: border-box;
color: #3B3B3B;
cursor: pointer;
display: inline-block;
font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: 16px;
font-weight: 600;
line-height: normal;
margin: 0;
outline: none;
padding-bottom: 25px;
text-align: center;
text-decoration: none;
transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
will-change: transform;
height: 10px
}
button:disabled {
pointer-events: none;
}
button:hover {
color: #fff;
background-color: #1A1A1A;
box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
transform: translateY(-2px);
}
button:active {
box-shadow: none;
transform: translateY(0);
}