Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mobile compatibility #4

Merged
merged 1 commit into from Jul 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion css/index.css
Expand Up @@ -2,7 +2,6 @@ body, html {
margin: 0;
color: white;
background-color: #1E1E1E;
height: 100%
}

.overlay {
Expand Down Expand Up @@ -64,11 +63,15 @@ body, html {
}
}


@media only screen and (max-width: 768px) {
.vertical {
display: none;
}
.consolas {
font-size: inherit
}
.content {
margin-top: 8rem !important;
}
}
52 changes: 27 additions & 25 deletions index.html
Expand Up @@ -15,31 +15,33 @@
</head>

<body>
<div class="overlay text-center">
<img class="img-responsive align-middle loading-img" src="images/graphenex_logo.png" alt="logo" height="200" width="200">
</div>
<div class="text-center mt-2" data-aos="zoom-in">
<h1 style="color: #CCCCCC; font-size: 20px">~ grapheneX ~</h1>
</div>
<div class="text-center mt-3 mt-sm-3 mr-4 ml-4">
<img class="img-fluid rounded deep-like" src="images/banner.gif" alt="banner" data-aos="zoom-in">
</div>
<div class="d-flex justify-content-center mt-3" data-aos="fade-up">
<a href="https://github.com/grapheneX">
<div class="btn btn-ghost-dark ghico">
<i class="fab fa-github"></i> GitHub
</div>
</a>
<a href="https://pypi.org/project/graphenex/">
<div class="btn btn-ghost-dark pyico">
<i class="fab fa-python"></i> PyPI
</div>
</a>
<a href="https://twitter.com/grapheneX_">
<div class="btn btn-ghost-dark twico">
<i class="fab fa-twitter"></i> Twitter
</div>
</a>
<div class="mt-5 mt-sm-0 content">
<div class="overlay text-center">
<img class="img-responsive align-middle loading-img" src="images/graphenex_logo.png" alt="logo" height="200" width="200">
</div>
<div class="text-center mt-2" data-aos="zoom-in">
<h1 style="color: #CCCCCC; font-size: 20px">~ grapheneX ~</h1>
</div>
<div class="text-center mt-3 mt-sm-3 mr-4 ml-4">
<img class="img-fluid rounded deep-like" src="images/banner.gif" alt="banner" data-aos="zoom-in">
</div>
<div class="d-flex justify-content-center mt-3" data-aos="fade-up">
<a href="https://github.com/grapheneX">
<div class="btn btn-ghost-dark ghico">
<i class="fab fa-github"></i> GitHub
</div>
</a>
<a href="https://pypi.org/project/graphenex/">
<div class="btn btn-ghost-dark pyico">
<i class="fab fa-python"></i> PyPI
</div>
</a>
<a href="https://twitter.com/grapheneX_">
<div class="btn btn-ghost-dark twico">
<i class="fab fa-twitter"></i> Twitter
</div>
</a>
</div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
Expand Down