Skip to content

Instantly share code, notes, and snippets.

/style.css Secret

Created October 8, 2016 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/41987d2566c705d4ce4d02b462d8d82b to your computer and use it in GitHub Desktop.
Save anonymous/41987d2566c705d4ce4d02b462d8d82b to your computer and use it in GitHub Desktop.
body
{
/* Background pattern from subtlepatterns.com */
background-image: url(img/tlo.png);
margin: 0px;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
}
a:link
{
color: black;
text-decoration: none;
}
a:visited
{
color: black;
text-decoration: none;
}
a:hover
{
color: #485b3b;
text-decoration: underline;
}
a:active
{
color: black;
text-decoration: none;
}
#logo
{
width: 100%;
height: 50px;
background-color: #485b3b;
color: #ffffff;
font-size: 36px;
text-align: center;
text-transform: uppercase;
padding: 5px 0px 5px 0px;
letter-spacing: 3px;
border-bottom: 2px solid #33402a;
text-shadow:
2px 2px 0 #33402a,
-2px 2px 0 #33402a,
-2px -2px 0 #33402a,
2px -2px 0 #33402a;
}
#container
{
width: 878px;
margin-left: auto;
margin-right: auto;
background-color: #ffffff;
padding: 10px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
#spis
{
width: 780px;
padding-left: 100px;
}
ol
{
margin-top: 5px;
}
ol > li
{
font-size: 22px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
padding: 5px;
}
ol > li > ul
{
font-size: 18px;
text-transform: none;
font-weight: 400;
padding: 0px;
letter-spacing: 0px;
margin-top: 5px;
margin-left: 30px;
list-style-type: none; /* Ustawiłem none, ponieważ poniżej dałem punktor customowy w postaci wykrzyknika. */
}
ol > li > ul > li
{
margin: 0px; /* Ustawiłem to, aby przeglądarka nei dodała żadnych defaultowych marginesów po poczczególnych elementów listy ul. */
}
ol > li > ul > li:before
{
color: #485b3b;
content: "⚠";
margin-right: 5px;
}
.slajd
{
padding: 20px 40px;
text-align: justify;
}
h1
{
font-size: 24px;
text-transform: uppercase;
font-weight: 700;
}
.scrollup
{
width: 64px;
height: 64px;
text-decoration: none;
background: url("img/up.png") no-repeat 0px 0px; /* koordynaty położenia stanowią o tym, w którym miejscu linka będzie się zaczynał obrazek. W tym przypadku w lewym górym rogu. */
position: fixed;
right: 50px;
bottom: 50px;
display: none;
}
#stopka
{
width: 100%;
heihgt: 5px;
color: white;
text-transform: uppercase;
font-size: 20px;
text-align: center;
background-color: #485b3b;
border-top: 2px solid #33402a;
padding-bottom: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment