Initial commit
This commit is contained in:
commit
84cf241ce7
27 changed files with 484 additions and 0 deletions
121
stylesheet.css
Normal file
121
stylesheet.css
Normal file
|
@ -0,0 +1,121 @@
|
|||
@import url("https://fonts.googleapis.com/css?family=Nunito");
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
* {
|
||||
background-color: white;
|
||||
font-family: Nunito;
|
||||
}
|
||||
|
||||
.content {
|
||||
border: solid;
|
||||
border-radius: 15px;
|
||||
padding: 4px;
|
||||
margin: 15px;
|
||||
border-color: black;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
text-align: center;
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.sitebutton {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
color: black;
|
||||
padding: 15px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
margin: 15px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.sitebutton:hover {
|
||||
background-color: black;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.gotobtn {
|
||||
background-color: white;
|
||||
border: none;
|
||||
color: black;
|
||||
padding: 15px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.gotobtn:hover {
|
||||
background-color: black;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.cursitebutton {
|
||||
background-color: black;
|
||||
border: none;
|
||||
color: white;
|
||||
padding: 15px 32px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
margin: 15px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
.cursitebutton:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.productimage {
|
||||
padding: 20;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#products {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.prsearch {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.product {
|
||||
border: solid;
|
||||
border-radius: 15px;
|
||||
padding: 4px;
|
||||
margin: 15px;
|
||||
border-color: black;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ueberschrift {
|
||||
width: auto;
|
||||
height: 90px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue