-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcss.html
92 lines (85 loc) · 1.71 KB
/
css.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!Doctype html>
<html>
<head>
<link href="style.css" rel="stylesheet">
<link href="prism.css" rel="stylesheet">
<script src="prism.js" type="text/javascript"></script>
<title>The Runner</title>
</head>
<body>
<header>
<h1>CSS Rules for The Runner</h1>
<h4 class="author">by David Samuels.</h4>
</header>
<section>
<pre class="language-css line-numbers line-highlights"> <code>/*CSS Styles Applied To This Page*/
body {
background-color: #ccc;
margin: 0;
font-size: 20px;
}
header{
background-color: rgb(6,147,96);
margin: 0;
padding: 20px;
}
section{
background-color: #fff;
padding: 30px;
}
h1{
font-family: monospace, sans-serif,cursive;
text-decoration: underline;
}
h4{
font-family: sans-serif, monospace;
font-size: .9em;
}
.author{
text-indent: 10px;
}
p{
font-family: times,monospace;
}
aside{
padding: 10px;
border: 1px solid cornflowerblue;
border-radius: 10px;
background-color: rgb(234,255,105);
font-style: italic;
font-size: .6em;
}
aside:hover{
background-color: black;
color: white;
}
b{font-style: normal;}
strong{font-style: normal;}
footer{
padding: 5px 30px;
border-top: 2px solid black;
letter-spacing: 2px;
}
footer small{
float: right;
font-size: .6em;
word-spacing: 4px;
}
::selection{
background-color: rgb(89,201,208);
color: white;
}
/*Thanks For Your Patience*/ </code></pre>
<small>
<a href="index.html">Back to Preview</a>
</small>
</section>
<footer>
<p>
This example is for demonstration and academic purposes. The developer wishes in no way to infringe on the copyright or intellectual
rights of the author.
</p>
<small>Developed by Barnabas Nomo</small>
</footer>
</body>
</html>