|
@@ -1,15 +1,27 @@
|
1
|
1
|
body {
|
2
|
2
|
padding:0px;
|
3
|
3
|
margin:0px;
|
|
4
|
+ font-family:'Open Sans';
|
|
5
|
+ background: #fffdc6;
|
|
6
|
+}
|
|
7
|
+
|
|
8
|
+a, a:visited {
|
|
9
|
+ color: white;
|
|
10
|
+ text-decoration: none;
|
|
11
|
+}
|
|
12
|
+
|
|
13
|
+a:hover {
|
|
14
|
+ text-decoration: underline;
|
4
|
15
|
}
|
5
|
16
|
|
6
|
17
|
header {
|
7
|
18
|
height: 100px;
|
|
19
|
+ background-color: white;
|
8
|
20
|
background-image: url("../assets/burgerquizz.png");
|
9
|
21
|
background-size: 400px;
|
10
|
22
|
background-repeat: no-repeat;
|
11
|
23
|
background-position: center;
|
12
|
|
- margin-bottom: 10px;
|
|
24
|
+ padding-bottom: 10px;
|
13
|
25
|
}
|
14
|
26
|
|
15
|
27
|
section#navbar {
|
|
@@ -25,15 +37,25 @@ section#navbar ul {
|
25
|
37
|
vertical-align: middle;
|
26
|
38
|
}
|
27
|
39
|
|
|
40
|
+section#navbar li:first-child {
|
|
41
|
+ margin-left:20px;
|
|
42
|
+}
|
|
43
|
+
|
28
|
44
|
section#navbar li {
|
29
|
45
|
display: block;
|
30
|
46
|
float:left;
|
31
|
|
- margin-left:50px;
|
32
|
|
- margin-right:50px;
|
33
|
|
- height: 100%;
|
|
47
|
+ padding-top:17px;
|
|
48
|
+ padding-left:50px;
|
|
49
|
+ padding-right:50px;
|
|
50
|
+ padding-bottom: ;
|
|
51
|
+ height: 53px;
|
34
|
52
|
vertical-align:middle;
|
35
|
53
|
}
|
36
|
54
|
|
|
55
|
+section#navbar li:hover, section#navbar li.current {
|
|
56
|
+ background: #9556f9;
|
|
57
|
+}
|
|
58
|
+
|
37
|
59
|
section#navbar li:last-child {
|
38
|
60
|
display: block;
|
39
|
61
|
float: right;
|
|
@@ -41,5 +63,48 @@ section#navbar li:last-child {
|
41
|
63
|
margin-right:0px;
|
42
|
64
|
padding-right:70px;
|
43
|
65
|
padding-left:70px;
|
|
66
|
+ background: #ff9619;
|
|
67
|
+}
|
|
68
|
+
|
|
69
|
+section#navbar li:last-child:hover {
|
44
|
70
|
background: #ffab19;
|
45
|
71
|
}
|
|
72
|
+
|
|
73
|
+section#page {
|
|
74
|
+ width: 60%;
|
|
75
|
+ margin: auto;
|
|
76
|
+}
|
|
77
|
+
|
|
78
|
+section#page h2 {
|
|
79
|
+ text-align: center;
|
|
80
|
+ font-size: 200%;
|
|
81
|
+}
|
|
82
|
+
|
|
83
|
+section#page p {
|
|
84
|
+ text-indent: 30px;
|
|
85
|
+}
|
|
86
|
+
|
|
87
|
+.button {
|
|
88
|
+ display:inline-block;
|
|
89
|
+ background: #09b22b;
|
|
90
|
+ color: white;
|
|
91
|
+ border: none;
|
|
92
|
+ height: 70px;
|
|
93
|
+ width: 200px;
|
|
94
|
+ margin:auto;
|
|
95
|
+ margin-right:15px;
|
|
96
|
+ margin-left:15px;
|
|
97
|
+ text-align:center;
|
|
98
|
+}
|
|
99
|
+
|
|
100
|
+.firstword {
|
|
101
|
+ font-size:200%;
|
|
102
|
+}
|
|
103
|
+
|
|
104
|
+input[type="submit"]:hover {
|
|
105
|
+ cursor: pointer;
|
|
106
|
+}
|
|
107
|
+
|
|
108
|
+div#buttons {
|
|
109
|
+ margin:auto;
|
|
110
|
+}
|