-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (71 loc) · 1.19 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.display-block {
display: block;
}
.font-size-1rem {
font-size: 1rem;
}
.margin-bottom-8px {
margin-bottom: 8px;
}
.margin-top-12px {
margin-top: 12px;
}
.width-small {
width: 126px;
}
.height-small {
height: 21px;
}
.width-medium {
width: 160px;
}
.float-right{
float: right;
}
.border-red {
border: 1px solid red;
}
.border {
border: 1px solid rgb(182, 180, 180);
}
.border-radius {
border-radius: 3px;
}
input {
border: none;
}
input:focus,
select:focus,
textarea:focus
{
outline: none;
}
button {
display: inline-block;
vertical-align: middle;
border: none;
border-radius: 4px;
height: 21px;
color: #fff;
background-color: #004ea1;
border-color: #0062cc;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
overflow: hidden;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: color, background-color;
transition-property: color, background-color;
}
button:hover {
color: #fff;
background-color: #007bff;
border-color: #007bff;
}