forked from rp18/lobster-bliss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (53 loc) · 1.02 KB
/
styles.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
#container {
position: relative;
}
#container canvas, #overlay {
background-color: rgba(0,0,0,.5);
height: 100%;
padding: 2%;
width: 100%;
position: absolute;
}
#container canvas, #background {
font-family: 'Raleway', sans-serif;
height: 80%;
padding: 2%;
width: 90%;
position: relative;
}
#container canvas, #content{
background-color: rgba(0,0,0,.5);
color: white;
text-shadow: 2px 2px black;
margin: 5%;
padding: 2%;
height: auto;
opacity: 100%;
background: -moz-linear-gradient(left, rgba(28,28,28,1) 0%, rgba(43,43,43,1) 24%, rgba(17,17,17,1) 40%, rgba(11,11,11,1) 43%, rgba(0,0,0,0.89) 49%, rgba(44,44,44,0.87) 50%, rgba(76,76,76,0) 100%); /* FF3.6-15 */
}
#headline{
width:auto;
}
h1 {
font-size: 3em;
width:auto;
text-align: center;
margin: auto;
}
#content h3{
text-align: center;
}
#content iframe {
display:block;
margin: auto;
opacity: 100%;
}
#exit{
cursor: pointer;
float: right;
color: red;
text-shadow: 2px 2px black;
}
canvas {
border: 1px solid black;
}