-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcommon.min.css
74 lines (60 loc) · 1 KB
/
common.min.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* Copyright 2016 Google Inc. All Rights Reserved. */
* {
box-sizing: border-box
}
body {
color: #222;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px
}
a {
color: #11c;
text-decoration: none
}
a:hover {
text-decoration: underline
}
.btn {
border: 1px solid transparent;
border-radius: 3px;
cursor: pointer;
display: inline-block;
font-size: 13px;
height: 24px;
padding: 1px 7px;
-webkit-user-select: none
}
.btn:hover {
background-color: #bbb
}
.btn:focus {
outline: 0
}
.btn:active {
outline: 0;
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15)
}
.btn[disabled] {
pointer-events: none;
cursor: not-allowed;
box-shadow: none;
opacity: 0.6
}
.btn-default {
background-color: #eee;
border-color: #ccc;
color: #222
}
.btn-default:hover {
background-color: #ddd;
border-color: #bbb
}
.btn-primary {
background-color: #48e;
border-color: #37d;
color: #fff
}
.btn-primary:hover {
background-color: #37d;
border-color: #26c
}