Home page implementatie

This commit is contained in:
frits000000
2020-11-20 16:24:25 +01:00
parent 55b7b765eb
commit 6c1247657d
20 changed files with 464 additions and 11 deletions
@@ -0,0 +1,34 @@
.AP-Btn-Primary {
background-color: #DE0000;
padding: 5px 10px;
color: #ffffff;
border-radius: 5px;
transition: 0.7s;
}
.AP-Btn-Primary:hover{
text-decoration: none !important;
cursor: pointer;
color: #DE0000;
background-color: #ffffff;
border: 1px solid #DE0000;
}
.AP-Btn-outline{
border: 1px solid #ffffff;
padding: 10px 15px;
color: #ffffff;
transition: 0.7s;
}
.AP-Btn-outline:hover{
text-decoration: none !important;
cursor: pointer;
background-color: #ffffff;
color: #DE0000;
opacity: 0.9;
}
.AP-color-primary{
color: #DE0000;
}