We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf90ee commit 74644a5Copy full SHA for 74644a5
projects.md
@@ -45,6 +45,33 @@ author_profile: true
45
function openModal(id) {
46
document.getElementById(id).style.display = "block";
47
}
48
+
49
+.modal {
50
+ display: none;
51
+ position: fixed;
52
+ z-index: 1000;
53
+ left: 0; top: 0;
54
+ width: 100%; height: 100%;
55
+ background-color: rgba(0,0,0,0.8);
56
+}
57
58
+.modal-content {
59
+ background-color: #111;
60
+ margin: 10% auto;
61
+ padding: 20px;
62
+ border: 2px solid #00ffe7;
63
+ width: 80%;
64
+ color: #e0f7fa;
65
+ box-shadow: 0 0 20px #00ffe7;
66
67
68
+.close {
69
+ color: #00ffe7;
70
+ float: right;
71
+ font-size: 28px;
72
+ cursor: pointer;
73
74
75
function closeModal(id) {
76
document.getElementById(id).style.display = "none";
77
0 commit comments