MediaWiki:Common.css: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
(새 문서: →‎이 CSS 설정은 모든 스킨에 적용됩니다: @import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif"); body {font-family: "Noto Sans", sans-serif} /* c...)
 
No edit summary
Line 7: Line 7:
div#content h1, div#content h2 {font-family: "Noto Serif", serif}
div#content h1, div#content h2 {font-family: "Noto Serif", serif}
/* changes the default font used for MediaWiki headings to Noto Serif */
/* changes the default font used for MediaWiki headings to Noto Serif */
/* by HPCMATE */
.mainpage_row {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 -5px 0 -5px;
}

Revision as of 08:24, 26 April 2023

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif");

body {font-family: "Noto Sans", sans-serif}
/* changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text) */

div#content h1, div#content h2 {font-family: "Noto Serif", serif}
/* changes the default font used for MediaWiki headings to Noto Serif */

/* by HPCMATE */
.mainpage_row {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0 -5px 0 -5px;
}