-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (96 loc) · 1.8 KB
/
Copy pathstyles.css
File metadata and controls
118 lines (96 loc) · 1.8 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
.books-crud {
max-width: 500px;
margin: 5px;
}
.crud-list-selected {
background-color: #93ffff !important;
}
button {
background-color: #0083fd;
color: white;
border-color: #005bb1;
border-radius: 5px;
font-weight: bold;
height: 25px;
cursor: pointer;
margin-left: 2px;
margin-right: 2px;
}
.crud-control {
width: 100%;
direction: rtl;
margin-bottom: 10px;
}
.crud-control > div {
direction: ltr;
width: calc(84px * 3);
}
.crud-control button {
width: 80px;
}
.crud-form-prop {
width: 100%;
display: flex;
margin-bottom: 5px;
}
.crud-form-prop label {
display: block;
width: 80px;
}
.crud-form-prop input, select {
width: calc(100% - 80px);
}
.crud-form-group-author-category {
display: flex;
}
.crud-form-author {width: 60%}
.crud-form-category {
width: 40%;
padding-left: 10px;
}
table {
width: 100%;
border: 1px solid #989898;
border-collapse: collapse;
margin-bottom: 10px;
}
th {
background-color: #0084ff;
color: white;
}
th, td {
border: 1px solid #989898;
border-collapse: collapse;
padding: 3px;
}
.crud-th-title {width: 40%}
.crud-th-author {width: 30%}
.crud-th-category {width: 30%}
tbody > :nth-child(odd) {
background-color: #d0d0d0;
}
.crud-nav {
width: 100%;
display: flex;
}
.crud-nav > div {
display: flex;
margin: auto;
align-items: center;
text-align: center;
}
.crud-nav > div * {
display: block;
margin-left: 2px;
margin-right: 2px;
}
.crud-nav > div > button {
width: 40px;
height: 25px;
}
.crud-nav > div > input {
width: 32px;
height: 19px;
}
.w40 {width: 40%;}
.w60 {width: 60%;}