-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More consistent colors; lowered commit hex len to 7 chars; added favicon
- Loading branch information
Showing
12 changed files
with
76 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
table td { | ||
padding: 1px 10px 1px 10px; | ||
} | ||
|
||
:root { | ||
--bs-pink: #da1175; | ||
} | ||
|
||
.btn-pink { | ||
color: #fff; | ||
background-color: var(--bs-pink); | ||
border-color: var(--bs-pink); | ||
} | ||
|
||
.btn-pink:hover { | ||
color: #fff; | ||
background-color: #b80e63; | ||
border-color: #ad0d5d; | ||
} | ||
|
||
.btn-outline-pink { | ||
color: var(--bs-pink) !important; | ||
border-color: var(--bs-pink) !important; | ||
} | ||
|
||
.btn-outline-pink:hover { | ||
color: #fff !important; | ||
background-color: var(--bs-pink) !important; | ||
border-color: var(--bs-pink) !important; | ||
} | ||
|
||
.link-pink { | ||
color: var(--bs-pink) !important; | ||
} | ||
|
||
.link-pink:hover { | ||
color: #b80e63 !important; | ||
text-decoration: underline !important; | ||
} | ||
|
||
.text-pink { | ||
color: var(--bs-pink) !important; | ||
} | ||
|
||
.bg-pink { | ||
background-color: var(--bs-pink) !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,22 @@ | |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Astrid - {% block title %}{% endblock %}</title> | ||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<link rel="stylesheet" href="/static/style.css" type="text/css" /> | ||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-dark" style="background-color: #da1175;"> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-pink"> | ||
<div class="container"> | ||
<a class="navbar-brand fw-bold" href="/"> | ||
<img src="{{ url_for('static', filename='astrid_logo_white.svg') }}" alt="Astrid Logo" style="height: 2.5em"> | ||
</a> | ||
{% if user %} | ||
<div class="ms-auto"> | ||
<span class="text-white me-3"> | ||
User: {{user['name']}} | ||
User: <b>{{user['name']}}</b> | ||
</span> | ||
<a href="{{url_for('logout')}}" class="btn btn-outline-light btn-sm">Logout</a> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters