Skip to content
Snippets Groups Projects
Commit 45a52eb3 authored by Sven Kästle's avatar Sven Kästle
Browse files

feat: Add simple category annotation cards

parent f598d0c4
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,11 @@ ol { ...@@ -6,6 +6,11 @@ ol {
padding: 0px; padding: 0px;
margin: 0px; margin: 0px;
list-style-type: none; list-style-type: none;
height: 100%;
}
li {
height: calc((100% - 70px) / 8);
min-height: 40px;
} }
.content-mainpage { .content-mainpage {
display: flex; display: flex;
...@@ -17,9 +22,10 @@ ol { ...@@ -17,9 +22,10 @@ ol {
.rightcolumn { .rightcolumn {
float: right; float: right;
width: 25%; width: 25%;
height: 100%;
padding: 10px;
display: inline-block; display: inline-block;
overflow: scroll; overflow: scroll;
/* background-color: blue; */
} }
.leftcolumn { .leftcolumn {
padding: 10px; padding: 10px;
...@@ -29,7 +35,7 @@ ol { ...@@ -29,7 +35,7 @@ ol {
/* background-color: yellow; */ /* background-color: yellow; */
} }
.rightcontent { .rightcontent {
margin: 10px; height: 100%;
} }
.leftcontent { .leftcontent {
max-height: 100%; max-height: 100%;
...@@ -38,7 +44,7 @@ ol { ...@@ -38,7 +44,7 @@ ol {
/* background-color: white; */ /* background-color: white; */
} }
.spacing { .spacing {
height: 10px; margin-bottom: 10px;
/* background-color: orange; */ /* background-color: orange; */
} }
.container-fluid-content { .container-fluid-content {
...@@ -63,4 +69,31 @@ ol { ...@@ -63,4 +69,31 @@ ol {
overflow: scroll; overflow: scroll;
white-space: pre-line; white-space: pre-line;
} }
.category-card {
min-height: 30px;
height: 100%;
width: 100%;
border-radius: 5px;
font-weight: bold;
font-size: large;
overflow: hidden;
}
.category-card p {
position: relative;
float: left;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
}
.not-added{
border-style: dashed;
border-color: lightgray;
color: lightgray;
}
.added {
border-style: solid;
border-color: lightgreen;
color: lightgreen;
}
...@@ -49,6 +49,46 @@ ...@@ -49,6 +49,46 @@
<div class="rightcolumn"> <div class="rightcolumn">
<div class="rightcontent"> <div class="rightcontent">
<ol id="annotations"> <ol id="annotations">
<li class="spacing">
<div id="titel" class="category-card not-added">
<p>Titel</p>
</div>
</li>
<li class="spacing">
<div id="recherche" class="category-card not-added">
<p>Recherche</p>
</div>
</li>
<li class="spacing">
<div id="literaturverzeichnis" class="category-card not-added">
<p>Literaturverzeichnis</p>
</div>
</li>
<li class="spacing">
<div id="forschungsfrage" class="category-card not-added">
<p>Forschungsfrage</p>
</div>
</li>
<li class="spacing">
<div id="untersuchungskonzept" class="category-card not-added">
<p>Untersuchungskonzept</p>
</div>
</li>
<li class="spacing">
<div id="methodik" class="category-card not-added">
<p>Methodik</p>
</div>
</li>
<li class="spacing">
<div id="durchfuehrung" class="category-card not-added">
<p>Durchführung</p>
</div>
</li>
<li>
<div id="auswertung" class="category-card not-added">
<p>Auswertung</p>
</div>
</li>
</ol> </ol>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment