aboutsummaryrefslogtreecommitdiffstats
path: root/src/static/css/base.css
diff options
context:
space:
mode:
authorGergely Csatari <gergely.csatari@nokia.com>2023-10-26 10:33:28 +0300
committerGergely Csatari <gergely.csatari@nokia.com>2023-10-26 10:34:28 +0300
commit2ec0d7b9f5c1354977b821c6b06c24a3ffa13142 (patch)
tree6e449d92ddfc880ed007e9d8a8f25bda8fc7cb0f /src/static/css/base.css
parent0d3dd290aa6e7f39e7b0b3cbe448b6622f924240 (diff)
Removing project content and adding a noteHEADmaster
that the development continues in GitHub Change-Id: I25c58a679dbf92b2367d826429b7cda936bf9f0e Signed-off-by: Gergely Csatari <gergely.csatari@nokia.com>
Diffstat (limited to 'src/static/css/base.css')
-rw-r--r--src/static/css/base.css93
1 files changed, 0 insertions, 93 deletions
diff --git a/src/static/css/base.css b/src/static/css/base.css
deleted file mode 100644
index 12364bd..0000000
--- a/src/static/css/base.css
+++ /dev/null
@@ -1,93 +0,0 @@
-/* Sizing */
-#wrapper {
- height: 100vh;
-}
-
-/* Used for turning divs into square */
-.square-20 {
- height: 20px;
- width: 20px;
-}
-
-/* Make links stay the same color with no underline */
-.discrete-a {
- text-decoration: none;
- color: inherit;
-}
-
-.discrete-a:hover {
- text-decoration: none;
- color: inherit;
-}
-
-/* Make sure pre elements wrap to not break box sizing */
-/* Note: the pre element or parent may need to use the text-break class as well */
-.pre-wrap {
- white-space: pre-wrap;
-}
-
-/* Allow for sidebar to be small, but also resize on small screens */
-.sidebar {
- min-width: 200px;
-}
-
-/* Rotating arrows when dropdown happens */
-i.fas.rotate {
- transition: transform 0.3s ease-in-out;
-}
-
-a[aria-expanded="true"] > i.rotate {
- transform: rotate(180deg);
-}
-/* End rotating arrows */
-
-/* Start breadcrumbs for workflow */
-#topPagination .topcrumb {
- flex: 1 1 0;
- display: flex;
- align-content: center;
- justify-content: center;
- border: 1px solid #dee2e6;
- border-left: none;
-}
-
-.topcrumb > span {
- color: #343a40;
- cursor: default;
-}
-
-.topcrumb.active > span {
- background: #007bff;
- color: white;
-}
-
-.topcrumb.disabled > span {
- color: #6c757d;
- background: #f8f9fa;
-}
-
-/* Booking Node Styles */
-.selected_node {
- border-color: #40c640;
- box-shadow: 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(109, 243, 76, 0.6);
- transition: border-color ease-in-out .1s,box-shadow ease-in-out .1s;
-}
-
-/* Cursor effects */
-.not-allowed {
- cursor: not-allowed;
-}
-
-.z-2 {
- z-index: 2;
-}
-
-.mh-30vh {
- max-height: 30vh;
-}
-
-.overflow-ellipsis {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
-}