Skip to content

Commit 2df5345

Browse files
committed
Add heading color
1 parent fc7a349 commit 2df5345

4 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
app.py
5353
requirements.txt
5454
templates/
55+
static/
5556
5657
deploy:
5758
runs-on: ubuntu-latest

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
!*.txt
99
!*.yml
1010
!*.html
11+
!*.css

static/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
h1 {
2+
color: #cc7a87; /* 0a271319-b06c-4e46-b24c-0fde677cf461 */
3+
}

templates/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Counter</title>
7+
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
78
</head>
89
<body>
910
<h1>Hello world</h1>

0 commit comments

Comments
 (0)