-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenuCSS.css
More file actions
executable file
·130 lines (121 loc) · 3.7 KB
/
menuCSS.css
File metadata and controls
executable file
·130 lines (121 loc) · 3.7 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@font-face {
font-family: 'KaushanScriptRegular';
src: url('../fonts/kaushanscript/kaushanscript-regular-webfont.eot');
src: url('../fonts/kaushanscript/kaushanscript-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/kaushanscript/kaushanscript-regular-webfont.woff2') format('woff2'),
url('../fonts/kaushanscript/kaushanscript-regular-webfont.woff') format('woff'),
url('../fonts/kaushanscript/kaushanscript-regular-webfont.ttf') format('truetype'),
url('../fonts/kaushanscript/kaushanscript-regular-webfont.svg#kaushan_scriptregular') format('svg');
font-weight: normal;
font-style: normal;}
@font-face {
font-family: 'copseregular';
src: url('../fonts/copse/copse-regular-webfont.eot');
src: url('../fonts/copse/copse-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/copse/copse-regular-webfont.woff2') format('woff2'),
url('../fonts/copse/copse-regular-webfont.woff') format('woff'),
url('../fonts/copse/copse-regular-webfont.ttf') format('truetype'),
url('../fonts/copse/copse-regular-webfont.svg#copseregular') format('svg');
font-weight: normal;
font-style: normal;}
@font-face {
font-family: 'blackjackregular';
src: url('../fonts/blackjack/black_jack-webfont.eot');
src: url('../fonts/blackjack/black_jack-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/blackjack/black_jack-webfont.woff2') format('woff2'),
url('../fonts/blackjack/black_jack-webfont.woff') format('woff'),
url('../fonts/blackjack/black_jack-webfont.ttf') format('truetype'),
url('../fonts/blackjack/black_jack-webfont.svg#blackjackregular') format('svg');
font-weight: normal;
font-style: normal;}
body {
background-image: url("Images/restaurant.jpg");
background-repeat: repeat;}
/* entire content of menu */
h1+div {
width: 1200px;
margin: 0px auto;}
/* Japanese page sushi raw meat warning */
p {
margin-left: 20px;
font-weight: bold;}
/* menu lists w/out pictures */
ul {
font-size: 18px;
line-height: 1.5em;}
/* navigation bar */
nav {
background-color: Gainsboro;
text-align: center;}
ul#nav>li {
display: inline;
border-left: 1px solid DimGray;
border-right: 1px solid DimGray;
padding: 0px 10px;
font-family: copseregular;
font-size: 20px;}
ul#nav a {
text-decoration: none;
color: DarkBlue;}
ul#nav a:hover{
background-color: PaleTurquoise;
border-radius: 5px;}
ul#nav {
padding: 20px;}
/* headers */
h1#logo {
background-color: LightSkyBlue;
padding: 13px;
font-size: 36px;
border: 10px ridge RoyalBlue;}
h1#logo>a {
color: black;
text-decoration: none;}
span {
font-family: copseregular;
font-size: 48px;}
h1 {
font-family: KaushanScriptRegular;
background-color: SpringGreen;
padding: 10px;
text-shadow: 2px 2px 5px White;
text-align: center;}
h2, h3 {
clear: left;
font-family: KaushanScriptRegular;
padding: 15px;
margin: 10px 20px;}
h2 {
border-bottom: 3px solid Blue;
border-top: 3px solid Blue;}
h3 {
border-bottom: 2px dashed DarkTurquoise;
border-top: 2px dashed DarkTurquoise;}
/* figure image */
figure {
background-color: LightGrey;
width: 360px;
height: 340px;
padding: 10px;
margin: 10px 10px;
text-align: center;
float: left;}
img {
width: 300px;
height: 250px;
padding: 25px 0px;}
figcaption {
position: relative;
bottom: 15px;
background-color: LightPink;
width: 350px;
height: 20px;
padding: 8px 0px;
border: 5px outset SlateBlue;
font-family: blackjackregular;
font-size: 20px;
font-weight: bold;}
div {
overflow: auto;
width: 100%;
height: 100%;}