bondage-college-mirr/BondageClub/CSS/Styles.css
SandrineBC 0fb9b7a073
Fix: Remove background colour from activity messages for sensory deprivation (#1340)
* Removed bg colour from activities for senDep

* Changed to the use of css

* typo corrected
2020-08-31 13:20:18 -04:00

174 lines
No EOL
3.5 KiB
CSS

canvas {
padding: 0;
margin: auto;
outline: none;
display: block;
top:0;
bottom: 0;
left: 0;
right: 0;
position: absolute;
}
TextArea {
resize: none;
}
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }
#TextAreaChatLog {
background-color: white;
border: 1px solid black;
overflow: auto;
word-wrap: break-word;
padding: 0 !important;
}
.ChatMessage {
position: relative;
padding-left: 0.4em;
}
.ChatMessage::before {
content: attr(data-time);
float: right;
color: gray;
font-style: italic;
font-size: 0.5em;
margin-right: 0.2em;
}
.ChatMessage::after {
content: attr(data-sender);
position: absolute;
color: gray;
font-size: 0.3em;
top: 1.6em;
right: 0.2em;
}
.ChatMessageName {
text-shadow: 0.05em 0.05em black;
}
.ChatMessageAction, .ChatMessageActivity{
color: gray;
}
.ChatMessageEmote {
color: gray;
font-style: italic;
}
.ChatMessageWhisper {
font-style: italic;
color: silver;
}
#TextAreaChatLog[data-colortheme=dark] {
background-color: #111;
color: #eee;
}
#TextAreaChatLog[data-colortheme=dark] .ChatMessageName {
text-shadow: 0.05em 0.05em #eee;
}
#TextAreaChatLog[data-colortheme=dark] .ChatMessageWhisper {
color: #555;
}
#TextAreaChatLog[data-enterleave=smaller] .ChatMessageEnterLeave {
font-size: 0.5em;
text-align: center;
}
#TextAreaChatLog[data-enterleave=hidden] .ChatMessageEnterLeave {
display: none;
}
#TextAreaChatLog[data-membernumbers=never] .ChatMessage::after,
#TextAreaChatLog[data-membernumbers=onmouseover] .ChatMessage::after {
display: none;
}
#TextAreaChatLog[data-membernumbers=onmouseover] .ChatMessage:hover::after {
display: block;
}
#TextAreaChatLog[data-displaytimestamps=false] .ChatMessage::before {
display: none;
}
#TextAreaChatLog[data-displaytimestamps=false] .ChatMessage::after {
top: 0;
}
#TextAreaChatLog[data-colornames=false] .ChatMessageName {
color: inherit !important;
text-shadow: none;
font-weight: bold;
}
#TextAreaChatLog[data-coloractions=false] .ChatMessageAction,
#TextAreaChatLog[data-coloremotes=false] .ChatMessageEmote,
#TextAreaChatLog[data-coloractivities=false] .ChatMessageActivity {
background-color: transparent !important;
}
#FriendList {
border: 2px solid white;
overflow: auto;
word-wrap: break-word;
padding: 0 !important;
padding-bottom: 1% !important;
}
.FriendListRow{
color: white;
}
.FriendListRow:Hover{
color: yellow;
}
.FriendListFirstColumn{
clear: left;
}
.FriendListTextColumn{
float: left;
width: 22%;
text-align: center;
padding-top: 1% !important;
}
.FriendListLinkColumn{
float: left;
width: 22%;
text-align: center;
padding-top: 1% !important;
text-decoration: underline;
cursor: pointer;
}
.FriendListLinkColumn:Hover{
color: cyan !important;
}
.custom-select {
position: relative;
font-family: Arial, sans-serif;
}
.custom-select select {
display: none; /*hide original SELECT element:*/
}
.select-selected {
background-color: white;
color: black;
background-image: url('../Icons/Dropdown.png');
background-repeat: no-repeat, repeat;
background-position: right .7em top 50%, 0 0;
background-size: .65em auto, 100%;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
color: black;
padding: 0.2em;
cursor: pointer;
user-select: none;
}
/*style items (options):*/
.select-items {
position: absolute;
background-color: white;
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
/*hide the items when the select box is closed:*/
.select-hide {
display: none;
}
.select-items div:hover, .same-as-selected {
background-color: cyan;
}