Initial commit

This commit is contained in:
TroogS
2019-05-29 13:34:30 +02:00
committed by GitHub
parent 041075d1db
commit 5f27cec937
5 changed files with 221 additions and 0 deletions

49
material-cookiebar.css Normal file
View File

@@ -0,0 +1,49 @@
.material-cookiebar {
display: block;
bottom: 15px;
box-shadow: rgb(102, 102, 102) 1px 1px 8px;
z-index: 999;
right: 15px;
width: 500px;
max-width: 100%;
background-color: #F4F4F4;
min-height: 100px;
position: fixed;
padding: 0;
}
.material-cookiebar > .material-cookiebar-header {
font-size: 1.1em;
color: #FFF;
background-color: #2b73aa;
padding: 10px 5px;
}
.material-cookiebar > .material-cookiebar-body {
margin: 0 5px 0 5px;
padding: 10px !important;
}
.material-cookiebar > .material-cookiebar-button {
padding: 0 10px 10px 0;
text-align: right;
}
.material-cookiebar > .material-cookiebar-button > a {
text-decoration: none;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
border-radius: 0 !important;
background-color: #2b73aa;
color: #fff !important;
font-weight: normal;
border: 1px solid transparent;
}
.material-cookiebar > .material-cookiebar-button > a:hover,
.material-cookiebar > .material-cookiebar-button > a:focus,
.material-cookiebar > .material-cookiebar-button > a:active {
background-color: #245f8c;
border-color: #1d4666;
}