Template:MomoTalk/style.css: Difference between revisions

m
Shadow and color fixes for MomoTalk bond story option in dark mode
mNo edit summary
m (Shadow and color fixes for MomoTalk bond story option in dark mode)
 
(26 intermediate revisions by 2 users not shown)
Line 1:
/*
Reference examples: https://zh.moegirl.org.cn/Template:%E8%94%9A%E8%93%9D%E6%A1%A3%E6%A1%88Momotalk and https://github.com/U1805/momotalk
Due to license incompatibilities, the template in moegirl.org.cn cannot be directly imported.
*/
.momotalk-container {
width: 100%;
border-radius:5px10px;
overflow:hidden;
box-shadow: 0 2px 4px lightgrey;
margin-bottom: 15px;
max-width: 720px;
}
.momotalk-top {
Line 13 ⟶ 20:
color:#fff;
font-size:32px;
padding-left: 10px;
vertical-align: middle;
font-weight: bold;
Line 22 ⟶ 29:
.momotalk-close {
float: right;
font-size: 35px32px;
color: white;
font-weight: bold;
margin-right: 8px12px;
margin-top: 10px;
line-height: 1;
}
.momotalk-close:hover {
Line 32 ⟶ 41:
table.momotalk-table {
width:100%;
border-spacing:5px;
margin-top:-2px;
margin-bottom: 3px;
}
table.momotalk-table td:firstprofile-childpicture {
/* profile picture */
display: block;
width: 50px58px;
height: 50px58px;
border-radius: 50%;
overflow: hidden;
margin-top: 10px8px;
padding: 0;
margin-left: 3px;
}
table.momotalk-table td:nth-child(2) {
width: 100%;
box-sizing: border-box;
padding-left: 5px;
}
.momotalk-student-line-container {
float: left;
}
padding-left: 10px;
.momotalk-sensei-line-container {
float: right;
}
.momotalk-student-line-container, .momotalk-sensei-line-container {
max-width: 90%;
}
.momotalk-student-name {
font-size: 20px;
font-weight: bold;
line-height: 1.3;
padding-top: 3px;
}
.momotalk-student-line {
Line 58 ⟶ 80:
}
.momotalk-sensei-line {
float: right;
background: #4a8ac6;
margin-right: 3px;
}
.momotalk-dialogstudent-textline, .momotalk-sensei-line {
border-radius: 7px;
padding: 6px 8px 6px 8px;
color: white;
font-size: 15px;
font-weight: 500;
}
width: min-content;
 
.momotalk-reply-container, .momotalk-relationship-story-container {
float: right;
width: 100%;
max-width: 800px;
box-sizing: border-box;
border: 1px solid #cdd3dc;
border-radius: 10px;
padding: 10px 10px 3px 10px;
margin-right: 3px;
}
.momotalk-reply-container {
background: #E2EDF1;
}
.momotalk-relationship-story-container {
background: #ffedf1;
}
 
.momotalk-reply-header, .momotalk-relationship-story-header {
border-left: 2px solid;
padding-left: 5px;
}
.momotalk-reply-header {
border-color: #3493f9;
}
.momotalk-relationship-story-header {
border-color: rgb(252,150,171);
}
 
.momotalk-reply-option, .momotalk-relationship-story-option {
border: none;
margin-bottom: 5px;
margin-top: 5px;
padding: 5px;
box-sizing: border-box;
width: 100%;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 10px;
box-shadow: 0 2px 5px lightgrey;
transition: background-color ease-in-out .3s;
}
.momotalk-reply-option {
background-color: #fff;
color: #2a323e;
}
.momotalk-relationship-story-option {
background-color: #fc96ab;
color: #fff;
}
 
.momotalk-reply-option:hover, .momotalk-relationship-story-option:hover {
cursor: pointer;
transition: background-color ease-in-out .3s;
}
.momotalk-reply-option:hover {
background-color: lightgrey;
color: #2a323e;
}
.momotalk-relationship-story-option:hover {
background-color: #e08799;
}
 
.momotalk-hidden-student-text {
display: none;
}
div.momotalk-selected-option {
background-color: #4a8ac6;
color: #fff;
}
div.momotalk-selected-option:hover {
background-color: #4a8ac6;
color: #fff;
}
 
.momotalk-image img {
width: 100%;
height: auto;
max-width: 400px;
}
 
/*
Dark mode adjustments. Resets the invert and hue-rotate filters for certain UI
elements in the MomoTalk panel. This will almost definitely need adjustment
if/when a custom dark mode will be implemented for the wiki.
*/
html.client-darkmode:not(.mw-invert) .momotalk-container .momotalk-relationship-story-option {
box-shadow: 0 2px 5px #2c2c2c;
color: #000;
}
6

edits