-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstruction.css
112 lines (90 loc) · 2.08 KB
/
Instruction.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
@charset "utf-8";
/* CSS Document */
body, html {
height:100%;
width: 100%;
}
body{
background-color: #026873;
background-image: linear-gradient(90deg, rgba(255,255,255,.07) 50%, transparent 50%),
linear-gradient(90deg, rgba(255,255,255,.13) 50%, transparent 50%),
linear-gradient(90deg, transparent 50%, rgba(255,255,255,.17) 50%),
linear-gradient(90deg, transparent 50%, rgba(255,255,255,.19) 50%);
background-size: 13px, 29px, 37px, 53px;
}
* {
margin: 0px;
padding: 0px;
}
#container{
position: absolute;
height:100%;
width: 100%;
text-align:center;
}
#title{
width: 100%;
text-align:center;
}
#title h1 {
font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
font-variant:small-caps;
color: #FFF;
font-size: 40px;
background-color: #6d695c;
background-image:
repeating-linear-gradient(120deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
repeating-linear-gradient(60deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
linear-gradient(60deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)),
linear-gradient(120deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1));
background-size: 70px 120px;
}
#main_page{
position:absolute;
width:100%;
height: 100%;
text-align:left;
}
#instr{
position:absolute;
top: 130px;
font:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 20px;
line-height: 30px;
min-width: 630px;
max-width: 600px;
left: 33%;
}
#div_papiros{
position:absolute;
width: 0px;
height: 0px;
left: 30%;
}
#papiros {
width: 640px;
height: 850px;
}
#back{
position: relative;
width: 80px;
left: 5%;
transition:all .1s;
-webkit-transition: all .1s;
}
#home{
position: relative;
width: 80px;
left: 90%;
bottom: 75px;
transition:all .1s;
-webkit-transition: all .1s;
}
#back_img:hover{
transform: translateX(-10px);
-webkit-transform: translateX(-10px);
}
#home_img:hover{
transform: translateX(-10px);
-webkit-transform: translateX(-10px);
}