diaspora/app/assets/stylesheets/popup.css.scss
Srihari Sriraman a6dc845f59 First stab at extracting a color palette
- Pulled out the existing palette in _mixins
- Took a stab at naming greys after their usage count in contexts
- Replaced #a40802 with #a80000, since they are very close and $red was already in the palette

Missed importing 'colors' in a couple of places

Removing a redefined  in favor of  in colors.css.scss

Fixing missed imports #2

Renamed $background to $background-white

Explicitly calling out the color of the background, since we have many
background colors
2013-08-28 10:25:04 +02:00

106 lines
1.5 KiB
SCSS

// Copyright (c) 2010-2011, Diaspora Inc. This file is
// licensed under the Affero General Public License version 3 or later. See
// the COPYRIGHT file.
@import "mixins";
@import "colors";
body, html{
padding: 20px;
}
body, html, header, footer, ul{
padding: 0;
margin: 0;
}
header,
footer{
width: 100%;
left: 0;
}
header{
top: 0;
}
footer{
bottom: 0;
padding: 5px 0;
color: #444;
}
header{
position: relative;
font-size: 12px;
padding-top: 8px;
padding-bottom: 0px;
font-weight: 700;
color: #fff;
vertical-align: top;
margin-bottom: 20px;
#asterisk{
position: relative;
margin-right: 3px;
top: -2px;
left: 10px;
margin-right: 14px;
}
}
footer{
position: absolute;
background-color: $background-grey;
border-top: 1px solid #ccc;
bottom: 0;
left: 0;
}
#popup-contents{
width: 700px;
text-align:center;
}
#popup-content-left,
#popup-content-right{
text-align: left;
display: inline-block;
vertical-align: top;
padding: 20px;
}
#popup-content-left{
width: 400px;
}
#popup-content-right{
width: 200px;
border-left: 3px solid #555;
text-align: center;
}
ul#requested-scopes{
padding-left: 20px;
margin-top: 5px;
li{
position: relative;
padding: 5px;
padding-left: 50px;
min-height: 40px;
margin-bottom: 15px;
}
.scope-photo{
height: 35px;
width: 35px;
left: 0;
position: absolute;
*{
max-height: 100%;
max-width: 100%;
}
}
}