質問編集履歴
1
CSSの追記をしました
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
$('.try-show').click(function() {
|
56
56
|
|
57
|
-
$(#
|
57
|
+
$('#email-modal').fadeIn();
|
58
58
|
|
59
59
|
});
|
60
60
|
|
@@ -67,3 +67,57 @@
|
|
67
67
|
|
68
68
|
|
69
69
|
ご教示お願い致します。
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
CSSの追記をしました。
|
74
|
+
|
75
|
+
```ここに言語を入力
|
76
|
+
|
77
|
+
#modal-content {
|
78
|
+
|
79
|
+
position: absolute;
|
80
|
+
|
81
|
+
top: 20%;
|
82
|
+
|
83
|
+
left: 34%;
|
84
|
+
|
85
|
+
background-color: #e6ecf0;
|
86
|
+
|
87
|
+
padding: 20px 0 40px;
|
88
|
+
|
89
|
+
border-radius: 10px;
|
90
|
+
|
91
|
+
width: 450px;
|
92
|
+
|
93
|
+
height: auto;
|
94
|
+
|
95
|
+
text-align: center;
|
96
|
+
|
97
|
+
}
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
.modal-wrapper {
|
102
|
+
|
103
|
+
position: fixed;
|
104
|
+
|
105
|
+
top: 0;
|
106
|
+
|
107
|
+
right: 0;
|
108
|
+
|
109
|
+
bottom: 0;
|
110
|
+
|
111
|
+
left: 0;
|
112
|
+
|
113
|
+
background-color: rgba(0, 0, 0, 0.6);
|
114
|
+
|
115
|
+
z-index: 100;
|
116
|
+
|
117
|
+
display: none;
|
118
|
+
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
```
|