TEW-0x00/css/style.css
surtur df2371ef8a
All checks were successful
continuous-integration/drone/push Build is passing
added prescribed img+updated subpages accordingly
2020-03-26 05:00:07 +01:00

194 lines
3.3 KiB
CSS

@charset "UTF-8";
body {
background: #2b2b2b;
font-size: 16px;
/* overflow-y: auto; */
-webkit-font-smoothing: antialiased;
display: flex;
flex-direction: column;
height: 100%;
min-width: 360px;
min-height: 400px;
margin: 0;
}
p {
color: gainsboro;
text-align: center;
}
h1,h2,h3,h4,h5 {
font-family: Ubuntu,Cantarell,Roboto,-apple-system,BlinkMacSystemFont,system-ui,Segoe UI,Noto Sans,sans-serif,Helvetica,Arial;
color: whitesmoke;
}
img {
border-radius: 3px;
margin: 3em;
max-width: 800px;
}
.logoimg {
width: fit-content;
margin: 0 1em;
max-width: 250px;
padding: 15px;
}
a:link {
cursor: pointer;
color: #36c;
text-decoration: none;
word-wrap: break-word;
}
a:hover {
color: #36c;
text-decoration: underline;
}
ul {
text-align: center;
color: gainsboro;
padding-top: 0px;
list-style-position: inside;
list-style-type: none;
}
ul li{
text-align: center;
display: inline-box;
line-height: 1.3;
}
footer {
align-content: center;
align-items: center;
min-width: 360px;
}
.wrap {
word-wrap: break-word;
word-break: break-all
}
.title {
color: whitesmoke;
text-align: center;
}
.subtitle {
color: whitesmoke;
text-align: center;
}
.copyright {
color: gainsboro;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
margin-top: 0;
height: auto;
line-height: 1.5;
position: relative;
bottom: 0;
width: 100%;
font-size: 100%;
}
.copyright a {
cursor: pointer;
color: gainsboro;
text-decoration: none;
border: none;
box-shadow: inset 0 0px 0 whitesmoke;
transition: opacity .6s cubic-bezier(0.165, 0.84, 0.44, 1);
-webkit-transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.copyright a:hover {
color: #2b2b2b;
box-shadow: inset 0 -2em 0 whitesmoke;
opacity: 1;
}
.randlineargradient {
color: linear-gradient(white,blue,red);
}
.divp {
display: flex;
flex-direction: column;
}
.divcodeblock {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
margin: 0 3em;
padding: 15px 0;
}
pre {
display: block;
overflow: auto;
position: relative;
max-height: 30em;
min-height: 2em;
padding: .7em 1.1em;
font-size: .9em;
line-height: 1.5;
letter-spacing: normal;
white-space: pre;
color: #eee;
background: #151718;
border-radius: 4px;
}
#divlogoimg {
margin: 0 auto;
max-width: 300px;
width: 92%;
}
#bggradient {
display: flex;
flex-direction: column;
margin: 0 3em;
align-items: center;
align-content: center;
text-align: center;
background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 52%, rgba(0,212,255,1) 100%);
}
#bggradient p {
font-size: large;
font-weight: bold;
min-height: 50px;
margin: 2em;
}
#divsection {
margin: 0 auto;
max-width: 900px;
width: 92%;
}
#divroundedcorners {
background-color: lightgreen;
border-radius: 7px;
padding: 5px;
min-height: 100px;
margin: 0 3em;
}
#divroundonecorner {
background-color: lightskyblue;
border-radius: 0 27px 0 0;
padding: 5px;
min-height: 100px;
margin: 0 3em;
}