diff --git a/assets/css/animations.css b/assets/css/animations.css new file mode 100644 index 0000000..5386c35 --- /dev/null +++ b/assets/css/animations.css @@ -0,0 +1,74 @@ + + + +.preloader +{ + position: fixed; + z-index: 100000; + top: 0; + left: 0; + + width: 100%; + height: 100%; + + background: #373765; +} + +.preloader.preloader-hidden +{ + height: 0; + + -webkit-transition: .5s ease .3s; + -o-transition: .5s ease .3s; + transition: .5s ease .3s; +} + +.preloader .spinner +{ + position: absolute; + top: 50%; + + width: 100%; + + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + text-align: center; + opacity: 1; +} + +.preloader.preloader-hidden .spinner +{ + opacity: 0; + + -webkit-transition: .3s ease; + -o-transition: .3s ease; + transition: .3s ease; +} + +.preloader .spinner > div +{ + display: inline-block; + + width: 18px; + height: 18px; + margin: 0 6px; + + -webkit-animation: spinner-bounce 1.4s infinite ease-in-out both; + animation: spinner-bounce 1.4s infinite ease-in-out both; + + border-radius: 100%; + background-color: #fff; +} + +.preloader .spinner .bounce-1 +{ + -webkit-animation-delay: -.32s; + animation-delay: -.32s; +} + +.preloader .spinner .bounce-2 +{ + -webkit-animation-delay: -.16s; + animation-delay: -.16s; +} \ No newline at end of file diff --git a/assets/css/main-old.css b/assets/css/main-old.css new file mode 100644 index 0000000..98873d3 --- /dev/null +++ b/assets/css/main-old.css @@ -0,0 +1,1020 @@ +/****************************************************************** + ------------------------ + -- TABLE OF CONTENTS -- + ------------------------ + + -- 1. Basic + -- 2. Preloader + -- 3. Hero + -- 4. Hero --> Front Content + -- 5. Hero --> Background Content + -- 6. Popup Subscribe + + + ******************************************************************/ + + + + +/** 1. Basic +*******************************************************************/ + +html +{ + font-size: 10px !important; +} + +body +{ + font-family: 'Roboto', sans-serif; + font-weight: 300; + font-style: normal; + + overflow: hidden; + + color: #fff; + background: #000; + + -webkit-font-smoothing: antialiased; +} + +h1, +h2, +h3, +h4, +h5, +h6, +p, +a +{ + font-family: 'Roboto', sans-serif; + font-weight: normal; + + color: #fff; +} + +h1 +{ + font-size: 6rem; +} + +h2 +{ + font-size: 5rem; +} + +h3 +{ + font-size: 4rem; +} + +h4 +{ + font-size: 3rem; +} + +h5 +{ + font-size: 2rem; +} + +h6 +{ + font-size: 1.8rem; +} + +p +{ + font-size: 1.4rem; +} + +a, +a:hover, +a:focus +{ + cursor: pointer; + -webkit-transition: all 300ms ease; + -o-transition: all 300ms ease; + transition: all 300ms ease; + text-decoration: none; +} + +a:hover +{ + color: #fff; +} + +@media (max-width:700px) +{ + html + { + font-size: 8px !important; + } +} + +@media (max-width:500px) +{ + html + { + font-size: 6px !important; + } +} + +@media (max-width:350px) +{ + html + { + font-size: 5px !important; + } +} + +@media (orientation:landscape) and (max-height:420px) +{ + html + { + font-size: 8px !important; + } +} + + + +/** 2. Preloader +*******************************************************************/ + +.preloader +{ + position: fixed; + z-index: 100000; + top: 0; + left: 0; + + width: 100%; + height: 100%; + + background: #2707eb; +} + +.preloader.preloader-hidden +{ + height: 0; + + -webkit-transition: .5s ease .3s; + -o-transition: .5s ease .3s; + transition: .5s ease .3s; +} + +.preloader .spinner +{ + position: absolute; + top: 50%; + + width: 100%; + + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + text-align: center; + opacity: 1; +} + +.preloader.preloader-hidden .spinner +{ + opacity: 0; + + -webkit-transition: .3s ease; + -o-transition: .3s ease; + transition: .3s ease; +} + +.preloader .spinner > div +{ + display: inline-block; + + width: 18px; + height: 18px; + margin: 0 6px; + + -webkit-animation: spinner-bounce 1.4s infinite ease-in-out both; + animation: spinner-bounce 1.4s infinite ease-in-out both; + + border-radius: 100%; + background-color: #fff; +} + +.preloader .spinner .bounce-1 +{ + -webkit-animation-delay: -.32s; + animation-delay: -.32s; +} + +.preloader .spinner .bounce-2 +{ + -webkit-animation-delay: -.16s; + animation-delay: -.16s; +} + +@-webkit-keyframes spinner-bounce +{ + 0%, + 80%, + 100% + { + -webkit-transform: scale(0); + } + 40% + { + -webkit-transform: scale(1.0); + } +} + +@keyframes spinner-bounce +{ + 0%, + 80%, + 100% + { + -webkit-transform: scale(0); + transform: scale(0); + } + + 40% + { + -webkit-transform: scale(1.0); + transform: scale(1.0); + } +} + + + +/** 3. Hero +*******************************************************************/ + +.hero +{ + position: absolute; + z-index: 1; + top: 0; + left: 0; + + width: 100%; + height: 100%; +} + +.hero .animation-container +{ + -webkit-transition: .5s ease; + -o-transition: .5s ease; + transition: .5s ease; +} + +.hero .animation-container.animation-fade +{ + opacity: 0; +} + +.hero .animation-container.animation-fade.run-animation +{ + opacity: 1; +} + +.hero .animation-container.animation-fade-up +{ + -webkit-transform: translateY(10vh); + -ms-transform: translateY(10vh); + transform: translateY(10vh); + + opacity: 0; +} + +.hero .animation-container.animation-fade-up.run-animation +{ + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + + opacity: 1; +} + +.hero .animation-container.animation-fade-down +{ + -webkit-transform: translateY(-10vh); + -ms-transform: translateY(-10vh); + transform: translateY(-10vh); + + opacity: 0; +} + +.hero .animation-container.animation-fade-down.run-animation +{ + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0); + + opacity: 1; +} + +.hero .animation-container.animation-fade-left +{ + -webkit-transform: translateX(10vh); + -ms-transform: translateX(10vh); + transform: translateX(10vh); + + opacity: 0; +} + +.hero .animation-container.animation-fade-left.run-animation +{ + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + + opacity: 1; +} + +.hero .animation-container.animation-fade-right +{ + -webkit-transform: translateX(-10vh); + -ms-transform: translateX(-10vh); + transform: translateX(-10vh); + + opacity: 0; +} + +.hero .animation-container.animation-fade-right.run-animation +{ + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + + opacity: 1; +} + + + +/** 4. Hero --> Front Content +*******************************************************************/ + +.hero .front-content +{ + position: absolute; + z-index: 2; + top: 0; + left: 0; + + width: 100%; + height: 100%; +} + +.hero .front-content .container-mid +{ + position: absolute; + top: 50%; + left: 0; + + width: 100%; + + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); + text-align: center; +} + +.hero .front-content .container-mid img.logo +{ + display: block; + + margin: 0 auto; +} + +.hero .front-content .container-mid h1 +{ + font-weight: bold; + line-height: 1.1em; + + margin-top: .5em; + margin-bottom: .46em; + + letter-spacing: .025em; +} + +.hero .front-content .container-mid p.subline +{ + font-size: 3rem; + line-height: 1.4em; + + max-width: 18em; + margin-right: auto; + margin-bottom: 1.3em; + margin-left: auto; + + letter-spacing: .025em; +} + +.hero .front-content .container-mid .open-popup +{ + font-size: 2.2rem; + font-weight: 500; + line-height: 2.6em; + + position: relative; + + display: inline-block; + overflow: hidden; + + padding: 0 2.6em; + + cursor: pointer; + -webkit-transition: all .1s linear; + -o-transition: all .1s linear; + transition: all .1s linear; + letter-spacing: .025em; + + color: #fff; + border: 3px solid #fff; + border-radius: 4em; + background: none; +} + +.hero .front-content .container-mid .open-popup:hover +{ + color: #111; + background: #fff; +} + +.hero .front-content .footer +{ + position: absolute; + bottom: 10px; + + width: 100%; + + text-align: center; +} + +.hero .front-content .footer p +{ + font-size: 1.3rem; + + letter-spacing: .025em; + + opacity: .85; +} + +.hero .front-content .footer p a +{ + font-weight: bold; +} + +@media (orientation:landscape) and (max-height:420px) +{ + .hero .front-content .footer + { + display: none; + } +} + + + +/** 5. Hero --> Background Content +*******************************************************************/ + +.hero .background-content +{ + position: absolute; + z-index: 1; + top: 0; + left: 0; + + width: 100%; + height: 100%; +} + +.hero .background-content.parallax-on +{ + position: absolute; + z-index: 1; + top: 50%; + left: 50%; + + width: 110%; + height: 110%; + + -webkit-transform: translate3d(-50%, -50%, 0px) !important; + transform: translate3d(-50%, -50%, 0px) !important; +} + +.hero .background-content .background-overlay +{ + position: absolute; + z-index: 50; + top: 0; + left: 0; + + width: 100%; + height: 100%; + + opacity: .7; + background: #020026; +} + +.hero .background-content .background-img +{ + position: absolute; + z-index: 1; + top: 0; + left: 0; + + width: 100%; + height: 100%; + + background: url(../img/background.jpg); + background-repeat: no-repeat; + background-size: cover; +} + + +/** 6. Popup Subscribe +*******************************************************************/ + +.popup +{ + position: fixed; + z-index: -100; + top: 0; + left: 0; + + overflow-y: auto; + + width: 100%; + height: 100%; + + -webkit-transition: .3s ease; + -o-transition: .3s ease; + transition: .3s ease; + pointer-events: none; + + opacity: 0; + background: rgba(5,5,5,.5); +} + +.popup.show +{ + z-index: 100; + + pointer-events: all; + + opacity: 1; +} + +.popup .backface +{ + position: absolute; + z-index: 0; + top: 0; + left: 0; + + width: 100%; + height: 100%; +} + +.popup .card +{ + position: relative; + z-index: 5; + top: 60%; + left: 50%; + + max-width: 410px; + padding: 90px 46px; + + -webkit-transform: translate(-50%,-50%); + -ms-transform: translate(-50%,-50%); + transform: translate(-50%,-50%); + text-align: center; + + opacity: 0; + border: 5px solid #fff; + background: red; + background-image: url(../img/card-background.jpg); + background-position: center; + background-size: cover; +} + +.popup.show .card +{ + top: 50%; + + -webkit-transition: .4s ease; + -o-transition: .4s ease; + transition: .4s ease; + + opacity: 1; +} + +.popup .card:after +{ + position: absolute; + z-index: -2; + top: 0; + left: 0; + + width: 100%; + height: 100%; + + content: ''; + + opacity: .4; + background: #111; +} + +.popup .card .close-button +{ + position: absolute; + top: 15px; + right: 15px; + + width: 20px; + height: 20px; + + cursor: pointer; +} + +.popup .card .close-button:before +{ + position: absolute; + top: 50%; + left: 0; + + width: 100%; + height: 2px; + + content: ''; + -webkit-transform: rotate(45deg); + -ms-transform: rotate(45deg); + transform: rotate(45deg); + + background: #fff; +} + +.popup .card .close-button:after +{ + position: absolute; + top: 50%; + left: 0; + + width: 100%; + height: 2px; + + content: ''; + -webkit-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + transform: rotate(-45deg); + + background: #fff; +} + +.popup .card i +{ + font-size: 6rem; +} + +.popup .card h3 +{ + margin-top: .5em; + margin-bottom: .8em; +} + +.popup .card p.subline +{ + font-size: 1.6rem; + + max-width: 19em; + margin-right: auto; + margin-bottom: 2.4em; + margin-left: auto; + + letter-spacing: .025em; +} + + +.popup .card .subscribe-form +{ + position: relative; + + width: 100%; +} + +.popup .card .subscribe-form .fhp-input +{ + display: none; + + pointer-events: none; + + opacity: 0; +} + +.popup .card .subscribe-form input +{ + font-size: 1.6rem; + font-weight: 400; + line-height: 3.2em; + + display: block; + + height: 3.2em; + margin-bottom: 20px; + + text-align: center; + letter-spacing: .03em; + + border: none; + border-radius: 6px; + outline: none !important; + background: #fff; + -webkit-box-shadow: none; + box-shadow: none; +} + +.popup .card .subscribe-form button +{ + font-size: 1.6rem; + font-weight: 400; + line-height: 3.2em !important; + + position: relative; + + display: block; + + height: 3.2em; + padding: 0; + + -webkit-transition: .1s ease; + -o-transition: .1s ease; + transition: .1s ease; + text-align: center; + letter-spacing: .03em; + + border: none; + border-radius: 6px; + outline: none !important; + background: #2707eb; + -webkit-box-shadow: none !important; + box-shadow: none !important; +} + +.popup .card .subscribe-form button[disabled] +{ + cursor: not-allowed; + + opacity: 1; + + filter: alpha(opacity=100); +} + +.popup .card .subscribe-form button span +{ + font-size: inherit; + line-height: inherit; + + position: absolute; + z-index: 100; + top: 0; + left: 0; + + width: 100%; + + text-align: center; + + color: #fff !important; + border: none !important; + outline: none !important; +} + +.popup .card .subscribe-form button i +{ + font-size: 1.4em; + line-height: inherit; + + position: absolute; + z-index: 100; + top: 0; + right: 5%; + + width: auto; + + -webkit-transform: translateX(-15px); + -ms-transform: translateX(-15px); + transform: translateX(-15px); + text-align: center; + + opacity: 0; + color: #fff !important; +} + +.popup .card .subscribe-form button:hover i +{ + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0); + + opacity: 1; +} + +.popup .card .subscribe-form button[disabled] i +{ + display: none !important; +} + +.popup .card .subscribe-form .error-message, +.popup .card .subscribe-form .success-message +{ + font-weight: 500; + + position: absolute; + bottom: -36px; + left: 0; + + width: 100%; + + text-align: center; + letter-spacing: .02em; + + opacity: 0; +} + +.popup .card .subscribe-form.form-error .error-message, +.popup .card .subscribe-form.form-success .success-message +{ + -webkit-transition: .3s ease; + -o-transition: .3s ease; + transition: .3s ease; + + opacity: 1; +} + +.popup .card .subscribe-form.form-success .success-message +{ + -webkit-animation-name: form_success_animation; + animation-name: form_success_animation; + -webkit-animation-duration: 1s; + animation-duration: 1s; + + color: lawngreen; +} + +.popup .card .subscribe-form.form-error .error-message +{ + -webkit-animation-name: form_error_animation; + animation-name: form_error_animation; + -webkit-animation-duration: 1s; + animation-duration: 1s; + + color: red; +} + +@-webkit-keyframes form_success_animation +{ + from + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% + { + -webkit-transform: scale3d(1.08, 1.08, 1.08); + transform: scale3d(1.08, 1.08, 1.08); + } + + to + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes form_success_animation +{ + from + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% + { + -webkit-transform: scale3d(1.08, 1.08, 1.08); + transform: scale3d(1.08, 1.08, 1.08); + } + + to + { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@-webkit-keyframes form_error_animation +{ + from + { + -webkit-transform: none; + transform: none; + } + + 15% + { + -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% + { + -webkit-transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% + { + -webkit-transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% + { + -webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% + { + -webkit-transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to + { + -webkit-transform: none; + transform: none; + } +} + +@keyframes form_error_animation +{ + from + { + -webkit-transform: none; + transform: none; + } + + 15% + { + -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% + { + -webkit-transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(8%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% + { + -webkit-transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-6%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% + { + -webkit-transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(4%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% + { + -webkit-transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-2%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + to + { + -webkit-transform: none; + transform: none; + } +} + +@media (orientation:landscape) and (max-height:420px) +{ + .popup .card + { + -webkit-transform: translate(-50%,0%); + -ms-transform: translate(-50%,0%); + transform: translate(-50%,0%); + } + + .popup.show .card + { + top: 0; + } +} \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css index 79e5202..a1e82a3 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -112,6 +112,7 @@ a:hover html { font-size: 8px !important; + color: red !important; } } @@ -371,15 +372,15 @@ a:hover .hero .front-content .container-mid { - /* position: absolute; */ - /* bottom: 10%; */ - /* left: 0; */ - /* margin: auto; */ + position: absolute; + bottom: 10%; + left: 0; + /* margin: auto; height: 100%; overflow: hidden; width: 100%; margin: auto; - margin-top: 17em; + margin-top: 17em; */ /* -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); diff --git a/assets/css/responsive.css b/assets/css/responsive.css new file mode 100644 index 0000000..c33a427 --- /dev/null +++ b/assets/css/responsive.css @@ -0,0 +1,187 @@ + /* For mobile phones: */ + [class*="col-"] { + width: 100%; + } + + @media only screen and (min-width: 600px) { + /* For tablets: */ + .col-s-1 {width: 8.33%;} + .col-s-2 {width: 16.66%;} + .col-s-3 {width: 25%;} + .col-s-4 {width: 33.33%;} + .col-s-5 {width: 41.66%;} + .col-s-6 {width: 50%;} + .col-s-7 {width: 58.33%;} + .col-s-8 {width: 66.66%;} + .col-s-9 {width: 75%;} + .col-s-10 {width: 83.33%;} + .col-s-11 {width: 91.66%;} + .col-s-12 {width: 100%;} + } + + @media only screen and (min-width: 768px) { + /* For desktop: */ + .col-1 {width: 8.33%;} + .col-2 {width: 16.66%;} + .col-3 {width: 25%;} + .col-4 {width: 33.33%;} + .col-5 {width: 41.66%;} + .col-6 {width: 50%;} + .col-7 {width: 58.33%;} + .col-8 {width: 66.66%;} + .col-9 {width: 75%;} + .col-10 {width: 83.33%;} + .col-11 {width: 91.66%;} + .col-12 {width: 100%;} + } + +body{ + font-family: 'Roboto', sans-serif; +} + + + .page-container { + position: relative; + min-height: 100vh; + } + + .content-wrap { + padding-bottom: 2.5rem; /* Footer height */ + } + + .footer { + position: absolute; + bottom: 0; + width: 100%; + text-align: center; + height: 2.5rem; /* Footer height */ + } + +/* +.footer +{ + position: absolute; + bottom: 0; + width: 100%; + height: 2.5rem; + text-align: center; +} */ + +.footer p +{ + font-size: 1.3rem; + + letter-spacing: .025em; + + opacity: .85; +} + +.footer p a +{ + font-weight: bold; +} + +@media (orientation:landscape) and (height:420px) +{ + .hero .front-content .footer + { + display: none; + } +} + +.container{ + text-align: justify !important; + margin-top: 5%; +} + +.row{ + padding: 0.5em; +} + +.title{ + font-size: 2em; + font-weight: 800; +} + +.sub-title{ + font-size: 1.5em; +} + +.text{ + font-size: 1.2em; +} + + +/* .middle-section{ + position: relative; + min-height: 100vh; +} */ +.pl-2{ + padding-left: 2%; +} +@media (max-height:420px) +{ + + img{ + width: 100%; + } + iframe + { + width: 80%; + height: 200px; + } +} + +@media (max-height:800px) +{ + img{ + width: 100%; + } + iframe + { + width: 80%; + height: 300px + } +} + +@media (max-height:1200px) +{ + img{ + width: 100%; + } + iframe + { + width: 80%; + height: 600px; + } +} + +@media (max-height:1920px) +{ + img{ + width: 100%; + } + iframe + { + width: 80%; + height: 800px; + } +} + +@media (max-height:2540px) +{ + iframe + { + width: 80%; + height: 800px; + } +} + +@media (max-height:4800px) +{ + iframe + { + width: 80%; + height: 1000px; + } +} \ No newline at end of file diff --git a/contact.html b/contact.html index 56cf5b3..412d4d9 100644 --- a/contact.html +++ b/contact.html @@ -19,142 +19,93 @@ - + - + + - - - -
- - -
- -
-
-
- +
+ +
+ - - -
- - - - -
- - - -
- -
- +
+ +
+
+
+
- - - -
- - - - - - - - - - -
-

- Feel free to contact us! -

-
-
-

+ +

+ +
+
+
+
+ Contact us! +
+
+
+ +
+
+
“Athena” Research Centre Artemidos 6 & Epidavrou, 151 25, Athens - Greece -

-

+

+
+
+
+30 210 6875 300 -

-

- +30 210 6875 485 -

+
- - -
- - - - - - - - - - - - - + +
- + +
- - - - - diff --git a/founding_members.html b/founding_members.html index 43d6384..5a0b9d9 100644 --- a/founding_members.html +++ b/founding_members.html @@ -19,173 +19,141 @@ - + - + + - - - -
- - -
- -
-
-
- +
+ +
+ - - -
- - - - -
- - - -
- -
- +
+ +
+
+
+
- - - -
- + +
+ +
+
+
+
+ Hellenic ACM SIGMOD Chapter Founding Members +
+
+
+
+ Yannis Ioannidis, University of Athens & Athena RC, Greece +
+
- - - - - +
+
+ Yannis Chronis, Google +
+
- - -
-

Hellenic ACM SIGMOD Chapter Founding Members

-

-

- Yannis Ioannidis, University of Athens & ATHENA RC, Greece -

-

- Yannis Chronis, Google -

-

- Stratos Idreos, Harvard University -

-

- John Paparrizos, The Ohio State University -

-

- Theodore Dalamagas, ATHENA RC -

-

- Timos Sellis, ATHENA RC -

-

- Alkis Simitsis, Athena RC, Greece -

-

- Minos Garofalakis, ATHENA RC & Technical University of Crete -

-

- Anastasia Ailamaki, EPFL -

-

- Manos Athanassoulis, Boston University -

-

- Herodotos Herodotou, Cyprus University of Technology -

-

- Kostas Stefanidis, Tampere University -

+
+
+ Stratos Idreos, Harvard University, USA +
- - - - - - - - - - - - - - -
- - - - - - - - - - - - - + +
- + +
- - - - - - diff --git a/index.html b/index.html index c953a47..1a51548 100644 --- a/index.html +++ b/index.html @@ -19,200 +19,138 @@ - + - + + - - - -
- - -
- -
-
-
- +
+ +
+ - - -
- - - - -
- - - -
- -
- +
+ +
+
+
+
- - - -
- - - -
- - - - + +
+ +
+
+
+
+ +
- - - - - - - - - - - - - - - - -
- - - - -
- - - - - - - - - - - - - -
- - - - - - - - - + +
+ - diff --git a/join.html b/join.html index 1c3a441..a5ff600 100644 --- a/join.html +++ b/join.html @@ -19,129 +19,88 @@ - + - + + - - - -
- - -
- -
-
-
- +
+ +
+ - - -
- - - - -
- - - -
- -
- +
+ +
+
+
+
- - - -
- - - - - - - - - - -
-

Join us!

-

-

- You can join the Hellenic ACM SIGMOD Chapter by signing up on this form! -

- + +
+ +
+
+
+
+ Join us! +
- - -
- - - - - - - - - - - - - + +
- + +
- - - - - - diff --git a/officers.html b/officers.html index 30200a1..802e964 100644 --- a/officers.html +++ b/officers.html @@ -19,133 +19,88 @@ - + - + + - - - -
- - -
- -
-
-
- +
+ +
+ - - -
- - - - -
- - - -
- -
- +
+ +
+
+
+
- - - -
- - - - - - - - - - -
-

Hellenic ACM SIGMOD Chapter Officers

-

-

- Georgia Koutrika, Athena RC -

-

- Evaggelia Pitoura, University of Ioannina, Greece, Archimedes Unit, ATHENA RC, Greece -

-

- Panos K. Chrysanthis, University of Pittsburgh, USA -

+ +
+ +
+
+
+
+ Hellenic ACM SIGMOD Chapter Officers
- -
- - - - - - - - -
- - - - - - - - + +
- + +
- - - - - - diff --git a/about.html b/old-acm-web-files/about-old.html similarity index 88% rename from about.html rename to old-acm-web-files/about-old.html index 16ec5ca..0dbf5aa 100644 --- a/about.html +++ b/old-acm-web-files/about-old.html @@ -24,13 +24,21 @@ + - +
+
+ test +
+
+ test +
+
@@ -47,7 +55,7 @@
- +
@@ -74,16 +82,7 @@ -
- - - - - - - - - +
@@ -136,7 +135,6 @@

-
@@ -159,18 +157,6 @@

- - - - - - -
diff --git a/old-acm-web-files/contact-old.html b/old-acm-web-files/contact-old.html new file mode 100644 index 0000000..56cf5b3 --- /dev/null +++ b/old-acm-web-files/contact-old.html @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ + +
+ + + + +
+ + + +
+ + + + + +
+ + + + + + + + + + +
+

+ Feel free to contact us! +

+
+
+

+ info@acmsigmod.gr +

+

+ “Athena” Research Centre Artemidos 6 & Epidavrou, 151 25, Athens - Greece + +

+

+ +30 210 6875 300 +

+

+ +30 210 6875 485 +

+
+ + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/old-acm-web-files/founding_members-old.html b/old-acm-web-files/founding_members-old.html new file mode 100644 index 0000000..43d6384 --- /dev/null +++ b/old-acm-web-files/founding_members-old.html @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ + +
+ + + + +
+ + + +
+ + + + + +
+ + + + + + + + + + +
+

Hellenic ACM SIGMOD Chapter Founding Members

+

+

+ Yannis Ioannidis, University of Athens & ATHENA RC, Greece +

+

+ Yannis Chronis, Google +

+

+ Stratos Idreos, Harvard University +

+

+ John Paparrizos, The Ohio State University +

+

+ Theodore Dalamagas, ATHENA RC +

+

+ Timos Sellis, ATHENA RC +

+

+ Alkis Simitsis, Athena RC, Greece +

+

+ Minos Garofalakis, ATHENA RC & Technical University of Crete +

+

+ Anastasia Ailamaki, EPFL +

+

+ Manos Athanassoulis, Boston University +

+

+ Herodotos Herodotou, Cyprus University of Technology +

+

+ Kostas Stefanidis, Tampere University +

+
+ + + + + + + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/old-acm-web-files/index-backup.html b/old-acm-web-files/index-backup.html new file mode 100644 index 0000000..e904efe --- /dev/null +++ b/old-acm-web-files/index-backup.html @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ + +
+ + + + +
+ + + +
+ + + + + +
+ + + +
+ + + + +
+ + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/old-acm-web-files/index-new.html b/old-acm-web-files/index-new.html new file mode 100644 index 0000000..d3d832e --- /dev/null +++ b/old-acm-web-files/index-new.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+ + + + +
+
+
+
+ + +
+
+ +
+ + + + + + + + \ No newline at end of file diff --git a/index-old.html b/old-acm-web-files/index-old.html similarity index 99% rename from index-old.html rename to old-acm-web-files/index-old.html index cebdbed..8bb4e7f 100644 --- a/index-old.html +++ b/old-acm-web-files/index-old.html @@ -22,7 +22,7 @@ - + diff --git a/old-acm-web-files/join-old.html b/old-acm-web-files/join-old.html new file mode 100644 index 0000000..1c3a441 --- /dev/null +++ b/old-acm-web-files/join-old.html @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ + +
+ + + + +
+ + + +
+ + + + + +
+ + + + + + + + + + +
+

Join us!

+

+

+ You can join the Hellenic ACM SIGMOD Chapter by signing up on this form! +

+ +
+ + +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/old-acm-web-files/officers-old.html b/old-acm-web-files/officers-old.html new file mode 100644 index 0000000..30200a1 --- /dev/null +++ b/old-acm-web-files/officers-old.html @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + Hellenic ACM SIGMOD Chapter - Coming Soon + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+
+
+ +
+ + +
+ + + + +
+ + + +
+ + + + + +
+ + + + + + + + + + +
+

Hellenic ACM SIGMOD Chapter Officers

+

+

+ Georgia Koutrika, Athena RC +

+

+ Evaggelia Pitoura, University of Ioannina, Greece, Archimedes Unit, ATHENA RC, Greece +

+

+ Panos K. Chrysanthis, University of Pittsburgh, USA +

+
+ +
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + + + + + + + \ No newline at end of file