summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/app/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/app/layouts')
-rw-r--r--app/assets/stylesheets/app/layouts/_app.scss24
-rw-r--r--app/assets/stylesheets/app/layouts/_conference.scss136
-rw-r--r--app/assets/stylesheets/app/layouts/_phone-book-entry.scss176
3 files changed, 0 insertions, 336 deletions
diff --git a/app/assets/stylesheets/app/layouts/_app.scss b/app/assets/stylesheets/app/layouts/_app.scss
deleted file mode 100644
index abbe8b1..0000000
--- a/app/assets/stylesheets/app/layouts/_app.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-// Application Layout
-// ----------------------------------------
-// TODO: This generates huge selectors..
-.app {
-
- #main {
- @include center-container(1000px, 0, 0 8px);
- @include clearfix;
- @include debug(gray);
- }
-
- $sidebar: 215px;
- $content: 758px;
-
- .container {
- & > aside {
- @include float(left, $sidebar, green);
- }
-
- & > .content {
- @include float(right, $content, blue);
- }
- }
-} \ No newline at end of file
diff --git a/app/assets/stylesheets/app/layouts/_conference.scss b/app/assets/stylesheets/app/layouts/_conference.scss
deleted file mode 100644
index 18fb232..0000000
--- a/app/assets/stylesheets/app/layouts/_conference.scss
+++ /dev/null
@@ -1,136 +0,0 @@
-// Conference
-// ----------------------------------------
-
-// The Usual Box with Mute, Cross
-.actor {
- @include clearfix;
- @include gradient(#FDFDFD, #EFEFEF);
- @include size(auto, 50px,6px, 1px 0 1px 0);
- border-bottom:1px solid #E3E3E8;
- border-top:1px solid #FFF;
- img {
- @extend .ext-bradius-inner;
- float:left;
- margin-right:6px;
- }
- .info {
- .name {
- display:block;
- font-size:size(15px);
- width:188px;
- }
- .status {
- color:#818181;
- }
- float:left;
- }
- .voice-actions {
- float:right;
- }
-}
-
-// Audio Controls.
-.voice-actions {
- padding:10px 0;
- text-align:right;
- width:100px;
- .make.speaker {
- @include image-replace('icons/microphone-16x.png');
- display:inline-block;
- }
- .make.listener {
- @include image-replace('icons/headphones-16x.png');
- display:inline-block;
- }
-
- .voice {
- &.muted {
- @include image-replace('icons/mute-16x.png');
- display:inline-block;
- }
- &.unmuted {
- @include image-replace('icons/unmute-16x.png');
- display:inline-block;
- }
- }
- .remove {
- @include image-replace('icons/cross-16x.png');
- display:inline-block;
- }
- a {
- margin:0 5px;
- opacity:0.6;
- &:hover { opacity:1.0;}
- }
-}
-
-
-.conference {
- @include pie-clearfix();
- .panel {
- @include box-shadow(1px 1px 0px #FFF inset, 1px 1px 1px #EDEDED);
- background:#F7F7F7;
- border:1px solid #E3E3E8;
- float:left;
- margin: 0 10px;
- width: 303px;
- &.speakers {
- header { @include gradient(#FFF, #F3F3DE); }
- h3 { background:transparent image-url('icons/microphone-32x.png') left top no-repeat; }
- }
- &.listeners {
- header { @include gradient(#FFF, #DCEAF2); }
- h3 { background:transparent image-url('icons/headphones-32x.png') left top no-repeat; }
- }
- &.log {
- header { @include gradient(#FFF, #E7E7E7); }
- h3 { background:transparent image-url('icons/clock-32x.png') left top no-repeat; }
- }
- }
- .first { margin-left:0;}
- .last { margin-right:0;}
- header {
- @include box-shadow(1px 1px 0px #FFF inset, 0px 1px 0px #FFF);
- border-bottom:1px solid #E3E3E8;
- padding:10px;
- }
- h3 {
- font-size:size(24px);
- font-weight:normal;
- margin:0;
- opacity:0.8;
- padding:2px 2px 2px 43px;
- }
- .message {
- @include gradient( #EEEEEE, #fff);
- border-bottom:1px solid #E3E3E8;
- padding:10px;
- input {
- @include input-effects;
- @include size(283px, auto, 5px, 1px solid #E3E3E8 );
- color:#696969;
- }
- }
- .actors, .messages {
- height:290px; // This should be X times the amount of items
- overflow:auto;
- }
-}
-
-.log {
- .messages {
- color:#484848;
- div {
- background:#FFF;
- border-bottom:1px solid #E3E3E8;
- border-top:1px solid #FFF;
- padding:5px 10px;
- }
- .status {
- background:#F5F5F5;
- }
- .name {
- font-weight:bold;
- }
- }
-} \ No newline at end of file
diff --git a/app/assets/stylesheets/app/layouts/_phone-book-entry.scss b/app/assets/stylesheets/app/layouts/_phone-book-entry.scss
deleted file mode 100644
index f9e2345..0000000
--- a/app/assets/stylesheets/app/layouts/_phone-book-entry.scss
+++ /dev/null
@@ -1,176 +0,0 @@
-// Phone Book Entry Show
-// ----------------------------------------
-// Icons: http://www.iconfinder.com/search/?q=iconset%3Acc_mono_icon_set
-//http://www.iconfinder.com/search/?q=iconset%3AHelveticons_Social
-section.phone-book-entry {
- @include clearfix;
- a {
- @include link-colors(#49494D, $link-color);
- }
- .sidebar {
- @include size(220px, auto, none, 0 1px 0 0);
- border-right:1px solid #E3E3E8;
- float:left;
- }
- .content {
- float:right;
- width:716px;
-
- }
-
- .username {
- font-size: 46px;
- font-weight:normal;
- margin: 0 0 10px 0;
- }
- .personal {
- margin-top:5px;
- span {
- margin-right:10px;
- padding-left:22px;
- }
- .nickname {
- background:transparent image-url('icons/user-16x.png') left 1px no-repeat;
- }
- .birthday {
- background:transparent image-url('icons/star-16x.png') left -1px no-repeat;;
- }
- }
-
- .work {
- font-size: 18px;
- }
-
- .tags {
- background:transparent image-url('icons/tag-16x.png') left 0px no-repeat;
- margin-top:10px;
- padding-left:22px;
- }
-
-
- .activity {
- & > h2 {
- font-size: 27px;
- font-weight: normal;
- }
- textarea {
- border-color: #E3E3E8;
- height: 15px;
- padding: 12px;
- width: 689px;
- }
- .entry {
- @include clearfix;
- background-position: 12px 9px;
- border-bottom: 1px solid #E3E3E8;
- font-size: 16px;
-
- padding: 12px 0px 15px 55px;
- .motive {
-
- display: block;
- float: left;
- line-height: 25px;
- width: 529px;
-
- }
- .timestamp {
- color: #929298;
- float: right;
- font-size: 12px;
- line-height: 26px;
- }
- }
- }
-
-
- // Icons
- .home {
- background:transparent image-url('icons/house-32x.png') left 2px no-repeat;
- }
- .office {
- background:transparent image-url('icons/suitcase-32x.png') left 2px no-repeat;
- }
- .cellphone {
- background:transparent image-url('icons/phone-mobile-32x.png') left 2px no-repeat;
- }
- .phone {
- background:transparent image-url('icons/phone-up-32x.png') left 2px no-repeat;
- }
- .phone-down {
- background:transparent image-url('icons/phone-down-32x.png') left 2px no-repeat;
- }
- .fax {
- background:transparent image-url('icons/fax-32x.png') left 2px no-repeat;
- }
- .skype {
- background:transparent image-url('icons/skype-32x.png') left 2px no-repeat;
- }
- .twitter {
- background:transparent image-url('icons/twitter-32x.png') left 2px no-repeat;
- }
- .voice-message {
- background:transparent image-url('icons/mic-32x.png') left 2px no-repeat;
- }
-
-
-
- .comment {
- @include clearfix;
- border-bottom:1px solid #E3E3E8;
- padding: 11px;
- .display {
- float:left;
- overflow:hidden;
- }
- .info {
- margin-bottom:4px;
- }
- .info,.body {
- padding-left:47px;
- }
- .commenter {
- font-size: 17px;
- font-weight: bold;
- }
- .time {
- color:#929298;
- }
- .info {
- display:block;
- }
- }
-
-
- .display {
- @include border-radius(10px 0 10px 0);
- }
- .description {
- margin:10px 0;
- }
- .widget {
- border-top:1px solid #E3E3E8;
- padding:23px 0;
- width:200px; // Width of the image
- div {
- margin:10px 0;
- padding-left:51px;
- a {
- color:#4B4B4B;
- display:block;
- font-size:size(17px);
- font-weight:bold;
- }
- span {
- color:#E3E3E8;
- font-size:size(12px);
- }
- }
-
- &.adresses {
- strong {
- display:block;
- }
- }
- }
-} \ No newline at end of file