Skip to content

Commit

Permalink
Merge pull request #41 from meaningfy-ws/link-css-file
Browse files Browse the repository at this point in the history
linked css file
  • Loading branch information
costezki authored Oct 21, 2020
2 parents 9e8a1e6 + 4087ba6 commit 36193bf
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 31 deletions.
31 changes: 31 additions & 0 deletions rdf_differ/entrypoints/ui/static/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}

main {
flex: 1 0 auto;
}

.footer-container {
padding-bottom: 2em;
}

.form {
padding: 2em !important;
margin-bottom: 5em;
}

.btn {
text-transform: none;
}

.toast {
background-color: #ef9a9a;
color: black;
}

.table {
margin-bottom: 5em;
}
31 changes: 1 addition & 30 deletions rdf_differ/entrypoints/ui/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,7 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/style.css') }}">
<style>
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}

main {
flex: 1 0 auto;
}

.footer-container {
padding-bottom: 2em;
}

.form {
padding: 2em !important;
margin-bottom: 5em;
}

.btn {
text-transform: none;
}
.toast{
background-color: #ef9a9a;
color: black;
}
</style>

<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">
</head>
<body>
<header>
Expand Down

This file was deleted.

0 comments on commit 36193bf

Please sign in to comment.