Struggling with some #css #coding Doing an Option Radio checked ~ .x + .y + .z + .h etc, but it Only Activates .h !? Is there a way to get it to Show {visibility: visible; } a Form .x & it's Fields ? Do I need to do some sort of Sub Brackets ? .x{
color: #eeeeee
.y{
visibility: visible;
}.y
}.x
??????????
Struggling with some #css #coding Doing an Option Radio checked ~ .x + .y + .z + .h etc, but it Only Activates .h !? Is there a way to get it to Show {visibility: visible; } a Form .x & it's Fields ? Do I need to do some sort of Sub Brackets ? .x{
color: #eeeeee
.y{
visibility: visible;
}.y
}.x
??????????
neat, I'm OK at CSS
kbd {
border-color: black;
border-width: 3px;
border-style: outset;
border-radius: 5px;
padding: 2px;
background-color: #eeeeee;
}
My (current) #tut color-scheme
If you want it too, grab the scheme below and save it in ~/$config/tut/themes/yourthemename.ini
background=background
text=#D4BE98
subtle=#4271AE
warning-text=#D7005F
text-special-one=#969694
text-special-two=#D7005F
top-bar-background=background
top-bar-text=#EEEEEE
status-bar-background=#4271AE
status-bar-text=#EEEEEE
status-bar-view-background=background
status-bar-view-text=#D7005F
list-selected-background=#5faf5f
list-selected-text=#000000
#tut #d4be98 #4271AE #d7005f #eeeeee #5faf5f #cli #tui
@import 'application';
$color1_dark: #eeeeee; // darkest
$color5_dark: rgba(16,16,16,0.8); // white
.activity-stream {
.entry {
background: $color5_dark;
}
.status.light {
.display-name strong {
color: $color1_dark;
}
.status__content {
color: $color1_dark;
}
}
.detailed-status.light {
background: $color5_dark;
.detailed-status__display-name .display-name strong {
color: $color1_dark;
}
.status__content {
color: $color1_dark;
}
}
}
I edited the CSS for the public profile page a bit, it looks clean to make. Here is my custom.scss:
$color1_dark: #eeeeee; // darkest
$color5_dark: rgba(16,16,16,0.8); // white
@import 'application';
.activity-stream {
.entry {
background: $color5_dark;
}
.status.light {
.display-name strong {
color: $color1_dark;
}
.status__content {
color: $color1_dark;
}
}
}