Skip to content
Open

up #17

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
mix-manifest.json
mix-manifest.json
.env
79 changes: 79 additions & 0 deletions assets/dist/modal.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
.modal {
-webkit-justify-content: center;
-webkit-align-items: center;
align-items: center;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
display: none;
height: 100%;
justify-content: center;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 1001;
}
.modal .title {
font-size: 25px;
margin-bottom: 10px;
}
.modal .promo,.modal .title {
font-weight: bold;
}
.modal .wrapper-btn {
-webkit-flex-wrap: wrap;
-webkit-justify-content: space-between;
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.modal .btn {
border: none;
border-radius: 5px;
cursor: pointer;
display: block;
margin-right: 10px;
margin-top: 20px;
padding: 10px 20px;
text-decoration: none;
}
.modal .btn:hover {
opacity: 0.5;
}
.modal .btn-danger {
background-color: #dc3545;
border-color: #dc3545;
color: #fff;
}
.modal .btn-success {
background-color: #28a745;
border-color: #28a745;
color: #fff;
}
.modal .btn-contact {
max-width: 260px;
}

.modal-content {
background: #fff;
border-radius: 5px;
cursor: default;
margin: 10px;
max-width: 700px;
padding: 20px;
text-align: center;
width: 100%;
z-index: 999;
}

@media only screen and (max-width: 767px) {
.modal .wrapper-btn {
-webkit-flex-direction: column-reverse;
flex-direction: column-reverse;
}
.modal .btn {
max-width: 100%;
width: 100%;
}
}
2 changes: 1 addition & 1 deletion assets/dist/resass/package.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "name": "resass", "version": "1.0.7", "description": "Mixins for checking group of devices (mobile, tablet, laptop, desktop) or device by name (iPhone 5, iPhone X, iPhone 11 Pro Max, iPad Pro 12.9, etc). Expandable and very simple for usage.", "main": "index.min.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/MatviyRoman/resass.git" }, "keywords": [ "frontend", "front-end", "scss", "sass", "resass", "rescss", "combine", "combine-scss", "combine-sass", "responsive", "responsive-sass", "responsive-scss", "sass-css", "scss-css", "scss-media", "sass-media", "mq", "scss-mq", "sass-mq", "sass-media-screen", "sass-mediascreen", "scss-media-screen", "scss-mediascreen", "sass-media-queries", "scss-media-queries", "sass-mix", "scss-mix", "mix" ], "author": "Roman Matviy", "license": "MIT", "bugs": { "url": "https://github.com/MatviyRoman/resass/issues" }, "homepage": "https://github.com/MatviyRoman/resass#readme", "publishConfig": { "registry": "https://npm.pkg.github.com/" } }
{ "name": "resass", "version": "1.0.7", "description": "Mixins for checking group of devices (mobile, tablet, laptop, desktop) or device by name (iPhone 5, iPhone X, iPhone 11 Pro Max, iPad Pro 12.9, etc). Expandable and very simple for usage.", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/MatviyRoman/resass.git" }, "keywords": [ "frontend", "front-end", "scss", "sass", "resass", "rescss", "combine", "combine-scss", "combine-sass", "responsive", "responsive-sass", "responsive-scss", "sass-css", "scss-css", "scss-media", "sass-media", "mq", "scss-mq", "sass-mq", "sass-media-screen", "sass-mediascreen", "scss-media-screen", "scss-mediascreen", "sass-media-queries", "scss-media-queries", "sass-mix", "scss-mix", "mix" ], "author": "Roman Matviy", "license": "MIT", "bugs": { "url": "https://github.com/MatviyRoman/resass/issues" }, "homepage": "https://github.com/MatviyRoman/resass#readme", "publishConfig": { "registry": "https://npm.pkg.github.com/" } }
Loading