forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
73 lines (61 loc) · 1023 Bytes
/
Copy pathApp.css
File metadata and controls
73 lines (61 loc) · 1023 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* utility styles */
.mt-0 {
margin-top: -50px;
}
.btn {
text-decoration: none;
display: inline-block;
padding: 8px 18px;
border-radius: 4px;
font-weight: 600;
line-height: 1;
transition: 0.2s all ease;
border: none;
cursor: pointer;
background: #02b3e4;
box-shadow: 8px 10px 20px 0 rgba(46, 61, 73, 0.15);
color: white;
text-shadow: 0 1px 3px #86888e;
}
.btn:hover {
box-shadow: 2px 4px 8px 0 rgba(46, 61, 73, 0.2);
background-color: #02b7e9;
}
.btn-home {
background-color: #607d8b;
}
.btn-home:hover {
background-color: #5e7986;
}
.btn-new {
background-color: #4caf50;
}
.btn-new:hover {
background-color: #4caf50;
}
.btn-bug {
background-color: #f44336;
}
.btn-bug:hover {
background-color: #f44336;
}
.print {
text-align: center;
}
/*
.btn-print {
background-color: #333;
} */
@media only screen and (max-width: 460px) {
.mt-0 {
margin-top: -25px;
}
}
@media print {
@page {
margin: 0.5cm;
}
.no-print {
display: none !important;
}
}