-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsiemens-theme.css
More file actions
executable file
·110 lines (90 loc) · 1.82 KB
/
siemens-theme.css
File metadata and controls
executable file
·110 lines (90 loc) · 1.82 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
@charset "UTF-8";
/* Custom siemens theme*/
.siemens-bg-color {
background: #2B333D;
}
.siemens-bg-color a {
background: #2B333D;
}
.siemens-title {
position: relative;
padding-left: 10px;
top: 18px;
}
.siemens-bg-color-title {
background-color: #333C47;
}
/*** Table ***/
#comon_table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#common_table td, #common_table th {
border: 1px solid #ddd;
padding: 8px;
}
/* #common_table tr:nth-child(even){background-color: #f2f2f2;} */
/* #common_table tr:hover {background-color: #ddd;} */
#common_table th {
padding-top: 6px;
padding-bottom: 6px;
text-align: left;
background-color: #333C47;
color: white;
}
/* #common_table_level1 {
font-size: 14px;
font-weight: bold;
background-color: #7b9ec6;
} */
#common_table_level1 {
font-size: 14px;
background-color: #333C47;
color: white;
}
#common_table_level2 {
font-size: 12px;
font-weight: normal;
background-color: #a1bedf;
}
#common_table_level3 {
font-size: 12px;
font-weight: normal;
background-color: #f0f2f5;
}
/*** Side Navigation ***/
body {
font-family: "Lato", sans-serif;
}
.sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
/*top: 0;*/
left: 0;
background-color: #2B333D;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav-title {
padding: 6px 6px 6px 32px;
}
.sidenav a {
padding: 6px 6px 6px 32px;
text-decoration: none;
font-size: 16px;
color: #818181;
display: block;
}
.sidenav a:hover {
color: #f1f1f1;
}
.main {
margin-left: 200px; /* Same as the width of the sidenav */
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}