-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (80 loc) · 1.31 KB
/
style.css
File metadata and controls
83 lines (80 loc) · 1.31 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
/**Welcome to the dimension CSS,
beautiful and unknown . . .**/
body {
margin: 0;
font-family: Arial;
color: #FFF !important;
background-color: #000 !important;
line-height: 1.3em;
}
h1 {
text-align: center;
line-height: 1.2em;
margin: 0;
font-size: 32px;
}
p {
text-align: center;
font-size: 16px;
color: #FFF;
line-height: 1.2em;
margin-top: 0 ;
margin-bottom: 0;
}
a {
color: lightblue;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
canvas {
padding: 0;
margin: auto;
display: block;
width: 100%;
height: 100vh;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index:-2;}
footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
justify-content: center;
display: flex;
}
.container {
width: 80%;
max-width: 1300px;
display: flex;
justify-content: center;
margin: 0 auto;
overflow: hidden;
}
.ghost-box {
background-color: rgba(17, 17, 17, 0.35);
padding: 1em 1.5em 1em 1.5em;
margin: 1em;
border-radius: 5em;
}
/*Responsive..................................................................*/
@media (max-width: 750px) {
h1 {
font-size: 20px;
}
p {
font-size: 13px;
}
.container {
width: 95%;
}
.ghost-box {
padding: 1em;
border-radius: 2em;
}
}