-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
95 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
body { | ||
font-family: 'Arial', Vedrana, sans-serif; | ||
background-color: #000000; | ||
color: #ffffff; | ||
margin: 20px 20px 20px 0px; | ||
} | ||
|
||
h1 { | ||
font-size: 42px; | ||
text-align: center; | ||
padding: 15px; | ||
} | ||
|
||
h2 { | ||
font-size: 30px; | ||
color: #0D0D0D; | ||
} | ||
|
||
p { | ||
font-size: 24px; | ||
padding: 10px 10px 10px 0; | ||
} | ||
|
||
img { | ||
width: 250px; | ||
display: block; | ||
margin: 0 auto; | ||
border: 10px dashed #ffffff; | ||
} | ||
|
||
div { | ||
min-height: 125px; | ||
padding: 20px; | ||
border: 3px solid #ffffff; | ||
} | ||
|
||
.introduction { | ||
border-radius: 15px; | ||
margin-top: 15px; | ||
line-height: 2; | ||
} | ||
|
||
.red { | ||
background-color: #ff0000; | ||
text-align: right; | ||
margin-left: 50px; | ||
border-bottom: 2px solid #ffffff; | ||
border-left: 5px solid #ffffff; | ||
} | ||
|
||
.blue { | ||
background-color: #0000ff; | ||
text-align: left; | ||
margin-right: 50px; | ||
border-right: 5px solid #ffffff; | ||
border-top: 2px solid #ffffff; | ||
color: #c4c4c4; | ||
} | ||
|
||
.yellow { | ||
background-color: #ffff00; | ||
text-align: right; | ||
margin-left: 50px; | ||
border-bottom: 2px solid #ffffff; | ||
border-left: 5px solid #ffffff; | ||
} | ||
|
||
.yellow p { | ||
color: #707070; | ||
} | ||
|
||
.green { | ||
background-color: #00EB00; | ||
text-align: left; | ||
margin-right: 50px; | ||
border-right: 5px solid #ffffff; | ||
border-top: 2px solid #ffffff; | ||
} | ||
|
||
footer { | ||
background: linear-gradient(90deg, #000000 0%, #0000ff 25%, #0066ff 70%, #000000 100%); | ||
border: 5px solid #ffffff; | ||
} | ||
|
||
footer p { | ||
font-size: 20px; | ||
text-align: right; | ||
padding: 14px 0 15px 15px; | ||
color: #ffffff; | ||
} |
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