-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuglyhack.css
131 lines (112 loc) · 1.94 KB
/
uglyhack.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
* {
margin: 0;
padding: 0
}
img {
border: none;
padding: 5px;
}
body {
background: url( black_linen_v2.png );
font: normal normal normal 14px/ 1.4em Georgia;
color: #FFFFFF;
text-shadow: 1px 1px 3px black;
overflow: hidden;
height: 100%;
}
.content {
width: 100%;
height: 100%;
display:block;
position:absolute;
top:0;
left:0;
perspective: 800;
-webkit-perspective: 800;
-moz-perspective: 800;
-ms-perspective: 800;
}
h1 {
font-size: 84px;
line-height: 1em;
font-weight: normal;
text-align: left;
text-shadow: 2px 3px 3px black;
padding-bottom: 10px;
}
h2 {
font-size: 28px;
line-height: 1em;
font-weight: normal;
font-style: italic;
text-align: left;
padding-right: 20px;
}
h3 {
font-weight: normal;
text-align: center;
line-height: 100%;
}
#subtitle {
position: absolute;
right: 0;
top: 20px;
text-align: right
}
section {
width: 75%;
margin: 0 auto 0 auto;
position: relative;
z-index: 1000;
}
a {
color: #ffffff;
text-decoration: none
}
p {
margin-bottom: 1em
}
div.experiment {
position: absolute;
width: 281px;
border-radius: 10%;
-moz-border-radius: 10%;
-webkit-border-radius: 10%;
background: rgba(100, 100, 100, 0.5);
padding: 0.35%;
top: 0px;
left: 0px;
display: none;
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), to(rgba(255, 255, 255, 0.15)));
}
div.inner {
position: relative;
top: 35%;
background: rgba(130, 130, 130, 0.5);
height: 20%;
padding: 5%;
}
div.fadeable {
width: 100%;
height: 100%;
border-radius: 10%;
-moz-border-radius: 10%;
-webkit-border-radius: 10%;
}
.headersquare {
border-radius: 0px 0px 10% 10%;
-moz-border-radius: 0px 0px 10% 10%;
-webkit-border-radius: 0px 0px 10% 10%;
background: rgba(100, 100, 100, 0.85);
padding: 1%;
position: absolute;
width: 100%;
display: none;
}
footer {
position: absolute;
right: 10px;
bottom: 10px;
z-index: 200;
font-size: 8pt;
}