Move css code to file
This commit is contained in:
78
index.php
78
index.php
@@ -4,83 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Allmende-Essen Test</title>
|
<title>Allmende-Essen Test</title>
|
||||||
<style>
|
<link rel="stylesheet" href="style.css">
|
||||||
body {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background-color: #f4f4f4;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
.container {
|
|
||||||
width: 80%;
|
|
||||||
margin: auto;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
header {
|
|
||||||
background: #333;
|
|
||||||
color: #fff;
|
|
||||||
padding-top: 30px;
|
|
||||||
min-height: 70px;
|
|
||||||
border-bottom: #77aaff 3px solid;
|
|
||||||
}
|
|
||||||
header a {
|
|
||||||
color: #fff;
|
|
||||||
text-decoration: none;
|
|
||||||
text-transform: uppercase;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
header ul {
|
|
||||||
padding: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
header li {
|
|
||||||
float: left;
|
|
||||||
display: inline;
|
|
||||||
padding: 0 20px 0 20px;
|
|
||||||
}
|
|
||||||
header #branding {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
header #branding img {
|
|
||||||
height: 50px;
|
|
||||||
width: 40px;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
header #branding h1 {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
header nav {
|
|
||||||
float: right;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
.dinner-option {
|
|
||||||
background: #fff;
|
|
||||||
padding: 20px;
|
|
||||||
margin: 20px 0;
|
|
||||||
border-radius: 5px;
|
|
||||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
||||||
}
|
|
||||||
.dinner-option h2 {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
.btn {
|
|
||||||
background: #77aaff;
|
|
||||||
color: #fff;
|
|
||||||
padding: 10px 20px;
|
|
||||||
text-decoration: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
display: inline-block;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
.btn-grey {
|
|
||||||
background: #ccc;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
.btn:hover {
|
|
||||||
background: #5a99d0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
|||||||
75
style.css
Normal file
75
style.css
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: #f4f4f4;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.container {
|
||||||
|
width: 80%;
|
||||||
|
margin: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
header {
|
||||||
|
background: #333;
|
||||||
|
color: #fff;
|
||||||
|
padding-top: 30px;
|
||||||
|
min-height: 70px;
|
||||||
|
border-bottom: #77aaff 3px solid;
|
||||||
|
}
|
||||||
|
header a {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
header ul {
|
||||||
|
padding: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
header li {
|
||||||
|
float: left;
|
||||||
|
display: inline;
|
||||||
|
padding: 0 20px 0 20px;
|
||||||
|
}
|
||||||
|
header #branding {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
header #branding img {
|
||||||
|
height: 50px;
|
||||||
|
width: 40px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
header #branding h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
header nav {
|
||||||
|
float: right;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.dinner-option {
|
||||||
|
background: #fff;
|
||||||
|
padding: 20px;
|
||||||
|
margin: 20px 0;
|
||||||
|
border-radius: 5px;
|
||||||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.dinner-option h2 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
background: #77aaff;
|
||||||
|
color: #fff;
|
||||||
|
padding: 10px 20px;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.btn-grey {
|
||||||
|
background: #ccc;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.btn:hover {
|
||||||
|
background: #5a99d0;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user