Skip to content

Commit

Permalink
rename reject
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Oct 6, 2023
1 parent 0cf9f6d commit 20e40e3
Show file tree
Hide file tree
Showing 21 changed files with 1,288 additions and 1,394 deletions.
109 changes: 0 additions & 109 deletions .circleci/config.yml

This file was deleted.

62 changes: 31 additions & 31 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
{
"env": {
"node": true,
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": 0,
"no-process-env": 0
}
"env": {
"node": true,
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": 0,
"no-process-env": 0
}
}
30 changes: 15 additions & 15 deletions public/flip.css
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
.flip-container {
-webkit-perspective: 1000;
position: relative;
height: 100%;
-webkit-perspective: 1000;
position: relative;
height: 100%;
}

.flip-container .flip-body.flipped {
-webkit-transform: rotatey(360deg);
-webkit-transform: rotatey(360deg);
}

.flip-container .flip-body {
-webkit-transform-style: preserve-3d;
-webkit-transition: 1s;
height: 100%;
width: 100%;
-webkit-transform-style: preserve-3d;
-webkit-transition: 1s;
height: 100%;
width: 100%;
}

.flip-container .flip-body .face {
-webkit-backface-visibility: hidden;
height: 100%;
position: absolute;
text-align: center;
width: 100%;
z-index: 2;
-webkit-backface-visibility: hidden;
height: 100%;
position: absolute;
text-align: center;
width: 100%;
z-index: 2;
}

.flip-container .flip-body .back {
-webkit-transform: rotatey(-180deg);
-webkit-transform: rotatey(-180deg);
}
8 changes: 4 additions & 4 deletions public/flip.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// });

function flip() {
document.querySelector('.flip-body').classList.add('flipped');
setTimeout(function () {
document.querySelector('.flip-body').classList.remove('flipped');
}, 1000);
document.querySelector('.flip-body').classList.add('flipped');
setTimeout(function () {
document.querySelector('.flip-body').classList.remove('flipped');
}, 1000);
}
Binary file added public/images/dr-logo-community-races.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/dr-logo-underground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 25 additions & 25 deletions public/index.css
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
* {
margin: 0;
padding: 0;
margin: 0;
padding: 0;
}

html {
background: #111;
color: #eee;
font-family: Menlo, Noto Mono;
background: #111;
color: #eee;
font-family: Menlo, Noto Mono;
}

figure {
display: block;
margin-block-end: 1em;
margin-block-start: 1em;
margin-inline-end: 40px;
margin-inline-start: 40px;
display: block;
margin-block-end: 1em;
margin-block-start: 1em;
margin-inline-end: 40px;
margin-inline-start: 40px;
}

footer {
height: 100px;
height: 100px;
}

div {
display: block;
display: block;
}

a {
text-decoration: none;
text-decoration: none;
}

.lb-logo {
display: block;
height: 500px;
line-height: 0;
margin: 50px 0;
overflow: hidden;
text-align: center;
display: block;
height: 500px;
line-height: 0;
margin: 50px 0;
overflow: hidden;
text-align: center;
}

.lb-logo-front,
.lb-logo-back {
height: 100%;
height: 100%;
}

.lb-logo-front img,
.lb-logo-back img {
height: 100%;
height: 100%;
}

.lb-title {
height: 30px;
margin-bottom: 30px;
margin-top: 30px;
text-align: center;
height: 30px;
margin-bottom: 30px;
margin-top: 30px;
text-align: center;
}
Loading

0 comments on commit 20e40e3

Please sign in to comment.