Difference between revisions of "Template:SourceChat/styles.css"

From WORST WIKI EVER
Jump to navigationJump to search
(Created page with ".sourcechat { padding: 1rem 2rem; background-color: rgb(160, 160, 160); border-radius: 2px; } .sourcechat .wrapper { padding: .5rem .75rem; background-c...")
 
m
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
.sourcechat {
 
.sourcechat {
padding: 1rem 2rem;
+
max-width: 600px;
  +
padding: .75rem 1rem;
   
 
background-color: rgb(160, 160, 160);
 
background-color: rgb(160, 160, 160);
border-radius: 2px;
+
border-radius: 4px;
  +
  +
font-weight: 700;
  +
font-family: Verdana, Geneva, Tahoma, sans-serif;
  +
  +
color: white;
 
text-shadow: 1px 1px black;
 
}
 
}
   
.sourcechat .wrapper {
+
.sourcechat > .title {
padding: .5rem .75rem;
+
margin-top: .25rem;
  +
}
  +
  +
.sourcechat > .wrapper {
  +
margin-bottom: .5rem;
  +
padding: .1rem .4rem;
   
 
background-color: rgb(90, 90, 90);
 
background-color: rgb(90, 90, 90);
  +
}
text-shadow: 1px 1px black;
 
  +
  +
.sourcechat > .history {
  +
min-height: 64px;
  +
max-height: 256px;
  +
}
  +
  +
.sourcechat > .wrapper:last-child {
  +
margin-bottom: 0px;
 
}
 
}

Latest revision as of 15:23, 21 April 2025

.sourcechat {
    max-width: 600px;
    padding: .75rem 1rem;

    background-color: rgb(160, 160, 160);
    border-radius: 4px;

    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    color: white;
    text-shadow: 1px 1px black;
}

.sourcechat > .title {
    margin-top: .25rem;
}

.sourcechat > .wrapper {
    margin-bottom: .5rem;
    padding: .1rem .4rem;

    background-color: rgb(90, 90, 90);
}

.sourcechat > .history {
    min-height: 64px;
    max-height: 256px;
}

.sourcechat > .wrapper:last-child {
    margin-bottom: 0px;
}