-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Max Steenbergen <max.steenbergen@imtechmarine.com>
- Loading branch information
Max Steenbergen
committed
Jun 13, 2014
1 parent
89e1a54
commit f1ede28
Showing
20 changed files
with
159 additions
and
25 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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,142 @@ | ||
body{ | ||
background-image: -o-linear-gradient(45deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -moz-linear-gradient(45deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -webkit-linear-gradient(45deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -ms-linear-gradient(45deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: linear-gradient(135deg, #1A658D 0%, #6CBFDA 100%); | ||
background-attachment: fixed; | ||
text-align: center; | ||
} | ||
|
||
h1, h2, span{ | ||
font-family: Avenir; | ||
color: hsla(200,100%,90%,1); | ||
text-align: center; | ||
font-size: 2.5em; | ||
margin-top: 50px; | ||
} | ||
h2{ | ||
font-size: 1.6em; | ||
font-weight: normal; | ||
margin-top: 0px; | ||
} | ||
span{ | ||
font-size: 1em; | ||
margin: 13px; | ||
} | ||
|
||
#codeExportTextarea, #container{ | ||
width: 800px; | ||
height: 600px; | ||
position: absolute; | ||
left: 50%; | ||
margin-left: -400px; | ||
top: 150px; | ||
} | ||
|
||
#codeExportTextarea{ | ||
box-sizing: border-box; | ||
resize: none; | ||
border: none; | ||
background-color: hsla(200,100%,1%,0.4); | ||
padding: 50px; | ||
font-family: Courier; | ||
font-size: 16px; | ||
color: hsla(200,100%,90%,1); | ||
display: none; | ||
outline: none; | ||
} | ||
|
||
#triggerHTMLCode, #triggerCSSCode, #triggerInfo{ | ||
margin: 0 auto; | ||
margin-top: 675px; | ||
padding: 0 25px 0 25px; | ||
margin-bottom: 10px; | ||
opacity: 0.6 | ||
} | ||
|
||
#splitControls img{ | ||
margin: 15px 5px; | ||
opacity: 0.7 | ||
} | ||
|
||
#optionsModal{ | ||
box-sizing: border-box; | ||
width: 150px; | ||
position: absolute; | ||
z-index: 99999; | ||
border: 1px solid hsla(100, 100%, 100%, 0.6); | ||
box-shadow: 0 0 10px rgba(0,0,0,0.3); | ||
padding: 10px; | ||
border-radius: 10px; | ||
background-color: hsla(100, 100%, 100%, 0.5); | ||
margin: 15px | ||
} | ||
|
||
::-webkit-input-placeholder { color:hsla(200,100%,90%,1); } | ||
::-moz-placeholder { color:hsla(200,100%,90%,1); } /* firefox 19+ */ | ||
:-ms-input-placeholder { color:hsla(200,100%,90%,1); } /* ie */ | ||
input:-moz-placeholder { color:hsla(200,100%,90%,1); } | ||
|
||
#optionsModal input{ | ||
width: 110px; | ||
height: 30px; | ||
-webkit-appearance: none; | ||
appearance: none; | ||
border: none; | ||
border-bottom: 2px solid hsla(200,100%,90%,1); | ||
border-right: 2px solid hsla(200,100%,90%,1); | ||
padding-right: 5px; | ||
background: none; | ||
margin-top: 10px; | ||
font-family: Avenir; | ||
color: hsla(200,100%,10%,1); | ||
font-size: 1em; | ||
text-align: right; | ||
outline: none; | ||
} | ||
|
||
#optionsModal button{ | ||
float: right; | ||
margin: 5px; | ||
font-family: Avenir; | ||
font-size: 1.05em; | ||
font-weight: bold; | ||
color: hsla(200,100%,100%,0.8); | ||
text-shadow: 0 -1px hsla(200,100%,0%,0.3); | ||
padding: 5px 15px; | ||
-webkit-appearance: none; | ||
appearance: none; | ||
border: none; | ||
box-shadow: 0 0 0 1px hsla(100,100%,100%,0.2) inset, 0 0 0 1px hsla(200,100%,0%,0.1); | ||
border-radius: 5px; | ||
background-image: -o-linear-gradient(0deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -moz-linear-gradient(0deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -webkit-linear-gradient(0deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: -ms-linear-gradient(0deg, #1A658D 0%, #6CBFDA 100%); | ||
background-image: linear-gradient(0deg, #1A658D 0%, #6CBFDA 100%); | ||
} | ||
|
||
section{ | ||
outline: 1px solid hsla(200,100%,90%,0.2); | ||
background-color: hsla(200,100%,1%,0.1); | ||
} | ||
|
||
footer{ | ||
box-sizing: border-box; | ||
text-align: center; | ||
margin-top: 50px; | ||
width: 100%; | ||
height: 40px; | ||
padding: 15px; | ||
background-color: hsla(200,100%,90%,0.3); | ||
outline: 1px solid hsla(200,100%,90%,0.6); | ||
font-family: Avenir; | ||
color: hsla(200,100%,100%,0.8); | ||
} | ||
|
||
footer a{ | ||
font-weight: bold; | ||
color: hsla(200,100%,100%,1); | ||
text-decoration: none; | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
File renamed without changes.
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 was deleted.
Oops, something went wrong.