Merge branch 'master' of https://github.com/Tiqa/Debats
This commit is contained in:
commit
3120e81e3c
2 changed files with 11 additions and 32 deletions
|
|
@ -26,35 +26,3 @@ div.subjects-index {
|
|||
float:left;
|
||||
}
|
||||
}
|
||||
|
||||
.modalDialog {
|
||||
position: fixed;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: rgba(0,0,0,0.8);
|
||||
z-index: 99999;
|
||||
opacity:0;
|
||||
-webkit-transition: opacity 400ms ease-in;
|
||||
-moz-transition: opacity 400ms ease-in;
|
||||
transition: opacity 400ms ease-in;
|
||||
pointer-events: none;
|
||||
}
|
||||
.modalDialog:target {
|
||||
opacity:1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.modalDialog > div {
|
||||
width: 400px;
|
||||
position: relative;
|
||||
margin: 10% auto;
|
||||
padding: 5px 20px 13px 20px;
|
||||
border-radius: 10px;
|
||||
background: #fff;
|
||||
background: -moz-linear-gradient(#fff, #999);
|
||||
background: -webkit-linear-gradient(#fff, #999);
|
||||
background: -o-linear-gradient(#fff, #999);
|
||||
}
|
||||
|
|
@ -29,6 +29,17 @@
|
|||
<div class="modal-body">
|
||||
<p>Some text in the modal.</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="usr">Name:</label>
|
||||
<input type="text" class="form-control" id="usr">
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="comment">Comment:</label>
|
||||
<textarea class="form-control" rows="5" id="comment"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue