Skip to content

Commit

Permalink
new ep
Browse files Browse the repository at this point in the history
  • Loading branch information
realtux committed Aug 9, 2020
1 parent 455068a commit d788169
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 0 deletions.
8 changes: 8 additions & 0 deletions 113/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"dependencies": {
"live-server": "^1.2.1"
},
"scripts": {
"start": "live-server --mount=/:./src"
}
}
16 changes: 16 additions & 0 deletions 113/properties.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
background
border
color
cursor
display
float
font-size
font-style
font-weight
height width
top right bottom left
margin
padding
position
text-align
text-decoration
Binary file added 113/src/chase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions 113/src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<link href="/main.css" rel="stylesheet" />
</head>
<body class="dark">
<div class="wrapper">
<h2 class="title">Chase Page</h2>

<p class="description">
This page is all about Chase.
</p>
</div>

<img src="chase.png" class="chase" />
</body>
</html>
35 changes: 35 additions & 0 deletions 113/src/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.dark {
background: #222;
color: #fff;
}

.title {
color: #c1ffad;
margin-bottom: 5px;
margin-top: 0;
text-align: left;
}

.description {
font-style: italic;
text-decoration: underline;
font-weight: bold;
margin-top: 5px;
margin-bottom: 0;
}

.wrapper {
display: inline-block;
background: #21371a;
border-left: #fff 1px solid;
padding: 20px;
margin: 20px;
}

.chase {
width: 70px;
height: 70px;
position: fixed;
top: 0;
right: 0;
}

0 comments on commit d788169

Please sign in to comment.