-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (100 loc) · 2.32 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%; }
.hero-content {
width: 960px;
margin: 0 auto;
position: relative;
height: 100%; }
#console {
background: url("static1.gif") fixed;
color: #fff;
position: realtive; }
#console .console-black {
background: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100%;
padding-top: 1px;
box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 40px inset, rgba(0, 0, 0, 0.7) 0px 0px 20px inset; }
#console .terminal {
font-size: 48px; }
#console .terminal span.terminal-line {
font-family: monospace;
display: block;
height: 36px;
margin: 15px 0; }
#console .name-card {
background: #fff;
border-radius: 5px;
width: 500px;
height: 300px;
border: 6px #fff solid;
margin: 0 auto;
position: absolute;
left: 215px;
bottom: -50px;
color: #fff; }
#console .name-card .top {
border-top-right-radius: 5px;
border-top-left-radius: 5px;
background: #af0000;
text-align: center;
font-family: "Helvetica", "Arial", sans-serif;
font-weight: 200;
font-size: 45px;
padding: 15px 20px; }
#console .name-card .name {
height: 185px;
border-bottom: 5px #555 solid;
display: block;
width: 480px;
margin: 20px 10px;
content: '.';
color: #333;
font-size: 170px;
text-align: center; }
article {
padding: 1px 0 0 0;
width: 100%;
height: 100%;
background: #ddd;
border-bottom: #333 2px solid;
max-height: 900px; }
/* Effects */
/* Blinking */
.blink {
-webkit-animation-name: blinker;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: blinker;
-moz-animation-duration: 1s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
animation-name: blinker;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite; }
@-moz-keyframes blinker {
0% {
opacity: 1.0; }
50% {
opacity: 0.0; }
100% {
opacity: 1.0; } }
@-webkit-keyframes blinker {
0% {
opacity: 1.0; }
50% {
opacity: 0.0; }
100% {
opacity: 1.0; } }
@keyframes blinker {
0% {
opacity: 1.0; }
50% {
opacity: 0.0; }
100% {
opacity: 1.0; } }