new style
This commit is contained in:
parent
17c737d92a
commit
fb2bc74686
1 changed files with 31 additions and 15 deletions
46
style.css
46
style.css
|
@ -1,10 +1,22 @@
|
||||||
body {
|
html {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 15pt;
|
font-size: 15pt;
|
||||||
|
background-color:#556;
|
||||||
|
background-image: linear-gradient(30deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
|
||||||
|
linear-gradient(150deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
|
||||||
|
linear-gradient(30deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
|
||||||
|
linear-gradient(150deg, #445 12%, transparent 12.5%, transparent 87%, #445 87.5%, #445),
|
||||||
|
linear-gradient(60deg, #99a 25%, transparent 25.5%, transparent 75%, #99a 75%, #99a),
|
||||||
|
linear-gradient(60deg, #99a 25%, transparent 25.5%, transparent 75%, #99a 75%, #99a);
|
||||||
|
background-size:80px 140px;
|
||||||
|
background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-family: serif;
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
h1, section {
|
||||||
|
margin: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.cfn {
|
body.cfn {
|
||||||
|
@ -12,9 +24,6 @@ body.cfn {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
font-family: serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -53,9 +62,6 @@ hr {
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
|
@ -88,10 +94,10 @@ pre {
|
||||||
|
|
||||||
.lang {
|
.lang {
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
padding: 1% 5% 4% 6%;
|
margin: -1em 0 0 -1em;
|
||||||
margin: 0% 110%;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-family: "Mono";
|
font-family: "Mono";
|
||||||
|
width: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lang a:hover {
|
.lang a:hover {
|
||||||
|
@ -100,9 +106,9 @@ pre {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
left: 50%;
|
padding:1em;
|
||||||
position: relative;
|
background-color:rgba(236,236,236,0.75);
|
||||||
transform: translate(-50%, 0%);
|
font-family: sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
@ -120,7 +126,6 @@ footer {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
> > > > > > > 5a9411117cf4b4055f9a81bb4561686b2119b662
|
|
||||||
section > h3 {
|
section > h3 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-right: 2rem;
|
margin-right: 2rem;
|
||||||
|
@ -129,7 +134,7 @@ section > h3 {
|
||||||
|
|
||||||
section p:nth-child(2) {
|
section p:nth-child(2) {
|
||||||
font-size: large;
|
font-size: large;
|
||||||
margin: auto 6rem;
|
margin: auto 3rem;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,3 +192,14 @@ pre {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
||||||
|
::::::::::::::::::::::media:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
||||||
|
::::::::::::::::::::::::::::*/
|
||||||
|
|
||||||
|
@media (max-width: 400px) {
|
||||||
|
.logo {
|
||||||
|
float:none;
|
||||||
|
max-width: 250px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue