-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
executable file
·60 lines (56 loc) · 912 Bytes
/
style.css
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
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;
}