forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.css
More file actions
74 lines (70 loc) · 1.01 KB
/
general.css
File metadata and controls
74 lines (70 loc) · 1.01 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
65
66
67
68
69
70
71
72
73
74
.float-right {
float: right;
}
.d-inline-block {
display: inline-block;
}
.mt-0{
margin-top: 0;
}
.mt-20{
margin-top: 20px;
}
.ml-10 {
margin-left: 10px;
}
.mr-10 {
margin-right: 10px;
}
.mr-5 {
margin-right: 5px;
}
.pr-5{
padding-right: 5px;
}
.p-5{
padding: 5px;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.mt-15{
margin-top: 15px;
}
select{
border-color: #ccc;
border-radius: 5px;
}
.w-100{
width: 100%;
}
.w-80{
width: 80%;
}
input[type="button"]{
background: #428bff;
color: #fff;
border-radius: 3px;
height: 36px;
line-height: 35px;
padding: 0 20px;
border: 0;
font-size: 14px;
font-weight: 500;
cursor: pointer;
min-width: 80px;
text-align: center;
width: 200px;
}
input[type="button"]:hover {
background: #5c9dfe;
text-decoration: none;
}
input[type="button"][disabled]{
border: 1px solid #999999;
background-color: #cccccc;
color: #666666;
}