Skip to content

Commit

Permalink
Pages temporário
Browse files Browse the repository at this point in the history
  • Loading branch information
GuiBrandt committed Feb 18, 2019
1 parent 42edafc commit 52f5ac6
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Monitorador de uso de memória e tudo mais.

### Jeito recomendado

Faça download da [última release](releases) e instale usando o
Faça download da última release e instale usando o
`god-setup.exe`.

### Jeito "hipster"
Expand Down
97 changes: 97 additions & 0 deletions docs/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
* {
padding: 0;
margin: 0;
}

body {
display: flex;
min-height: 100vh;
overflow-y: auto;
flex-direction: column;
background-color: black;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
background: linear-gradient(30deg, red, cyan);
}

.banner {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding: 4rem 0 2rem 0;
color: white;
text-shadow: 0px 1px 2px #000000;
}

body::before {
position: fixed;
top: 0;
left: 0;
content: "";
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
background-attachment: fixed;
}

body * {
z-index: 1;
}

.main-content {
display: flex;
background-color: white;
flex-direction: column;
flex: 1;
align-items: center;
justify-content: flex-start;
}

.main-content .box:first-of-type {
margin-top: 0;
}

.main-content .box {
display: flex;
flex-direction: column;
border-radius: 0.125rem;
background-color: white;
margin: 2rem;
padding: 1.5rem;
/*
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
transition: ease-in-out 0.3s;
*/
}

@media only screen and (min-width: 1280px) {
.main-content .box {
width: 1024px;
}
}

@media only screen and (max-width: 1280px) {
.main-content .box {
width: 100%;
}
}

/*
.main-content .box:hover {
transition: ease-in-out 0.3s;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
transform: translateY(-2px);
}
*/

.container {
padding: 0 1rem;
}

.main-content h2 {
width: 100%;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
border-bottom: 1px solid #ddd;
}
6 changes: 6 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; https://github.com/GuiBrandt/god" />
</head>
</html>

0 comments on commit 52f5ac6

Please sign in to comment.