Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Main page/header/styles.css: Difference between revisions

Template page
Created page with ".home-header { position: relative; padding-top: 3.5rem; padding-bottom: 3.5rem; line-height: 1.1; text-align: center; } .home-header__pretitle { margin-bottom: 0.25rem; color: #888; font-size: 0.9em; letter-spacing: 0.05em; } .home-header__title { margin: 0; font-size: 3.5rem; text-transform: uppercase; line-height: 0.9; font-weight: 600; } .home-header__subtitle { margin-top: 0.25rem; color: #888; font-size: 0.9em; } .home-header__search { padding:..."
 
No edit summary
Tag: Manual revert
 
(81 intermediate revisions by the same user not shown)
Line 1: Line 1:
.home-header {
.home-header {
position: relative;
position: relative;
padding-top: 3.5rem;
padding-top: 3.2rem;
padding-bottom: 3.5rem;
padding-bottom: 3.2rem;
line-height: 1.1;
line-height: 1.1;
text-align: center;
text-align: center;
Line 8: Line 8:


.home-header__pretitle {
.home-header__pretitle {
margin-bottom: 0.25rem;
color: #888;
color: #888;
font-size: 0.9em;
font-size: 0.9em;
letter-spacing: 0.05em;
letter-spacing: 0.05em;
margin: -0.8rem;
}
}


.home-header__title {
.home-header__title {
margin: 0;
margin: 0;
font-size: 3.5rem;
font-size: 4.5rem;
text-transform: uppercase;
text-transform: uppercase;
line-height: 0.9;
line-height: 0.9;
Line 23: Line 23:


.home-header__subtitle {
.home-header__subtitle {
margin-top: 0.25rem;
margin-top: -0.6rem;
color: #888;
color: #888;
font-size: 0.9em;
font-size: 0.9em;
}
}


.home-header__search {
 
padding: 1rem;
/*
margin-top: 2rem;
* 1. STYLES FOR THE BUTTON ITSELF
margin-left: auto;
* (Now with Flexbox for icon alignment)
margin-right: auto;
*/
max-width: 600px;
/* This is the PARENT container */
border: 1px solid #ccc;
.gradient-border {
border-radius: 999px;
  /* CRITICAL: This "contains" the child element */
background-color: #f8f8f8;
  position: relative;  
cursor: pointer;
 
font-size: 0.9em;
  /* This padding defines the *overall size and shape* of the button */
font-weight: 500;
  /* DO NOT REMOVE THIS */
text-align: center;
  padding: 25px 25px;
 
  /* These are good for centering the button on the page */
  max-width: 600px;
  margin: 32px auto;
 
  background: #1c1f2b; /* Fallback color */
  border-radius: 9999px; /* Changed to pill shape */
  z-index: 0;
 
 
  /* NOTE: You still need your ::before pseudo-element */
  /* (like .gradient-border::before) to create the gradient! */
  /* This class only holds the content. */
}
}


.home-header__search .desktoponly {
/* This is the CHILD (the button face) */
margin-left: 0.5rem;
.search-box {
  /* Use absolute positioning to fill the parent */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
 
  /* These center the text/icon *inside* this element */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* Styling for the button face */
  border-radius: 9999px;
  background-color: #121011;
  color: #eee;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  /* Sits on top of the parent */
  z-index: 1;  
}
}
.gradient-border::before {
  border-radius: 9999px;
  content: '';
  position: absolute;
  z-index: -1;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: linear-gradient(90deg,
    #87bfdb, #77abC8, #6797b5, #577f9d, #476684, #43668a,
    #3e668f, #304a66, #212d3d, #304a66, #3e668f, #43668a,
    #476684, #577f9d, #6797b5, #77abC8, #87bfdb
  );
  background-size: 400% 400%;
  filter: blur(4px);
  animation: moveGradient 10s linear infinite;
  transition: all 0.5s ease;
 
  opacity: 0.5;


.home-header__search:hover {
background: #fff;
}
}


.home-header__searchIcon img {
 
margin-right: 1rem;
.gradient-border:hover {
opacity: 0.8;
 
  background-color: #1a1a1a;
 
}
 
 
 
.gradient-border:hover::before {
width: calc(100% + 8px);
height: calc(100% + 8px);
 
  background: linear-gradient(90deg,
 
    #120d0e, #321d13, #512d19, #713d1e, #90571d, #b0701b,
 
    #cf8a1a, #de9822, #eeA529, #fdb331, #eeA529, #de9822,
 
    #cf8a1a, #b0701b, #90571d, #713d1e, #512d19, #321d13, #120d0e
 
  );
 
  background-size: 400% 400%;
  filter: blur(8px);
  animation: moveGradient 10s linear infinite;
  transition: all 0.5s ease;
 
  opacity: 0.5;
 
}
 
 
 
/*
 
* 5. THE KEYFRAMES FOR THE ANIMATION
 
* (This is unchanged from before)
 
*/
 
@keyframes moveGradient {
 
  0% { background-position: 0% 50%; }
 
  50% { background-position: 100% 50%; }
 
  100% { background-position: 0% 50%; }
 
}
}


.home-header__search .keyboard-key {
.event {
display: inline;
display: flex;
padding-top: 0.1em;
flex-direction: column;
padding-bottom: 0.1em;
justify-content: flex-start;
}
}


.home-header:before,
.event-bar {
.home-header__searchIcon img {
display: flex;
filter: invert(1);
align-items: center;      /* vertical alignment */
justify-content: space-between; /* left vs right spacing */
padding: 10px 20px;
background-color: #121011;
color: #fff;
}
}


@media ( hover: none ) {
.menu-right {
.home-header__search .desktoponly {
display: flex;
display: none;
gap: 20px;
}
}
}

Latest revision as of 23:41, 8 November 2025

.home-header {
	position: relative;
	padding-top: 3.2rem;
	padding-bottom: 3.2rem;
	line-height: 1.1;
	text-align: center;
}

.home-header__pretitle {
	color: #888;
	font-size: 0.9em;
	letter-spacing: 0.05em;
	margin: -0.8rem;
}

.home-header__title {
	margin: 0;
	font-size: 4.5rem;
	text-transform: uppercase;
	line-height: 0.9;
	font-weight: 600;
}

.home-header__subtitle {
	margin-top: -0.6rem;
	color: #888;
	font-size: 0.9em;
}


/*
 * 1. STYLES FOR THE BUTTON ITSELF
 * (Now with Flexbox for icon alignment)
 */
/* This is the PARENT container */
.gradient-border {
  /* CRITICAL: This "contains" the child element */
	  position: relative; 
  
  /* This padding defines the *overall size and shape* of the button */
  /* DO NOT REMOVE THIS */
	  padding: 25px 25px;
  
  /* These are good for centering the button on the page */
	  max-width: 600px;
	  margin: 32px auto;

	  background: #1c1f2b; /* Fallback color */
	  border-radius: 9999px; /* Changed to pill shape */
	  z-index: 0;
	  

  /* NOTE: You still need your ::before pseudo-element */
  /* (like .gradient-border::before) to create the gradient! */
  /* This class only holds the content. */
}

/* This is the CHILD (the button face) */
.search-box {
	  /* Use absolute positioning to fill the parent */
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  
	  
	  /* These center the text/icon *inside* this element */
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 6px;
	
	  /* Styling for the button face */
	  border-radius: 9999px;
	  background-color: #121011;
	  color: #eee;
	  font-size: 14px;
	  font-weight: 500;
	  cursor: pointer;
	
	  /* Sits on top of the parent */
	  z-index: 1; 
}
 
 .gradient-border::before {
	 	
	  border-radius: 9999px;
	
	  content: '';
	
	  position: absolute;
	
	  z-index: -1;
	
	  top: -4px;
	
	  left: -4px;
	
	  width: calc(100% + 8px);
	
	  height: calc(100% + 8px);
	
	  background: linear-gradient(90deg, 
	
	    #87bfdb, #77abC8, #6797b5, #577f9d, #476684, #43668a, 
	
	    #3e668f, #304a66, #212d3d, #304a66, #3e668f, #43668a, 
	
	    #476684, #577f9d, #6797b5, #77abC8, #87bfdb

  );

	  background-size: 400% 400%;
	
	  filter: blur(4px);
	
	  animation: moveGradient 10s linear infinite;
	
	  transition: all 0.5s ease;
	  
	  opacity: 0.5;

}


.gradient-border:hover {

	  background-color: #1a1a1a;

}



.gradient-border:hover::before {
	
	width: calc(100% + 8px);
	
	height: calc(100% + 8px);

  background: linear-gradient(90deg, 

    #120d0e, #321d13, #512d19, #713d1e, #90571d, #b0701b, 

    #cf8a1a, #de9822, #eeA529, #fdb331, #eeA529, #de9822, 

    #cf8a1a, #b0701b, #90571d, #713d1e, #512d19, #321d13, #120d0e

  );

	  background-size: 400% 400%;
	
	  filter: blur(8px);
	
	  animation: moveGradient 10s linear infinite;
	
	  transition: all 0.5s ease;
	  
	  opacity: 0.5;

}



/*

 * 5. THE KEYFRAMES FOR THE ANIMATION

 * (This is unchanged from before)

 */

@keyframes moveGradient {

  0% { background-position: 0% 50%; }

  50% { background-position: 100% 50%; }

  100% { background-position: 0% 50%; }

}

.event {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.event-bar {
	display: flex;
	align-items: center;      /* vertical alignment */
	justify-content: space-between; /* left vs right spacing */
	padding: 10px 20px;
	background-color: #121011;
	color: #fff;
}

.menu-right {
	display: flex;
	gap: 20px;
}