infamous
Version:
A CSS3D/WebGL UI library.
78 lines (66 loc) • 1.33 kB
CSS
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
text-transform: uppercase;
}
h1 {
font-weight: 300;
padding-bottom: 40px;
}
h3 {
font-weight: 300;
text-transform: lowercase;
}
a:link, a:visited, a:hover, a:active {
font-weight: 500;
transition: all 0.5s;
color: rgba(195,195,195,0.9);
text-decoration: none;
}
a:hover {
color: rgba(255,255,255,1.0);
text-decoration:none;
}
html {
font-size: 1em;
line-height: 1.4;
}
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
body {
position: absolute;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-font-smoothing: antialiased;
-webkit-tap-highlight-color: transparent;
-webkit-perspective: 0;
perspective: none;
overflow: hidden;
font-family: 'Work Sans', 'Helvetica', sans-serif;
font-size: 16px;
color: rgba(242,238,236,1.0);
background: linear-gradient(135deg, #49022F 0%, #070004 100%);
}
.gradient-background {
background: linear-gradient(135deg, #49022F 0%, #070004 100%);
}
.centerText {
text-align: center;
vertical-align: middle;
}
.background-iframe {
border: none;
width: 100%;
height: 100%;
}
#titleNode h1 {
font-size: 32px;
padding: 0;
margin: 0;
}
#footerNode {
background: rgb(2,2,2);
}