aboutsummaryrefslogtreecommitdiff
path: root/motto/style.css
diff options
context:
space:
mode:
authorMarvin Borner2020-09-01 17:43:23 +0200
committerMarvin Borner2020-09-01 17:43:23 +0200
commit26ba56205707935f59c413202c3f91010c182d36 (patch)
treeb8652925eccc8b6e1b6376fc37255913d3d05752 /motto/style.css
parent94a0f1acd5b708e59281040132e953a11b0a9d39 (diff)
Very much good
Diffstat (limited to 'motto/style.css')
-rw-r--r--motto/style.css77
1 files changed, 0 insertions, 77 deletions
diff --git a/motto/style.css b/motto/style.css
deleted file mode 100644
index d05a562..0000000
--- a/motto/style.css
+++ /dev/null
@@ -1,77 +0,0 @@
-*,
-*:before,
-*:after {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
-}
-
-html,
-body {
- background: #ccfbfe;
- font-family: sans-serif;
- overflow: hidden;
-}
-
-.wrapper {
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- position: relative;
- opacity: 0;
- transition: opacity 0.5s ease-in-out;
-}
-
-.cards {
- flex-grow: 1;
- padding-top: 40px;
- text-align: center;
- display: flex;
- justify-content: center;
- /* align-items: flex-end; */
- z-index: 1;
-}
-
-.card {
- display: inline-block;
- width: 90vw;
- max-width: 400px;
- height: 70vh;
- background: white;
- padding-bottom: 40px;
- border-radius: 8px;
- overflow: hidden;
- position: absolute;
- will-change: transform;
- transition: all 0.3s ease-in-out;
- cursor: grab;
-}
-
-.yay_or_nay {
- position: absolute;
- bottom: 0;
- flex: 0 0 100px;
- text-align: center;
- padding-top: 20px;
- width: 100%;
-}
-
-.yay_or_nay button {
- border-radius: 50%;
- line-height: 60px;
- width: 60px;
- border: 0;
- background: white;
- display: inline-block;
- margin: 20px;
-}
-
-.yay_or_nay button:focus {
- outline: 0;
-}
-
-.yay_or_nay img {
- vertical-align: middle;
-}