-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
107f417
commit 86e762c
Showing
7 changed files
with
440 additions
and
21 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,124 @@ | ||
#newFilePopup { | ||
width: 450px; | ||
position: fixed; | ||
top: calc( 50% - ( 350px / 2 ) ); | ||
left: calc( 50% - ( 450px / 2 ) ); | ||
border: 1px solid #42ba92; | ||
border-radius: 5px; | ||
padding: 10px; | ||
background-color: #42ba92; | ||
color: white; | ||
text-align: center; | ||
display: none; | ||
font-family: "Source Sans Pro", sans-serif; | ||
z-index: 4; | ||
.content { | ||
margin-bottom: 10px; | ||
padding: 0 25px; | ||
} | ||
&.error { | ||
#fileNameContainer { | ||
border-color: #F45; | ||
} | ||
#createFileName { | ||
background: #aaa !important; | ||
border-color: #aaa; | ||
color: #ddd; | ||
cursor: default; | ||
} | ||
.errorBox { | ||
opacity: 1; | ||
max-height: 500px; | ||
} | ||
} | ||
} | ||
|
||
.errorBox { | ||
margin: 0; | ||
text-align: left; | ||
font-size: 70%; | ||
color: #A00; | ||
display: inline-block; | ||
overflow: hidden; | ||
opacity: 0; | ||
max-height: 1px; | ||
transition: .4s all; | ||
} | ||
|
||
#fileNameContainer { | ||
display: inline-block; | ||
width: 100%; | ||
padding: 5px 0; | ||
//padding-left: 47px; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
text-align: center; | ||
font-family: "Source Sans Pro", sans-serif; | ||
font-size: 16pt; | ||
background: rgba(0, 0, 0, 0.1); | ||
border-radius: 5px; | ||
white-space: nowrap; | ||
border: 1px solid transparent; | ||
transition: .4s border-color; | ||
} | ||
#fileName { | ||
min-width: 10px; | ||
display: inline-block; | ||
color: white; | ||
outline: none !important; | ||
} | ||
#fileExtension { | ||
color: #FA8; | ||
} | ||
|
||
.fileTypeButtons { | ||
display:flex; | ||
justify-content: space-between; | ||
align-content: center; | ||
} | ||
.fileTypeButton { | ||
display: inline-block; | ||
width: 100px; | ||
height: 100px; | ||
margin: 10px 0; | ||
padding: 10px; | ||
border: 1px solid coral; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
line-height: 100px; | ||
text-align: center; | ||
background-color: coral; | ||
cursor: pointer; | ||
&:hover { | ||
background: #FA8; | ||
} | ||
&.checked { | ||
box-shadow: inset 0 0 0 5px white; | ||
} | ||
&.disabled { | ||
background: #aaa !important; | ||
border-color: #aaa; | ||
color: #ddd; | ||
cursor: default; | ||
} | ||
} | ||
|
||
.newFileFooter { | ||
background: rgba(0, 0, 0, 0.1); | ||
padding: 5px; | ||
border-bottom-left-radius: 5px; | ||
border-bottom-right-radius: 5px | ||
} | ||
.newFileFooter-button { | ||
border: 1px solid coral; | ||
border-radius: 5px; | ||
display: inline-block; | ||
background-color: coral; | ||
padding: 5px 10px; | ||
margin: 0 2px; | ||
cursor:pointer; | ||
transition: all .4s; | ||
&:hover { | ||
background: #FA8; | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.