-
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.
- Loading branch information
Showing
18 changed files
with
234 additions
and
166 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
.createUpdate { | ||
@include rounded(2px); | ||
margin: .5em 1.5%; | ||
padding: 1.5%; | ||
background-color: $os-white; | ||
h1 { | ||
font-size: $nav-head; | ||
font-weight: normal; | ||
} | ||
label, input { | ||
display: block; | ||
} | ||
fieldset { | ||
margin-bottom: 1em; | ||
} | ||
input[type="text"], input[type="date"], textarea { | ||
background-color: $os-lightgrey; | ||
// border: 1px solid $os-mediumgrey; | ||
border: none; | ||
width: 97%; | ||
padding: 8px 1.5%; | ||
height: 31px; | ||
} | ||
.duedate, .hours { | ||
width: 48.5%; | ||
float: left; | ||
} | ||
.duedate { | ||
margin-right: 3%; | ||
} | ||
button { | ||
text-transform: lowercase; | ||
font-weight: normal; | ||
font-family: $os-sans; | ||
padding: 8px 2em 8px 1em; | ||
font-size: 1em; | ||
img{ | ||
margin-right: 1em; | ||
} | ||
@include rounded(2px); | ||
} | ||
.btn-cancel { | ||
background-color: $os-red; | ||
} | ||
.btn-submit { | ||
background-color: $os-blue; | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,54 +1,54 @@ | ||
.new-project { | ||
margin:0; | ||
padding:0 0 2em 0; | ||
background-color: $os-white; | ||
h1{ | ||
margin:0; | ||
padding:8px 0 8px 15.125% ; | ||
font-family: $os-serif; | ||
font-size: $nav-head; | ||
font-weight: normal; | ||
} | ||
fieldset{ | ||
margin: 1em 3% 1em 15.125%; | ||
} | ||
label, input[type="text"], input[type="date"], textarea{ | ||
display:block; | ||
width: 100%; | ||
} | ||
input[type="text"], input[type="date"], textarea{ | ||
margin-left: -1.5%; | ||
padding: 8px 1.5%; | ||
background-color: $os-lightgrey; | ||
border:none; | ||
// @include insetshadow( 1px, 2px); | ||
} | ||
label { | ||
font-size: .9em; | ||
} | ||
button{ | ||
font-weight:bold; | ||
text-transform:uppercase; | ||
font-size: .7em; | ||
border:none; | ||
color: $os-white; | ||
background-color: $os-black; | ||
padding: 10px 20px; | ||
@include rounded( 5px); | ||
// @include shadow( 1px, 3px); | ||
&:hover{ | ||
background-color:$os-black; | ||
} | ||
&:active{ | ||
background-color:$os-black; | ||
} | ||
} | ||
.btn-cancel{ | ||
margin-left: -1.5%; | ||
background-color: $os-red; | ||
// .new-project { | ||
// margin:0; | ||
// padding:0 0 2em 0; | ||
// background-color: $os-white; | ||
// h1{ | ||
// margin:0; | ||
// padding:8px 0 8px 15.125% ; | ||
// font-family: $os-serif; | ||
// font-size: $nav-head; | ||
// font-weight: normal; | ||
// } | ||
// fieldset{ | ||
// margin: 1em 3% 1em 15.125%; | ||
// } | ||
// label, input[type="text"], input[type="date"], textarea{ | ||
// display:block; | ||
// width: 100%; | ||
// } | ||
// input[type="text"], input[type="date"], textarea{ | ||
// margin-left: -1.5%; | ||
// padding: 8px 1.5%; | ||
// background-color: $os-lightgrey; | ||
// border:none; | ||
// // @include insetshadow( 1px, 2px); | ||
// } | ||
// label { | ||
// font-size: .9em; | ||
// } | ||
// button{ | ||
// font-weight:bold; | ||
// text-transform:uppercase; | ||
// font-size: .7em; | ||
// border:none; | ||
// color: $os-white; | ||
// background-color: $os-black; | ||
// padding: 10px 20px; | ||
// @include rounded( 5px); | ||
// // @include shadow( 1px, 3px); | ||
// &:hover{ | ||
// background-color:$os-black; | ||
// } | ||
// &:active{ | ||
// background-color:$os-black; | ||
// } | ||
// } | ||
// .btn-cancel{ | ||
// margin-left: -1.5%; | ||
// background-color: $os-red; | ||
|
||
} | ||
.btn-submit{ | ||
background-color: $os-blue; | ||
} | ||
} | ||
// } | ||
// .btn-submit{ | ||
// background-color: $os-blue; | ||
// } | ||
// } |
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,5 @@ | ||
.project-details{ | ||
margin: .5em 1.5%; | ||
padding: 1.5%; | ||
background-color: $os-white; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.singletask { | ||
.task-details { | ||
background-color: $os-white; | ||
margin: .5em 1.5%; | ||
padding: 1.5%; | ||
} | ||
} |
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.
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.
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
Oops, something went wrong.