-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPopup_1.css
More file actions
153 lines (130 loc) · 2.41 KB
/
Popup_1.css
File metadata and controls
153 lines (130 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* 폰트 Bold 추가했습니다 popup 부분이랑 같이 추가해주세요 */
@font-face {
font-family: 'Pretendard-Regular';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Bold';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
/* 헤더 */
nav{
font-family: 'Pretendard-Regular';
}
nav ul{
padding: 0;
margin: 0 auto;
width: auto;
position: relative;
}
#clearfix {
margin-right: 84px;
}
nav a{
line-height: 64px;
height: 64px;
}
nav li a{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
nav li:last-child a{
border-right: 0;
}
nav a#pull{
display: none;
}
html {
-webkit-touch-callout:none;
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}
ul{
margin: 0;
padding: 0;
background-color: rgba(255, 255, 255, 0.778);
text-align: right;
}
li{
display: inline-block;
}
li a{
color: #000000;
text-align: center;
margin-right: 33px;
text-decoration: none;
}
li a:hover{
color: #FE395D;
font-weight:normal;
}
#logo {
float: left;
margin-top: 5px;
}
.menu {
width: 5000px;
height: 500px;
text-align: center;
max-width: 100%;
background-position: center;
background-size: cover;
position: absolute;
z-index: 1;
}
body {
margin: 0;
background: #EEE;
user-select: none;
font-family: sans-serif;
}
/* 팝업창 */
#popup {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .3);
z-index: 1;
font-family: 'Pretendard-Regular';
text-align: center;
}
#popup.hide {
display: none;
}
#popup.has-filter {
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}
#popup .content {
padding: 20px;
background: #fff;
border-radius: 20px;
box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
}
#popupName{
font-family: 'Pretendard-Bold';
}
#popupButton{
margin-top: 30px;
display: block;
width: 300px;
position: relative;
margin: 10px auto;
text-align: center;
background-color: #FE395D;
border-radius: 20px;
color: #ffffff;
text-decoration: none;
border-radius: 12px;
padding: 10px 10px 20px 20px;
border-color: #FE395D;
}