Add prototype

This commit is contained in:
Patrick Jentsch
2019-06-03 14:57:09 +02:00
parent b8fa8f47ab
commit 86557443a2
43 changed files with 24638 additions and 53 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
+43
View File
@@ -0,0 +1,43 @@
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
.tabs .tab {
cursor: pointer;
}
.tabs .tab a {
color: rgba(0,0,0,0.87);
}
.tabs .tab a:hover {
background-color: #eceff1;
color: rgba(0,0,0,0.87);
}
.tabs .tab a.active, .tabs .tab a:focus.active {
background-color: #fff;
color: rgba(0,0,0,0.87);
}
.tabs .indicator {
background-color: #455a64;
}
.no-padding {
padding: 0;
}
.overflow-hidden {
overflow: hidden;
}
.overflow-visible {
overflow: visible;
}