Jump to content

MediaWiki:Common.css: Difference between revisions

From Marxist Wiki
No edit summary
No edit summary
Line 4: Line 4:
     display: none;
     display: none;
}
}
#jump-to-nav {
    display: none;
}
/* Make it bit more clear where in the tree the content is positioned */
.dropdown-content .srf-tree b {
    color: #ffcf00;
}
/* Demonstrates the creation of multi-column outputs for the list formats */
ul.smw-format.ul-format.exampleclass {
    column-count: 2;
}
ol.smw-format.ol-format.exampleclass {
    column-count: 2;
}
/* Slight color difference for those marked as config tooltip */
.config-tooltip code {
    border: 1px solid #9ec2da;
}
/**
* Sidenote link
*/
.sidenotice-link a {
color: #78542c;
font-weight: 400;
text-decoration: none;
}
.plainlinksexample {
    background-color: orange;
}
/*SMWCon 2023 styles */
#smwcon-2023 .agenda-block-list {
    padding: 0;
}
#smwcon-2023 .ag-item-span-text {
    overflow: hidden;
    height: auto;
    min-height: 30px;
    max-height: 60px;
    display: block;
    margin-bottom: 1.5em;
}
#smwcon-2023 .ag-item-title {
    padding-bottom: 4px;
    line-height: 1.1em;
}
/*SMWCon 2020 Styles*/
#smwcon2020 .agenda-block-header{
    font-size: 24px;
margin-left: 0px;
border:none;
padding: 5px 0 10px 10px;
border-radius: 0;
background: #5e9dc8;
text-shadow: none;
}
#smwcon2020 .agenda-block-header p{
    margin: 0px;
    padding-left: 20px;
}
#smwcon2020 .agenda-block-header .ag-title {
    color: #ffffff;
    font-size: 16px;
}
#smwcon2020 .agenda-block-header .ag-date {
    color: #ffffff;
    padding-left: 0px;
}
#smwcon2020 .agenda-block {
max-width: 100%;
}
#smwcon2020 .agenda-block-list {
margin-left: 0px;
border-left: 3px solid #5e9dc8;
border-right: 3px solid #5e9dc8;
border-bottom: 3px solid #5e9dc8;
}
#smwcon2020 .ag-push-left{
left: 0px;
background: #5e9dc8;
border-bottom-left-radius: 0px;
border-top-left-radius: 0px;
-webkit-border-bottom-left-radius: 0px;
-webkit-border-top-left-radius: 0px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-bottomleft: 0px;
outline: 1px solid #5e9dc8;
text-shadow: none;
}
#smwcon2020 .ag-push-duration{
    left: 0px;
    background: #5e9dc8;
    border-radius: 0px;
    width: 80px;
    box-shadow: none;
    text-indent: 20px;
}
#smwcon2020 .agenda-line {
    margin-left: 80px;
}
#smwcon2020 .single-column .agenda-item {
    width: 95% !important;
}
#smwcon2020 .ag-item-span-text {
    height: auto;
}
#smwcon2020 .ag-item-pic-normal {
    margin-top: 10px;
    border: 4px solid #dcf0f7;
}
#smwcon2020 .ag-push-top {
    height: 10px;
}
#smwcon2020 .ag-item-title a {
    color: #0c2c52;
}
#smwcon2020 .ag-item-title a:hover{
    color: #0c2c52;
text-decoration: underline;
}
#smwcon2020 .ag-item-author a, #smwcon2020 .ag-item-author a:hover, #smwcon2020 .ag-item-author a:visited{
    color: #5e9dc8;
}
/* #smwcon2020 .ag-item-title a[title="Coffee"]{
color: red;
} */
/* Some additional changes for SMWCon 2022 */
.not-in-session {
    border-top: solid 1px lightgrey;
}
.in-session {
    margin-left:80px;
    min-height: 0;
    position: relative;
    top: -20px;
}
.ag-item-pic {
    margin: 0 10px 0 0;
}
.agenda-line {
    overflow: visible;
    margin-bottom: 0px;
}
.session-desc {
    margin-bottom: 20px;
}
/*** SMWCon 2024 Fall Styles ***/
#smwcon2024 .ag-item-text {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.5rem;
}
#smwcon2024 .ag-item-title a {
    font-size: 1.8rem;
}
#smwcon2024 .ag-item-title {
    line-height: 2rem;
}
#smwcon2024 .ag-item-author {line-height: 1.5rem;}
#smwcon2024 .agenda-block-header .ag-title {
    text-shadow: none;
    font-weight: 600;
}
#smwcon2024 .agenda-item {margin: 3px 5px 5px 20px;}
#smwcon2024 .ag-author-job {color: #333;}
#smwcon2024 .agenda-block-header {
    background: none;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-color: #c3cfe2;
    box-shadow: lightgrey 4px 2px 2px;
    padding: 10px 10px 5px 15px;
}
#smwcon2024 .agenda-block-header p {
    text-shadow: none;
}
#smwcon2024 .agenda-block-list {border-color: #c3cfe2;}

Revision as of 23:38, 19 March 2025

/* CSS placed here will be applied to all skins */
#footer { display: none; }
#n-help-mediawiki {
    display: none;
}


#jump-to-nav {
    display: none;
}

/* Make it bit more clear where in the tree the content is positioned */
.dropdown-content .srf-tree b {
    color: #ffcf00;
}

/* Demonstrates the creation of multi-column outputs for the list formats */
ul.smw-format.ul-format.exampleclass {
    column-count: 2;
}
ol.smw-format.ol-format.exampleclass {
    column-count: 2;
}

/* Slight color difference for those marked as config tooltip */
.config-tooltip code {
    border: 1px solid #9ec2da;
}

/**
 * Sidenote link
 */
.sidenotice-link a {
	color: #78542c;
	font-weight: 400;
	text-decoration: none;
}

.plainlinksexample {
    background-color: orange;
}
/*SMWCon 2023 styles */
#smwcon-2023 .agenda-block-list {
    padding: 0;
}
#smwcon-2023 .ag-item-span-text {
    overflow: hidden;
    height: auto;
    min-height: 30px;
    max-height: 60px;
    display: block;
    margin-bottom: 1.5em;
}
#smwcon-2023 .ag-item-title {
    padding-bottom: 4px;
    line-height: 1.1em;
}

/*SMWCon 2020 Styles*/
#smwcon2020 .agenda-block-header{
	    font-size: 24px;
		margin-left: 0px;
		border:none;
		padding: 5px 0 10px 10px;
		border-radius: 0;
		background: #5e9dc8;
		text-shadow: none;
}

#smwcon2020 .agenda-block-header p{
	    margin: 0px;
	    padding-left: 20px;
}

#smwcon2020 .agenda-block-header .ag-title {
    color: #ffffff;
    font-size: 16px;
}

#smwcon2020 .agenda-block-header .ag-date {
    color: #ffffff;
    padding-left: 0px;
}

#smwcon2020 .agenda-block {
	max-width: 100%;
}

#smwcon2020 .agenda-block-list {
	margin-left: 0px;	
	border-left: 3px solid #5e9dc8;
	border-right: 3px solid #5e9dc8;
	border-bottom: 3px solid #5e9dc8;
}

#smwcon2020 .ag-push-left{
	left: 0px;
	background: #5e9dc8;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-bottomleft: 0px;
outline: 1px solid #5e9dc8;
text-shadow: none;
}

#smwcon2020 .ag-push-duration{
    left: 0px;
    background: #5e9dc8;
    border-radius: 0px;
    width: 80px;
    box-shadow: none;
    text-indent: 20px;
}

#smwcon2020 .agenda-line {
    margin-left: 80px;
}

#smwcon2020 .single-column .agenda-item {
    width: 95% !important;
}

#smwcon2020 .ag-item-span-text {
    height: auto;
}

#smwcon2020 .ag-item-pic-normal {
    margin-top: 10px;
    border: 4px solid #dcf0f7;
}

#smwcon2020 .ag-push-top {
    height: 10px;
}

#smwcon2020 .ag-item-title a {
    color: #0c2c52;
}

#smwcon2020 .ag-item-title a:hover{
    color: #0c2c52;
text-decoration: underline;
}


#smwcon2020 .ag-item-author a, #smwcon2020 .ag-item-author a:hover, #smwcon2020 .ag-item-author a:visited{
    color: #5e9dc8;
}

/* #smwcon2020 .ag-item-title a[title="Coffee"]{
color: red;
} */

/* Some additional changes for SMWCon 2022 */
.not-in-session {
    border-top: solid 1px lightgrey;
}
.in-session {
    margin-left:80px;
    min-height: 0;
    position: relative;
    top: -20px;
}
.ag-item-pic {
    margin: 0 10px 0 0;
}
.agenda-line {
    overflow: visible;
    margin-bottom: 0px;
}
.session-desc {
    margin-bottom: 20px;
}

/*** SMWCon 2024 Fall Styles ***/
#smwcon2024 .ag-item-text {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.5rem;
}

#smwcon2024 .ag-item-title a {
    font-size: 1.8rem;
}

#smwcon2024 .ag-item-title {
    line-height: 2rem;
}

#smwcon2024 .ag-item-author {line-height: 1.5rem;}

#smwcon2024 .agenda-block-header .ag-title {
    text-shadow: none;
    font-weight: 600;
}

#smwcon2024 .agenda-item {margin: 3px 5px 5px 20px;}

#smwcon2024 .ag-author-job {color: #333;}

#smwcon2024 .agenda-block-header {
    background: none;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-color: #c3cfe2;
    box-shadow: lightgrey 4px 2px 2px;
    padding: 10px 10px 5px 15px;
}

#smwcon2024 .agenda-block-header p {
    text-shadow: none;
}

#smwcon2024 .agenda-block-list {border-color: #c3cfe2;}