welcome.scss
1.83 KB
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
131
132
@font-face {
font-family: 'Meath';
src: font-url("MeathFLF.ttf") format('truetype');
}
* {
font-family: Verdana, sans-serif;
margin: 0;
padding: 0;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
}
h1,h4 {
text-decoration: underline;
}
h1 {
font-size: x-large;
}
a {
text-decoration: none;
color: rgb(110, 210, 12);
}
a:visited {
color: rgb(60, 130, 12);
}
#content {
top: 0px;
left: 0px;
width: 100%;
}
.section {
position: relative;
height: 1000px;
left: 50%;
transform: translate(-50%, 0);
overflow: hidden;
}
.background {
position: absolute;
z-index: -1;
}
.content {
position: absolute;
width: 80%;
left: 50%;
transform: translate(-50%, 0);
top: 200px;
height: 400px;
padding: 30px;
z-index: 1;
}
.text {
background: rgba(255, 255, 255, 0.6);
border-style: solid;
border-color: rgba(100, 190, 50, 0.6);
border-radius: 10px;
border-width: 3px;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
}
/*
#title {
position: fixed;
top: 0px;
left: 50%;
transform: translate(-50%, 0);
z-index: 10;
}
#title h1 {
font-family: Meath;
font-weight: bolder;
font-size: 60px;
}
.text {
background: white;
border-style: solid;
border-color: rgb(100, 190, 12);
border-radius: 30px;
border-width: 3px;
padding: 10px;
}
#content {
top: 0px;
left: 0px;
width: 100%;
}
.section {
position: relative;
height: 1200px;
}
.background {
position: absolute;
z-index: -1;
overflow: hidden;
}
.background img {
position: absolute;
top: 0px;
left: 50%;
transform: translate(-50%, 0);
}
#back {
position: fixed;
border-radius: 15px;
border-width: 2px;
z-index: 1;
}
p,h1,h2,h3,h4,h5,h6 {
opacity: 1;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
}
h1,h4 {
text-decoration: underline;
}
h1 {
font-size: x-large;
}
a {
text-decoration: none;
color: rgb(110, 210, 12);
}
a:visited {
color: rgb(60, 130, 12);
}
*/
/* vim: set ts=2 sw=2: */