test article test test test
/* user styles */ /* styles are what change the color and sizes of stuff on your site. */ /*pdf library, bookshelf */ /* these are variables that are being used in the code these tended to confuse some people, so I only kept the images as variables */ :root { --header-image: url("/images/gardenofmadelinebanner_aug2023_small.png"); --body-bg-image: url("/pinkmovingstar_bg_tile.gif"); /* colors */ --content: #047ba2; } /* if you have the URL of a font, you can set it below */ /* feel free to delete this if it's not your vibe */ /* this seems like a lot for just one font and I would have to agree but I wanted to include an example of how to include a custom font. If you download a font file you can upload it onto your Neocities and then link it! Many fonts have separate files for each style (bold, italic, etc. T_T) which is why there are so many! */ @font-face { font-family: Nunito; src: url('/fonts/ambitsek.ttf') format("truetype"); } @font-face { font-family: Nunito; src: url('/fonts/Bit3.ttf') format("truetype"); font-weight: bold; } @font-face { font-family: Nunito; src: url('/fonts/ambitsek.ttf') format("truetype"); font-style: italic; } @font-face { font-family: Nunito; src: url('/fonts/ambitsek.ttf') format("truetype"); font-style: italic; font-weight: bold; } body { font-family: 'Nunito', sans-serif; margin: 0; background-color: #fd7b81; /* you can delete the line below if you'd prefer to not use an image */ background-size: 300px; color: #d92f7f; background-image: var(--body-bg-image); } * { box-sizing: border-box; } /* below this line is CSS for the layout */ /* this is a CSS comment to uncomment a line of CSS, remove the * and the / before and after the text */ /* the "container" is what wraps your entire website */ /* if you want something (like the header) to be Wider than the other elements, you will need to move that div outside of the container */ #container { max-width: 1200px; /* this is the width of your layout! */ /* if you change the above value, scroll to the bottom and change the media query according to the comment! */ margin: 0 auto; /* this centers the entire page */ } /* the area below is for all links on your page EXCEPT for the navigation */ #container a { color: #a756e5; font-weight: bold; /* if you want to remove the underline you can add a line below here that says: text-decoration:none; */ } #header { width: 100%; border-radius: 0px; background-color: #fd7b81; /* header color here! */ height: 200px; /* this is only for a background image! */ /* if you want to put images IN the header, you can add them directly to the
element! */ background-image: var(--header-image); background-size: 100%; padding: 10px; } /* navigation section!! */ #navbar { height: 40px; border-radius: 0px; background-color: #d92f7f; /* navbar color */ width: 100%; } #navbar ul { display: flex; padding: 0; margin: 10; list-style-type: none; justify-content: space-evenly; } #navbar li { padding-top: 8px; } /* navigation links*/ #navbar li a { color: #ffffff; /* navbar text color */ font-weight: 800; text-decoration: none; /* this removes the underline */ } /* navigation link when a link is hovered over */ #navbar li a:hover { color: #a756e5; text-decoration: underline; } #flex { display: flex; } /* this colors BOTH sidebars if you want to style them separately, create styles for #leftSidebar and #rightSidebar */ aside { /b/ackground-color: #a756e5; border-radius: 0px; border: 0px solid #ffffff; width: 330px; padding-top: 20px; f/ont-size: smaller; /* this makes the sidebar text slightly smaller */ } /* this is the color of the main content area, between the sidebars! */ main { /b/ackground-color: #ffc2fb; border-radius: 0px; flex: 1; padding: 20px; order: 2; } } .box-title-bar { width: 100%; padding: 20px; padding-top: 10x; padding-bottom: 10px; } .title-bar, .box-title-bar { background: #a756e5; color: white; font-weight: bold; padding: 5px; padding-top: 8px; padding-bottom: 8px; } .box-title-bar2 { background: #d92f7f; color: white; font-weight: bold; padding: 5px; padding-top: 8px; padding-bottom: 8px; } .right { float: right; margin-right: 5px; font-family: "Arial", sans-serif; line-height: 12px; } .inner { padding: 10px; padding-bottom: 5px; padding-top: 2px; } .inner2 { padding: 10px; padding-bottom: 5px; padding-top: 2px; } /* what's this "order" stuff about?? allow me to explain! if you're using both sidebars, the "order" value tells the CSS the order in which to display them. left sidebar is 1, content is 2, and right sidebar is 3! */ */ #leftSidebar { order: 1; } #rightSidebar { order: 3; } footer { background-color: #ffc2fb; /* background color for footer */ border-radius: 0px; width: 100%; height: 40px; padding: 10px; text-align: center; /* this centers the footer text */ } h1, h2, h3 { color: #7e0bb3; } h1 { font-size: 25px; } strong { /* this styles bold text */ color: #c323c9; } /* this is just a cool box, it's the darker colored one */ .box { background-color: #ffc2fb; border-radius: 15px; border: 2px solid #ffc2fb; padding: 10px; } .box2 { width: 100%; background-color: #a756e5; border-radius: 15px; border: 0px solid #ffffff; padding: 10px; } .box4scroll { width: 100%; height: 450px; background-color: #ffffff; border-radius: 0px; border: 4px solid#ffc2fb; padding: 4px; box-shadow: 3px 3px #a756e5; overflow: auto; } .box3 { width: 100%; background-color: #ffffff; border-radius: 0px; border: 4px solid#ffc2fb; padding: 4px; box-shadow: 3px 3px #a756e5;; } .box3scroll { width: 100%; height: 200px; background-color: #ffffff; border-radius: 0px; border: 4px solid#ffc2fb; padding: 4px; box-shadow: 3px 3px #a756e5; overflow: auto; } .box2scroll { width: 100%; height: 300px; background-color: #ffffff; border-radius: 0px; border: 4px solid#ffc2fb; padding: 4px; box-shadow: 3px 3px #a756e5; overflow: auto; } .box4 { width: 100%; background-color: #ffffff; border-radius: 0px; border: 4px solid#ffc2fb; padding: 4px; box-shadow: 3px 3px #a756e5;; } /* CSS for extras */ #topBar { width: 100%; border-radius: 0px; height: 70px; padding: 10px; font-size: smaller; background-color: #ffc2fb; } /* BELOW THIS POINT IS MEDIA QUERY */ /* so you wanna change the width of your page? by default, the container width is 900px. in order to keep things responsive, take your new height, and then subtrack it by 100. use this new number as the "max-width" value below */ @media only screen and (max-width: 1100px) { #flex { flex-wrap: wrap; } aside { width: 100%; } /* the order of the items is adjusted here for responsiveness! since the sidebars would be too small on a mobile device. feel free to play around with the order! */ main { order: 1; } #leftSidebar { order: 2; } #rightSidebar { order: 3; } #navbar ul { flex-wrap: wrap; } }
#6495ED |
Your dominant hues are cyan and blue. You like people and enjoy making friends. You're conservative and like to make sure things make sense before you step into them, especially in relationships. You are curious but respected for your opinions by people who you sometimes wouldn't even suspect. Your saturation level is medium - You're not the most decisive go-getter, but you can get a job done when it's required of you. You probably don't think the world can change for you and don't want to spend too much effort trying to force it. Your outlook on life is bright. You see good things in situations where others may not be able to, and it frustrates you to see them get down on everything. |
This page is protected by a
Hedgehogs are lactose intolerant.
Want your own? Visit hekate.neocities.org!