-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
// ShWHP - General optimization changes. // Legacy/Temp - Added a directory for temporary projects. // Robots.txt - Disallowed temp folder crawling.
- Loading branch information
1 parent
7820cb1
commit eadc3a7
Showing
12 changed files
with
327 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
.body{ | ||
min-width: 70vw; | ||
min-height: 100vh; | ||
margin: 0; | ||
} | ||
.table{ | ||
border: 4px grey ridge; | ||
} | ||
.td{ | ||
font: 1.5vw monospace; | ||
font-weight: bold; | ||
} | ||
.button{ | ||
background-image: url("un.png"); | ||
} | ||
.flag{ | ||
width: 6vw; | ||
height: 6vw; | ||
background-image: url("flag.png"); | ||
position: fixed; | ||
top: 3vw; | ||
right: 3vw; | ||
} | ||
.bg-full{ | ||
background-size: cover; | ||
} | ||
.td-unclicked{ | ||
cursor: pointer; | ||
} | ||
.td-flag{ | ||
background-image: url("flag.png"); | ||
} | ||
.td-flag2{ | ||
background-image: url("flag2.png"); | ||
} | ||
.td-1{ | ||
color: blue; | ||
} | ||
.td-2{ | ||
color: green; | ||
} | ||
.td-3{ | ||
color: red; | ||
} | ||
.td-4{ | ||
color: darkblue; | ||
} | ||
.td-5{ | ||
color: darkred; | ||
} | ||
.td-6{ | ||
color: #007e7d; | ||
} | ||
.td-7{ | ||
color: black; | ||
} | ||
.td-8{ | ||
color: slategray; | ||
} | ||
.td-bomb{ | ||
background: url("bomb.png"), url("un.png"); | ||
background-size: 60%, cover; | ||
background-repeat: no-repeat; | ||
background-position: center center, center center; | ||
} | ||
.fx{ | ||
display: flex; | ||
} | ||
.fx-center{ | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.anim-rainbow{ | ||
animation: rainbow 3s ease-in-out infinite; | ||
} | ||
@keyframes rainbow{ | ||
12.5%{ | ||
color: red !important; | ||
} | ||
25%{ | ||
color: orange; | ||
} | ||
37.5%{ | ||
color: yellow; | ||
} | ||
50%{ | ||
color: green; | ||
} | ||
62.5%{ | ||
color: blue; | ||
} | ||
75%{ | ||
color: indigo; | ||
} | ||
87.5%{ | ||
color: violet; | ||
} | ||
100%{ | ||
color: red !important; | ||
} | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.