-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
84 lines (72 loc) · 1.37 KB
/
stylesheet.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
#container{
margin: auto;
background: #5D9BAA;
width: 1200px;
height: auto;
}
h1{
padding: 0;
margin: 0;
}
#heading{
color: aliceblue;
font-size: 50px;
text-align: center;
text-decoration: underline;
font-family: "Germania One", cursive;
border-style: solid;
border-color: darkcyan;
border-width: 5px;
}
#links{
float: left;
width: 190px;
height: 700px;
border-style: solid;
border-color: darkcyan;
border-width: 5px;
}
#intro{
width: 990px;
height: 700px;
color: aliceblue;
font-size: 60px;
text-align: center;
font-family: "Germania One", cursive;
float: right;
border-style: solid;
border-color: darkcyan;
border-width: 5px;
}
#footer{
float: none;
text-align: right;
font-size: 30px;
}
p{
margin: 0px;
}
input{
width: 200px;
height: 40px;
}
#enterbutton{
text-align: center
}
ul{
color: aliceblue;
list-style-type: square;
font-family: "Germania One", cursive;
font-size: 40px;
float: left;
}
li.home:hover, li.about:hover, li.contact:hover{
color: black;
}
@keyframes example {
0% {background:#5D9BAA;}
25% {background:#294850;}
50% {background:black;}
75% {background:cyan;}
100% {background:darkcyan;}
}