heisbuba commited on
Commit
5311d88
·
verified ·
1 Parent(s): 7c0cf96

Update src/templates/base.html

Browse files
Files changed (1) hide show
  1. src/templates/base.html +19 -9
src/templates/base.html CHANGED
@@ -92,17 +92,27 @@ a { text-decoration: none; transition: 0.2s; }
92
 
93
  .header h1 {
94
  margin: 0;
95
- font-size: 1.4rem;
96
- font-weight: 800;
97
- letter-spacing: -0.5px;
 
 
 
98
  }
99
 
100
  .header h1 > a {
101
  color: #fff;
 
 
102
  }
103
- .header h1 > a span { color: var(--accent-green); }
104
 
105
- .header h1 > a:hover { opacity: 0.9; }
 
 
 
 
 
 
106
 
107
  /* Icons */
108
  .icon-btn {
@@ -372,10 +382,10 @@ input:focus { outline: none; border-color: var(--accent-green); }
372
 
373
  <div class="header">
374
  <h1>
375
- <a href="{{ url_for('main.home') if session.get('user_id') else url_for('main.index') }}" style="display: flex; align-items: center; gap: 10px;">
376
- <span>Crypto<span style="color:var(--accent-green)">VAT</span></span>
377
- </a>
378
- </h1>
379
  <div style="display: flex; align-items: center; gap: 5px;">
380
 
381
  <a href="{{ url_for('main.help_page') }}" class="icon-btn" title="Help">
 
92
 
93
  .header h1 {
94
  margin: 0;
95
+ font-size: 1.5rem;
96
+ font-weight: 900;
97
+ letter-spacing: -0.8px;
98
+ line-height: 1;
99
+ display: flex;
100
+ align-items: center;
101
  }
102
 
103
  .header h1 > a {
104
  color: #fff;
105
+ text-decoration: none;
106
+ transition: opacity 0.2s ease;
107
  }
 
108
 
109
+ .header h1 > a span {
110
+ color: var(--accent-green, #10b981);
111
+ }
112
+
113
+ .header h1 > a:hover {
114
+ opacity: 0.8;
115
+ }
116
 
117
  /* Icons */
118
  .icon-btn {
 
382
 
383
  <div class="header">
384
  <h1>
385
+ <a href="{{ url_for('main.home') if session.get('user_id') else url_for('main.index') }}" style="display: flex; align-items: center; gap: 0;">
386
+ Crypto<span>VAT</span>
387
+ </a>
388
+ </h1>
389
  <div style="display: flex; align-items: center; gap: 5px;">
390
 
391
  <a href="{{ url_for('main.help_page') }}" class="icon-btn" title="Help">