-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
115 lines (96 loc) · 1.72 KB
/
app.css
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
body {
font-family: Arial, Helvetica, sans-serif;
margin: auto;
font-size: calc(1.3rem + 1.1vw);
}
.header {
background-color: #c4c4c4;
padding: 1.5rem;
margin: auto;
color: white;
position: fixed;
top: 0;
width: 100%;
}
h1,h5{
margin-block-start: 0px;
margin-block-end: 0px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: calc(0.1rem + 2vw);
width: 1%;
}
tr{
border-bottom: 2px solid #eaeaea;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
.small {
width: 12%;
}
.medium {
width: 18%;
}
.large{
width: 60%;
}
.doku{
position: fixed;
top: 10px;
right: 1%;
}
.icon{
width:40px;
}
#dataTodisplay{
padding: 25px;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.param-error {
top: 20px;
position: absolute;
margin: 10px;
padding: 10px;
z-index: 1000;
color: white;
background: #ef4b4be8;
border-radius: 10px;
}
footer {
position: fixed;
bottom: 0px;
background: #0000004f;
padding: 5px;
right: 0;
color: white;
margin: auto;
font-size: large;
}
/* width */
::-webkit-scrollbar {
width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #959595;
border-radius: 10px;
}
@media screen and (max-width: 850px) {
body {
font-size: calc(0.8rem + 1.55vw);
}
}