forked from healthIMIS/sormas-issuetracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
114 lines (97 loc) · 1.83 KB
/
style.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
body {
all: inherit;
font-family: "Roboto", "Ubuntu", sans-serif;
font-weight: 600;
font-size: 16px;
max-width: 60em;
display: block;
margin: 0 auto;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 5px;
margin-bottom: 2px;
}
#maincontents {
width: 98%;
border-right: 2px solid #D23264;
border-left: 2px solid #D23264;
border-bottom: 2px solid #D23264;
border-collapse: collapse;
}
#currentVersion {
width: 98%;
color: #D23264;
text-align: right;
font-size: 14px;
}
#loadingicon {
display: block; margin: 0 auto;
width: 50px;
height: 50px;
}
.feature{
width: 100%;
color: #005AA0;
}
.collapsiblebtn{
background-color: #FFF;
cursor: pointer;
padding-top: 1%;
padding-bottom: 1%;
width: 100%;
text-align: left;
box-shadow: none;
border-top: 2px solid #D23264;
border-collapse: collapse;
}
.plusminus-icon{
width:4%;
max-width:2em;
vertical-align: middle;
display: inline-block;
text-align: center;
}
.minus-icon::before {
content: "−";
}
.plus-icon::before {
content: "+";
}
.titlespan {
display: inline-block;
width: 78%;
vertical-align: middle;
}
.progresstext {
width: 16%;
vertical-align: middle;
color: #D23264;
margin-left: 1%;
margin-right: 1%;
display: inline-block;
}
.collapsiblecontent{
padding-right: 18px;
padding-left: 4%;
overflow: hidden;
background-color: #FFF;
color: #000000;
font-weight: 400;
max-height: 0; /* start collapsed */
transition: max-height 0.5s ease-out, border-width 0.5s ease;
border-color: #D23264;
}
.featurecontent{
padding-top: 10px;
}
.featurelinks{
padding-top: 5px;
padding-bottom: 10px;
}
.featureimage{
max-width: 100%;
max-height: 500px;
}
code {
background-color: #d3d3d3;
}