Init project
This commit is contained in:
54
web/style.css
Normal file
54
web/style.css
Normal file
@@ -0,0 +1,54 @@
|
||||
* {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
|
||||
max-width: 768px;
|
||||
}
|
||||
|
||||
.popup {
|
||||
position: fixed;
|
||||
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
z-index: 10000;
|
||||
|
||||
background-color: rgba(0, 0, 0, 0.9);
|
||||
color: white;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
.popup .popup-close {
|
||||
margin: 60px;
|
||||
margin-left: auto;
|
||||
font-size: 60px;
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.popup .popup-content {
|
||||
position: relative;
|
||||
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.popup input {
|
||||
color: white;
|
||||
}
|
||||
|
||||
input.form-control {
|
||||
width: 100%;
|
||||
background-color: transparent;
|
||||
|
||||
border: none;
|
||||
border-bottom-style: solid;
|
||||
border-width: 1px;
|
||||
font-size: 2em;
|
||||
}
|
Reference in New Issue
Block a user