Template:Main Page/styles.css: Difference between revisions

No edit summary
No edit summary
 
(106 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Welcome box */
/* Welcome box */
.fp-welcome-box {
.fp-welcome-box {
     background-color: #f4f4f4;
     background-color: #1f2937;
     padding: 2em 1em;
     padding: 2em 1em;
     margin-bottom: 1em;
     margin-bottom: 0.3em;
     text-align: center;
     text-align: center;
     border: 1px solid #ddd;
     border: 1px solid #374151;
     font-family: sans-serif;
     font-family: Georgia;
}
}


/* Welcome title */
/* Welcome title */
.fp-welcome-title {
.fp-welcome-title {
     font-size: 2em;
     font-size: 2.5em;
     font-weight: 400;
     font-weight: 400;
     color: #000;
     color: #f9fafb;
}
}


Line 19: Line 19:
.fp-welcome-subtext {
.fp-welcome-subtext {
     font-size: 1em;
     font-size: 1em;
     color: #202122;
     color: #38bdf8;
     margin-top: 0.5em;
     margin-top: 0.3em;
     display: block;
     display: block;
}
}
Line 26: Line 26:
/* Styled link imitation */
/* Styled link imitation */
.fp-welcome-subtext .fp-link {
.fp-welcome-subtext .fp-link {
     color: #0645ad;
     color: #60a5fa;
     text-decoration: none;
     text-decoration: none;
}
}
Line 33: Line 33:
}
}


/* End Welcome Box */




Line 38: Line 39:




/* Header style */
.mp-header {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
    line-height: 1.5em;
}


/* Container for top boxes */
/* Container for top boxes */
.mp-main-container {
.mp-main-container {
     display: flex;
     display: flex;
     gap: 1em;
     gap: 0.3em;
     margin-bottom: 1em;
     margin-bottom: 0.25em;
}
}


/* Box styling */
/* Box styling */
Line 63: Line 52:
     padding: 1em;
     padding: 1em;
     border: 1px solid #a2a9b1;
     border: 1px solid #a2a9b1;
    border-radius: 5px;
     background-color: #f8f9fa;
     background-color: #f8f9fa;
     flex: 1;
     flex: 1;
Line 82: Line 70:
.mp-lower-container {
.mp-lower-container {
     display: flex;
     display: flex;
     gap: 1em;
     gap: 0.3em;
}
}


Line 89: Line 77:
     padding: 1em;
     padding: 1em;
     border: 1px solid #a2a9b1;
     border: 1px solid #a2a9b1;
    border-radius: 5px;
}
}


Line 106: Line 93:
a:hover {
a:hover {
     text-decoration: underline;
     text-decoration: underline;
}
/* End Four Box */
.fp-info-box {
    background-color: #f1f5f9;
    border-left: 5px solid #3b82f6;
    padding: 1em;
    border-radius: 6px;
    margin-bottom: 1em;
    font-size: 1em;
}
.fp-grid-box {
    display: flex;
    gap: 1em;
    justify-content: space-around;
    margin-bottom: 1em;
}
.fp-grid-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1em;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.fp-box-purple {
    background-color: #f3e8fd;
    border-left: 5px solid #9b51e0;
    padding: 2em;
    border-radius: 8px;
    line-height: 1.7;
    font-size: 1em;
    margin-bottom: 2em;
}
.feature-box {
  border: 1px solid #a2a9b1;
  background-color: #f5fff5;
  margin-bottom: 20px;
  padding: 10px;
}
.feature-box-title {
  background-color: #cef2e0;
  border: 1px solid #a2a9b1;
  padding: 8px 12px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.feature-item {
  width: 19%;
  background-color: #f3e8fd;
  border: 1px solid #ddd;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 13px;
  font-family: sans-serif;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: scale(1.05);
  z-index: 10;
}
.feature-image {
  background-color: #fff;
  padding: 0px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ddd;
}
.feature-image img {
  width: 100%;
  height: auto;
}
.feature-name {
  font-weight: bold;
  margin: 4px 0;
  font-size: 18px;
}
.feature-desc {
  font-size: 13px;
  color: #444;
}
}