-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (107 loc) · 2.39 KB
/
style.css
File metadata and controls
109 lines (107 loc) · 2.39 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
html,
body {
height: 900px;
width: 1200px;
box-sizing: border-box;
}
canvas {
display: block;
padding:10px;
}
.form-Container{
padding:10px;
display: block;
align-items: center;
}
.btn-send{
background-color: green;
color: white;
margin-top: 20px;
}
.tables-container {
padding: 10px;
position: absolute;
display: inline;
}
.processes-table{
border:#12A413 2px solid;
padding: 5px;
display:inline-block;
width: 75%;
height: 100%;
}
.quewe-table{
border:#12A413 2px solid;
padding: 5px;
display:inline-block;
width: 20%;
height: 100%;
}
.processT {
border: 1px solid #12A413;
background-color: #EEEEEE;
width: 100%;
text-align: left;
border-collapse: collapse;
}
.processT td, .processT th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
.processT tbody td {
font-size: 15px;
}
.processT tr:nth-child(even) {
background: #D0E4F5;
}
.processT thead {
background: #1DA42C;
background: -moz-linear-gradient(top, #55bb61 0%, #33ad41 66%, #1DA42C 100%);
background: -webkit-linear-gradient(top, #55bb61 0%, #33ad41 66%, #1DA42C 100%);
background: linear-gradient(to bottom, #55bb61 0%, #33ad41 66%, #1DA42C 100%);
border-bottom: 1px solid #444444;
}
.processT thead th {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
text-align: center;
border-left: 2px solid #D0E4F5;
}
.processT thead th:first-child {
border-left: none;
}
.processT tfoot {
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
background: #D0E4F5;
background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
border-top: 2px solid #444444;
}
.processT tfoot td {
font-size: 14px;
}
.processT tfoot .links {
text-align: right;
}
.processT tfoot .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 100%; /* Full-width */
height: 25px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}