-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (73 loc) · 1.17 KB
/
styles.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
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
html {
background-color: #7d5aa5;
}
@font-face {
font-family: "avenir";
src: url("Avenir.ttc") format("truetype");
}
@font-face {
font-family: "avenirH";
src: url("AEH.ttf") format("truetype");
}
canvas {
display: block;
margin: auto;
}
header {
display: block;
margin: auto;
align-content: center;
}
h1 {
font-family: avenirH;
text-align: center;
font-weight: normal;
font-size: 60px;
color: white;
letter-spacing: 10px;
margin: 2%;
}
h2 {
font-family: avenir;
text-align: center;
font-weight: normal;
font-size: 25px;
color: white;
padding-bottom: 2%;
}
nav {
padding-bottom: 3%;
}
ul {
margin: 0px;
list-style-type: none;
padding: 0px;
}
a {
color: white;
text-decoration: none;
cursor: pointer;
}
a:visited {
color: white;
}
.buttonFloatLeft {
float: left;
width: 50%;
}
.buttonLeft {
text-align: left;
font-family: avenir;
color: cadetBue;
padding-left: 20%;
}
.buttonFloatRight {
float: right;
width: 50%;
}
.buttonRight {
text-align: right;
font-family: avenir;
color: cadetblue;
padding-right: 20%;
}