Jump to content

MediaWiki:Common.css: Difference between revisions

From WikiGence
No edit summary
No edit summary
 
Line 73: Line 73:


/******** WIKIGENCE PREMIUM HERO ********/
/******** WIKIGENCE PREMIUM HERO ********/
.wg-hero{
width:100%;
box-sizing:border-box;
padding:28px;
margin:15px 0 20px 0;
background:#f8fbff;
border:1px solid #d6e2f0;
border-radius:18px;
box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.wg-title{
font-size:48px;
font-weight:700;
text-align:center;
color:#163b8c;
margin-bottom:15px;
}
.wg-subtitle{
font-size:18px;
text-align:center;
line-height:32px;
color:#54595d;
margin-bottom:30px;
}
.wg-services{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:25px;
}
.wg-box{
background:#fff;
border:1px solid #eaecf0;
border-radius:14px;
padding:20px;
text-align:center;
}
.wg-box h3{
font-size:22px;
margin-bottom:10px;
}
.wg-box p{
font-size:15px;
line-height:26px;
color:#54595d;
margin:0;
}
.wg-contact{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:25px;
}
.wg-card{
background:#fff;
padding:18px;
text-align:center;
border:1px solid #eaecf0;
border-radius:14px;
}
.wg-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:25px;
}
.wg-btn{
padding:14px 28px;
border-radius:30px;
font-size:16px;
font-weight:700;
text-decoration:none;
}
.wg-blue{
background:#3366cc;
color:#fff !important;
}
.wg-black{
background:#111827;
color:#fff !important;
}
.wg-disclaimer{
padding:18px;
background:#fff;
border:1px solid #eaecf0;
border-radius:14px;
font-size:13px;
line-height:24px;
text-align:center;
color:#54595d;
}
@media(max-width:768px){
.wg-services{
grid-template-columns:1fr;
}
.wg-contact{
grid-template-columns:1fr;
}
.wg-title{
font-size:34px;
}
}

Latest revision as of 16:45, 24 June 2026

/* CSS placed here will be applied to all skins */

/* Logo */
.vector-header-start .mw-logo {
	min-width:10rem !important;
}
.vector-header-start .mw-logo img {
	width: 10rem !important;
	height: auto !important;
}
.vector-header-start .mw-logo span {
	display:none !important;
}

/* InfoBox */

.infobox {
  border: 2px solid #aaa;
  background-color: #f9f9f9;
  padding: 5px;
  float: right;
  margin: 0 0 1em 1em;
  width: 250px;
  font-size: 90%;
  line-height: 1.4em;
}
.infobox th {
  background-color: #efefef;
  text-align: left;
  padding: 4px;
}
.infobox td {
  padding: 4px;
}

.page-Main_Page main header,
.page-Main_Page main .page-heading {
	display: none !important;
}

.page-Main_Page .catlinks {
	display: none !important;
}

.main-page-layout {
	display: flex;
    flex-direction: row;
	gap: 4px;
}

.main-page-column {
display:flex;
flex-direction: column;
gap:4px;
}

.image-flex-basis {
	flex-basis:150px;
}

@media screen and (max-width: 767px){
    .main-page-layout{
       flex-direction:column;
   }

    .image-flex-basis {
	   flex-basis:350px;
   }
}


/* Top Section code */

/******** WIKIGENCE PREMIUM HERO ********/