summaryrefslogtreecommitdiff
path: root/res/css/partials/info-card.scss
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-12-16 17:37:42 +0200
committerAlon Levy <alon@pobox.com>2014-12-16 17:37:42 +0200
commitade19de410e0a789a921ec1666b278b2a64176d6 (patch)
treec4c54b106de93609ca7bb70a20fd4be696715dbe /res/css/partials/info-card.scss
parentc7d026b1d504323a8c61d51b726e5e8d2337fc4b (diff)
moving files around after repository merger
Diffstat (limited to 'res/css/partials/info-card.scss')
-rw-r--r--res/css/partials/info-card.scss130
1 files changed, 0 insertions, 130 deletions
diff --git a/res/css/partials/info-card.scss b/res/css/partials/info-card.scss
deleted file mode 100644
index 2b8efe20..00000000
--- a/res/css/partials/info-card.scss
+++ /dev/null
@@ -1,130 +0,0 @@
-@import '../modules/mixins'; // For box-shadow and box-sizing
-
-.info-container {
- position: absolute;
- right: $doc-margin;
- top: $two-baselines;
-}
-
-.subtitle{
- font-style:italic;
- color: #bbb;
- font-size: 12px;
- float:right;
-}
-
-.edge_info, .info {
- color: $dark-grey;
- background-color: white;
- @include rz-box-shadow(0px, 1px, 6px, 0px, rgba(0,0,0,0.3) );
- position: relative;
- width:250px;
- padding: 24px;
- @include rz-box-sizing-border;
- border-top: 6px solid $dark-grey;
-}
-
-// change card top border color by node type
-.info.type-person {
- border-top: 6px solid $blue;
-}
-
-.info.type-club {
- border-top: 6px solid $magenta;
-}
-
-.info.type-skill {
- border-top: 6px solid $yellow;
-}
-
-.info.type-third-internship-proposal {
- border-top: 6px solid $cyan;
-}
-
-.info.type-internship {
- border-top: 6px solid $orange;
-}
-
-.info.type-interest {
- border-top: 6px solid $purple;
-}
-
-.info.type-empty {
- border-top: 6px solid $mid-grey;
-}
-
-.info.type-chainlink {
- border-top: 6px solid $dark-grey;
-}
-
-.info.type-project {
- border-top: 6px solid $green;
-}
-
-// card elements styles
-
-.info .info-card-attr {
- display: block;
- text-transform: capitalize;
- font-size: $h4-size;
- font-family: $bold-font-family;
-}
-
-.info .info-card-attr-val {
- display: block;
- text-transform: capitalize;
- font-size: $h2-size;
- margin: 12px 0px 24px 0px;
-}
-
-.info-card-attr-val input{
- width: 100%;
- font-size: $h2-size;
-}
-
-.info-card-url input{
- font-size: $h4-size;
- margin-left: 20px;
-}
-
-.info-card-url:before { //url icon before the url line
- position: absolute;
- margin-top: 7px;
- content: "";
- background: url(../img/url-icon.png);
- min-width: 14px;
- min-height: 14px;
- background-position: center;
- background-repeat: no-repeat;
-}
-
-.select-dropdown {
- border: none;
- font-family: $base-font-family;
- background-color: white;
- font-size: $h3-size;
- color: $dark-grey;
- width: 100%;
- padding: 0;
- margin: 12px 0px 24px 0px;
-}
-
-.select-dropdown:focus {
- outline: none;
-}
-
-.select-dropdown option{
- font-size: $h3-size;
- color: $dark-grey;
- border: 1px solid $dark-grey;
-}
-
-.info hr {
- width: 250px;
- position: relative;
- left: -24px;
- border: none;
- background-color: $mid-light-grey;
- height: 2px;
- margin: $two-baselines 0px $two-baselines 0px;
-} \ No newline at end of file