slight updates
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 35s
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 35s
This commit is contained in:
129
output/french-pub/restaurant/main.css
Executable file
129
output/french-pub/restaurant/main.css
Executable file
@@ -0,0 +1,129 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
|
||||
|
||||
@font-face {
|
||||
font-family: "Upper East Side";
|
||||
src: url(UpperEastSide.ttf);
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-family: "Upper East Side", sans-serif;
|
||||
}
|
||||
|
||||
a, p {
|
||||
font-family: Croissant One, Calibri, sans-serif;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
opacity: 75%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
h2{
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-family: Croissant One, Calibri, sans-serif;
|
||||
color: red;
|
||||
}
|
||||
|
||||
div {
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
#below {
|
||||
color: green;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
background-color: rgb(127, 172, 255);
|
||||
background-image: linear-gradient(135deg, blue 0%, blue 33%, white 33%, white 66%, red 66%, red);
|
||||
background-position: 0px, 0px;
|
||||
background-attachment: fixed;
|
||||
display: grid;
|
||||
grid-template-areas:
|
||||
'a a a a a'
|
||||
'b b b c c'
|
||||
'd d d d d'
|
||||
'f f f f f';
|
||||
}
|
||||
|
||||
body > div {
|
||||
padding: 50px;
|
||||
border-radius: 50px;
|
||||
min-width: 300px;
|
||||
min-height: 300px;
|
||||
/*background-color: white;*/
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
margin: 100px;
|
||||
box-shadow: 30px 30px 30px 15px rgba(0, 0, 0, 0.8);
|
||||
transition: box-shadow 0.5s, transform 0.5s, background-color 0.5s;
|
||||
}
|
||||
|
||||
body > div:hover {
|
||||
box-shadow: 15px 15px 10px 5px rgba(0, 0, 0, 0.8);
|
||||
transform: translate(15px, 15px);
|
||||
}
|
||||
|
||||
#title {
|
||||
grid-area: a;
|
||||
}
|
||||
|
||||
#about{
|
||||
grid-area: b;
|
||||
}
|
||||
|
||||
#contact{
|
||||
grid-area: c;
|
||||
}
|
||||
|
||||
#menu {
|
||||
grid-area: d;
|
||||
}
|
||||
|
||||
#bottomthing {
|
||||
grid-area: f;
|
||||
margin: 0px;
|
||||
padding: 200px;
|
||||
background-color: black;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
transition: none;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
span.dash{
|
||||
display: inline-block;
|
||||
width: 5ch;
|
||||
background-color: black;
|
||||
height: 1px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.5em;
|
||||
}
|
||||
|
||||
.menu-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 25% 25% 25% 25%;
|
||||
}
|
||||
|
||||
.menu-grid > * {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, .5);
|
||||
}
|
||||
|
||||
#bottomthing {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
Reference in New Issue
Block a user