Skip to content

Commit eda9c51

Browse files
committed
adding changes to git
1 parent 51d23a4 commit eda9c51

File tree

2 files changed

+34
-3
lines changed

2 files changed

+34
-3
lines changed

views/cms/editor-post.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<steve> return steve.include('head.html', { title: 'Editor' }); </steve>
6+
7+
<!-- page's styling and scripting -->
8+
<style>
9+
.error {
10+
margin-top: auto;
11+
text-align: center;
12+
}
13+
</style>
14+
</head>
15+
16+
<body>
17+
<div class="container">
18+
<div id="circle-container"></div>
19+
</div>
20+
</body>
21+
22+
</html>

views/cms/login.html

+12-3
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,22 @@
2727
font-size: 14pt;
2828
}
2929

30-
#submit {
30+
button {
3131
font-family: cascadia;
3232
font-size: 14pt;
3333
border: 3px solid #22272c;
3434
border-radius: 25px;
35-
padding-left: 10px;
36-
padding-right: 10px;
35+
text-decoration: none;
36+
color: #597387;
37+
text-shadow: 0 0 5px #597387;
38+
background: transparent;
39+
padding: 5px 15px;
40+
41+
transition: all 0.3s ease;
42+
}
43+
44+
button:hover {
45+
background: rgba(0, 0, 0, 0.5);
3746
}
3847
</style>
3948

0 commit comments

Comments
 (0)