Progress on contact

This commit is contained in:
Edin Dazdarevic
2017-04-11 14:23:58 +02:00
parent 4a8740fb35
commit e65a6a48e8
5 changed files with 107 additions and 3 deletions

49
web/dist/main.css vendored
View File

@@ -829,3 +829,52 @@ h5 {
color: #2d3138;
}
.modal {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 99999;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
/*pointer-events: none;*/
pointer-events: auto;
}
.modal > div {
width: 460px;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
}
.modal h3 {
color: #575a60;
font-size: 16px;
font-weight: 400;
letter-spacing: .3px;
}
.close {
color: #575a60;
line-height: 25px;
position: absolute;
right: 5px;
top: 5px;
text-align: center;
width: 24px;
text-decoration: none;
font-size: 1.2em;
}
.close:hover {
/*background: #00d9ff;*/
}