diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..c198233 Binary files /dev/null and b/.DS_Store differ diff --git a/about_popup.html b/about_popup.html new file mode 100644 index 0000000..0a19cc9 --- /dev/null +++ b/about_popup.html @@ -0,0 +1,48 @@ + + + + + + + About + + + + +
+
+

About

+ + Open +
+
+ + + + \ No newline at end of file diff --git a/css/.DS_Store b/css/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/css/.DS_Store differ diff --git a/css/stylePopups.css b/css/stylePopups.css new file mode 100644 index 0000000..07e9fd9 --- /dev/null +++ b/css/stylePopups.css @@ -0,0 +1,86 @@ +/*fonts*/ +@font-face { + font-family: bern; + src: url(../fonts/bernhc.ttf); + } + + @font-face { + font-family: baskerville; + src: url(../fonts/BASKVILL.ttf); + } + +* +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Poppins', sans-serif; +} + +.container +{ + position: relative; + width: 100%; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background: chocolate; + transition: 0.5s; + padding: 20px; +} + +.container#blur.active +{ + filter: blur(20px); + pointer-events: none; + user-select: none; +} + +.container .content +{ + position: relative; + max-width: 800px; +} +h2{ + font-weight: 600; + margin-bottom: 10px; + color: #333; +} +.container .content img +{ + max-width: 100%; + display: block; +} +a +{ + position: relative; + padding: 5px 20px; + display: inline-block; + margin-top: 20px; + text-decoration: none; + color: #fff; + background: #111; +} +#popup +{ + position: fixed; + top: 40%; + Left: 50%; + transform: translate(-50%, -50%); + width: 600px; + padding: 50px; + box-shadow: 0 5px 30px rgba(0, 0, 0, .30); + background: #fff; + visibility: hidden; + opacity: 0; + transition: 0.5s; +} + +#popup.active +{ + top: 50%; + visibility: visible; + opacity: 1; + transition: 0.5s; +} \ No newline at end of file diff --git a/css/styles.css b/css/styles.css index 9536878..37306f8 100644 --- a/css/styles.css +++ b/css/styles.css @@ -207,4 +207,75 @@ p { .buttons * { font-size: 1.5vw; } -} \ No newline at end of file +} + +/* Popup Styles */ +#popup { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 600px; + padding: 50px; + box-shadow: 0 5px 30px rgba(0, 0, 0, 0.30); + background: #fff; + visibility: hidden; + opacity: 0; + transition: 0.5s; +} + +#popup.active { + top: 50%; + visibility: visible; + opacity: 1; + transition: 0.5s; +} + +.container { + position: relative; + width: 100%; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background: chocolate; + transition: 0.5s; + padding: 20px; +} + +.container#blur.active { + filter: blur(20px); + pointer-events: none; + user-select: none; +} + +.container .content { + position: relative; + max-width: 800px; +} + +.container .content img{ + max-width: 100%; + display: block; +} + +#popup h2 { + font-weight: 600; + margin-bottom: 10px; + color: #333; +} + +a { + position: relative; + padding: 5px 20px; + display: inline-block; + margin-top: 20px; + text-decoration: none; + color: #fff; + background: #111; +} + +#popup a { + color: #fff; + background: #111; +} diff --git a/images/popups_background_d.JPG b/images/popups_background_d.JPG new file mode 100644 index 0000000..2978fb9 Binary files /dev/null and b/images/popups_background_d.JPG differ diff --git a/images/popups_background_m.JPG b/images/popups_background_m.JPG new file mode 100644 index 0000000..cb5523c Binary files /dev/null and b/images/popups_background_m.JPG differ diff --git a/index.html b/index.html index e69c79e..77b4b37 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,49 @@ + + +
@@ -34,51 +76,133 @@ -->
+

Uncommon

Hacks

+
March 23-24
Polsky Exchange
-
+ +
+
+

speakers

+ Close +
+
+ +

speakers

+

content

+
+ +
+
+

sponsors

+ Close +
-
+ +

sponsors

+

content

-
+ +
+
+

contact

+ Close +
+
+ +

contact/socials

-
+ +
+
+

faq

+ Close +
+
+ +

faq

-
+ +
+
+

team

+ Close +
+
+ +

team

-
+ +
+
+

register

+ Close +
+
+ +

register

+ +
+
+

judging

+ Close +
+
+

judging

-
+ +
+
+

schedule

+ Close +
+
+ +

schedule

+ +
+
+

about

+ Close +
+
+

about

-
+
-
+ +
+ \ No newline at end of file diff --git a/popups/about_popup.html b/popups/about_popup.html new file mode 100644 index 0000000..6f4bd0b --- /dev/null +++ b/popups/about_popup.html @@ -0,0 +1,48 @@ + + + + + + + About + + + + +
+
+

About

+ + Open +
+
+ + + + \ No newline at end of file diff --git a/stylePopups.css b/stylePopups.css new file mode 100644 index 0000000..887af60 --- /dev/null +++ b/stylePopups.css @@ -0,0 +1,76 @@ +* + +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Poppins', sans-serif; +} + +.container +{ + position: relative; + width: 100%; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background: #fff173; + transition: 0.5s; + padding: 20px; +} + +.container#blur.active +{ + filter: blur(20px); + pointer-events: none; + user-select: none; +} + +.container .content +{ + position: relative; + max-width: 800px; +} +h2{ + font-weight: 600; + margin-bottom: 10px; + color: #333; +} +.container .content img +{ + max-width: 100%; + display: block; +} +a +{ + position: relative; + padding: 5px 20px; + display: inline-block; + margin-top: 20px; + text-decoration: none; + color: #fff; + background: #111; +} +#popup +{ + position: fixed; + top: 40%; + Left: 50%; + transform: translate(-50%, -50%); + width: 600px; + padding: 50px; + box-shadow: 0 5px 30px rgba(0, 0, 0, .30); + background: #fff; + visibility: hidden; + opacity: 0; + transition: 0.5s; +} + +#popup.active +{ + top: 50%; + visibility: visible; + opacity: 1; + transition: 0.5s; +} \ No newline at end of file