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

scaled up UI 200% #161

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added img/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 21 additions & 21 deletions jetzt.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Licensed under the Apache License v2.0.
A copy of which can be found at the root of this distrubution in

A copy of which can be found at the root of this distrubution in
the file LICENSE-2.0 or at http://www.apache.org/licenses/LICENSE-2.0
*/

Expand All @@ -21,7 +21,7 @@
}

.sr-reader {
height: 100px;
height: 200px;
display: -webkit-flex;
-webkit-flex-direction: row;
display: flex;
Expand Down Expand Up @@ -53,13 +53,13 @@


.sr-reader > .sr-wrap {
min-width: 40px;
font-size: 50px;
min-width: 80px;
font-size: 100px;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 15px 5px;
line-height: 60px;
padding: 30px 10px;
line-height: 120px;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
Expand All @@ -78,16 +78,16 @@
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: 400px;
width: 800px;
position: relative;
}


.sr-reader .sr-word-box .sr-progress {
position: absolute;
bottom: -10px;
width: 400px;
height: 3px;
bottom: -20px;
width: 800px;
height: 10px;
border-left: 0px solid #CCC;
-moz-box-sizing: border-box;
box-sizing: border-box;
Expand All @@ -101,27 +101,27 @@
position: absolute;
display: none;
top: 0;
right: 4px;
font-size: 20px;
right: 8px;
font-size: 40px;
text-align: right;
}

.sr-reader .sr-word-box .sr-reticle {
position: absolute;
left: 110px;
height: 100px;
width: 10px;
border-top: 20px solid #CCC;
border-bottom: 20px solid #CCC;
left: 220px;
height: 200px;
width: 20px;
border-top: 40px solid #CCC;
border-bottom: 40px solid #CCC;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.sr-reader .sr-word-box .sr-wpm {
position: absolute;
right: 4px;
right: 8px;
bottom: 0px;
font-size: 20px;
font-size: 40px;
box-sizing: border-box;
}

Expand All @@ -134,7 +134,7 @@
}

.sr-reader .sr-word-box .sr-word > span {
font-size: 50px;
font-size: 100px;
}


Expand Down