2014-07-12 21:22:47 +02:00
|
|
|
//
|
|
|
|
// kremalicious3
|
|
|
|
// --------------
|
|
|
|
// Page - 404
|
|
|
|
//
|
|
|
|
|
|
|
|
.page-404
|
|
|
|
@extend .textcenter
|
|
|
|
|
|
|
|
.entry-title
|
|
|
|
@extend .hide
|
|
|
|
|
|
|
|
.srverror-title
|
|
|
|
font-size: 2em
|
2016-04-16 19:32:58 +02:00
|
|
|
margin-bottom: ($spacer/4)
|
2014-07-12 21:22:47 +02:00
|
|
|
color: $text-color-light
|
|
|
|
|
|
|
|
.srverror-text
|
|
|
|
font-size: 1.2em
|
|
|
|
letter-spacing: .01em
|
|
|
|
color: $text-color-dimmed
|
|
|
|
|
|
|
|
// HAL needs a size
|
|
|
|
$hal-size = 72px
|
|
|
|
|
|
|
|
.hal-9000
|
|
|
|
@extend .textcenter, .aligncenter
|
|
|
|
width: $hal-size
|
|
|
|
height: $hal-size
|
|
|
|
border-radius: $hal-size
|
|
|
|
background: #444
|
|
|
|
padding: 1.5em
|
2016-04-16 19:32:58 +02:00
|
|
|
margin-top: $spacer
|
|
|
|
margin-bottom: $spacer
|
2014-07-12 21:22:47 +02:00
|
|
|
position: relative
|
|
|
|
border: 4px solid #ccc
|
|
|
|
box-shadow: inset 0 0 10px #000
|
|
|
|
|
|
|
|
// eye
|
|
|
|
&:before
|
|
|
|
content: ""
|
|
|
|
width: 100%
|
|
|
|
height: 100%
|
|
|
|
border-radius: 100%
|
|
|
|
display: block
|
|
|
|
background: red
|
|
|
|
box-shadow: 0 0 5px red, 0 0 10px red, 0 0 15px red, 0 0 20px red, 0 0 25px red, 0 0 30px red, 0 0 40px red
|
|
|
|
animation: halpulse 7s infinite
|
|
|
|
|
|
|
|
// gloss
|
|
|
|
&:after
|
|
|
|
content: ""
|
|
|
|
position: absolute
|
|
|
|
width: $hal-size
|
|
|
|
height: $hal-size
|
|
|
|
border-radius: $hal-size
|
|
|
|
position: absolute
|
|
|
|
left: 0
|
|
|
|
top: 0
|
|
|
|
background-image: linear-gradient(135deg, rgba(255,255,255,0.07) 0%,rgba(255,255,255,0.07) 40%,rgba(255,255,255,0) 41%)
|
|
|
|
|
|
|
|
@keyframes halpulse
|
|
|
|
0%
|
|
|
|
opacity: 1
|
|
|
|
50%
|
|
|
|
opacity: .6
|
|
|
|
100%
|
|
|
|
opacity: 1
|