-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnonPrintStyle.css
50 lines (45 loc) · 998 Bytes
/
nonPrintStyle.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
@keyframes bake-pie {
from {
transform: rotate(0deg) translate3d(0, 0, 0); }
}
#wrapper {
margin-left: auto;
margin-right: auto;
width: 1200px;
}
#ribbon {
margin-top: 50px;
top: 0px;
}
.load_button {
background-color: #B5120F;
border: 1px solid #B5120F;
margin-left: 10px;
margin-top: 5px;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: bold;
outline: none;
outline: 0;
padding: 10px 25px;
text-align: center;
transform: translateY(0);
transition: transform 150ms, box-shadow 150ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.load_button:hover {
box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
transform: translateY(-2px);
}
@media (min-width: 768px) {
.load_button {
padding: 10px 30px;
}
}