-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 676 Bytes
/
style.css
File metadata and controls
43 lines (37 loc) · 676 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
body{margin:0;padding:0;}
/*HEADER*/
div.header {position:relative;}
div.header div{
float:left;
padding:25px;
}
div.header div.selected {
background:#CCC;
font-weight:bold;
}
div.header div.selected a{
color:#c23;
}
/*Wrapper form and table*/
form {margin-top :25px;}
div.formInputWrapper{
padding:15px;
}
div.formInputWrapper span.selected {
border:solid 2px;
border-radius:10px;
padding:15px;
}
/*TABLE*/
tr:nth-child(odd) {display: table-row;background: #FFF}
tr:nth-child(even) {display: table-row;background: #CCC}
thead td{
background: #CCC;
color:blue;
padding:10px;
}
td.deleteTrigger{
background: #CCC;
cursor:pointer;
}
td.deleteTrigger:hover{color:red;}