|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <meta name="description" content="Python's Google Summer of Code Page"> |
| 8 | + <title>Python GSoC – Splash</title> |
| 9 | + |
| 10 | + |
| 11 | + <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-" |
| 12 | + crossorigin="anonymous"> |
| 13 | + |
| 14 | + <!--[if lte IE 8]> |
| 15 | + <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-old-ie-min.css"> |
| 16 | + <![endif]--> |
| 17 | + <!--[if gt IE 8]><!--> |
| 18 | + <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css"> |
| 19 | + <!--<![endif]--> |
| 20 | + |
| 21 | + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" |
| 22 | + integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> |
| 23 | + |
| 24 | + <!--[if lte IE 8]> |
| 25 | + <link rel="stylesheet" href="css/side-menu-old-ie.css"> |
| 26 | + <![endif]--> |
| 27 | + <!--[if gt IE 8]><!--> |
| 28 | + <link rel="stylesheet" href="css/side-menu.css"> |
| 29 | + <!--<![endif]--> |
| 30 | + <link rel="stylesheet" href="css/python-gsoc.css"> |
| 31 | + |
| 32 | +</head> |
| 33 | + |
| 34 | +<body> |
| 35 | + |
| 36 | + <!-- Menu toggle --> |
| 37 | + <a href="#menu" id="menuLink" class="menu-link"> |
| 38 | + <!-- Hamburger icon --> |
| 39 | + <span></span> |
| 40 | + </a> |
| 41 | + |
| 42 | + <div id="layout"> |
| 43 | + <div id="menu"> |
| 44 | + <div class="pure-menu"> |
| 45 | + <a class="pure-menu-heading" href="http://python-gsoc.org">Python GSoC</a> |
| 46 | + |
| 47 | + <ul class="pure-menu-list"> |
| 48 | + <li class="pure-menu-item"><a href="index.html#gettingstarted" class="pure-menu-link">Getting |
| 49 | + Started</a> |
| 50 | + </li> |
| 51 | + <li class="pure-menu-item"><a href="index.html#ideas" class="pure-menu-link">Project Ideas</a></li> |
| 52 | + <li class="pure-menu-item"><a href="deadlines.html" class="pure-menu-link">Deadlines</a></li> |
| 53 | + <li class="pure-menu-item"><a href="contributors.html" class="pure-menu-link">Contributors</a></li> |
| 54 | + <li class="pure-menu-item"><a href="mentors.html" class="pure-menu-link">Mentors</a></li> |
| 55 | + <li class="pure-menu-item"><a href="mentors.html#sub-orgs" class="pure-menu-link">Sub-orgs</a></li> |
| 56 | + <li class="pure-menu-item"><a href="contributors.html#faq" class="pure-menu-link">FAQ</a></li> |
| 57 | + <li class="pure-menu-item"><a href="https://blogs.python-gsoc.org/en/" |
| 58 | + class="pure-menu-link">Blogs</a></li> |
| 59 | + <li class="pure-menu-item"><a href="index.html#contact" class="pure-menu-link">Contact</a></li> |
| 60 | + </ul> |
| 61 | + </div> |
| 62 | + </div> <!-- menu --> |
| 63 | + <div class="content"> |
| 64 | + <div class="pure-u-1 pure-u-md-1-1 pure-u-lg-1-1"> |
| 65 | + <h2 class="content-head content-head is-center">What is it?</h2> |
| 66 | + <p>Content goes here</p> |
| 67 | + </div> |
| 68 | + </div> <!-- content --> |
| 69 | + </div> |
| 70 | + <script src="js/ui.js"></script> |
| 71 | + |
| 72 | + <style> |
| 73 | + .modalDialog { |
| 74 | + position: fixed; |
| 75 | + font-family: Arial, Helvetica, sans-serif; |
| 76 | + top: 0; |
| 77 | + right: 0; |
| 78 | + bottom: 0; |
| 79 | + left: 0; |
| 80 | + background: rgba(0, 0, 0, 0.8); |
| 81 | + z-index: 99999; |
| 82 | + opacity: 0; |
| 83 | + -webkit-transition: opacity 400ms ease-in; |
| 84 | + -moz-transition: opacity 400ms ease-in; |
| 85 | + transition: opacity 400ms ease-in; |
| 86 | + pointer-events: none; |
| 87 | + } |
| 88 | + .modalDialog:target { |
| 89 | + opacity: 1; |
| 90 | + pointer-events: auto; |
| 91 | + } |
| 92 | + .modalDialog > div { |
| 93 | + width: 400px; |
| 94 | + position: relative; |
| 95 | + margin: 10% auto; |
| 96 | + padding: 5px 20px 13px 20px; |
| 97 | + border-radius: 10px; |
| 98 | + background: #fff; |
| 99 | + background: -moz-linear-gradient(#fff, #999); |
| 100 | + background: -webkit-linear-gradient(#fff, #999); |
| 101 | + background: -o-linear-gradient(#fff, #999); |
| 102 | + } |
| 103 | + .close { |
| 104 | + background: #606061; |
| 105 | + color: #ffffff; |
| 106 | + line-height: 25px; |
| 107 | + position: absolute; |
| 108 | + right: -12px; |
| 109 | + text-align: center; |
| 110 | + top: -10px; |
| 111 | + width: 24px; |
| 112 | + text-decoration: none; |
| 113 | + font-weight: bold; |
| 114 | + -webkit-border-radius: 12px; |
| 115 | + -moz-border-radius: 12px; |
| 116 | + border-radius: 12px; |
| 117 | + -moz-box-shadow: 1px 1px 3px #000; |
| 118 | + -webkit-box-shadow: 1px 1px 3px #000; |
| 119 | + box-shadow: 1px 1px 3px #000; |
| 120 | + } |
| 121 | + .close:hover { |
| 122 | + background: #00d9ff; |
| 123 | + } |
| 124 | + </style> |
| 125 | + |
| 126 | + <div id="openModal" class="modalDialog"> |
| 127 | + <div> |
| 128 | + <a href="#close" title="Close" class="close">X</a> |
| 129 | + <h2>Archived</h2> |
| 130 | + <p> |
| 131 | + This site has been archived, go to |
| 132 | + <a target="_blank" href="https://python-gsoc.org/">this link</a> to find |
| 133 | + more about the latest GSoC program. |
| 134 | + </p> |
| 135 | + </div> |
| 136 | + </div> |
| 137 | + |
| 138 | + <script> |
| 139 | + let tokens = String(window.location).split("#"); |
| 140 | + if ( |
| 141 | + tokens.length === 1 && |
| 142 | + tokens[1] !== "openModal" && |
| 143 | + tokens[1] !== "close" |
| 144 | + ) { |
| 145 | + window.location = window.location + "#openModal"; |
| 146 | + } |
| 147 | + </script> |
| 148 | + </body> |
| 149 | + |
| 150 | + |
| 151 | +</html> |
0 commit comments