-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (93 loc) · 1.27 KB
/
style.css
File metadata and controls
104 lines (93 loc) · 1.27 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
body {
margin: 0;
padding: 0;
}
.background {
background-image: url('images/nea2.png');
background-size: cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.content {
text-align: center;
color: #ffffff;
}
h1 {
font-size: 5em;
margin: 0;
padding: 0;
}
p {
font-size: 2em;
margin: 0;
padding: 0;
}
.button {
display: inline-block;
position: relative;
font-size: 1.5em;
padding: 0.5em 1em;
background-color: #9d6cf2;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
margin-top: 1em;
overflow: hidden;
}
.enter-button a:hover {
background-color: #8039b7;
}
.text {
display: inline-block;
transition: transform 0.3s ease;
}
.icon {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
}
.fa-arrow-right {
font-size: 1em;
}
@media (max-width: 768px) {
h1 {
font-size: 3em;
}
p {
font-size: 1.5em;
}
.button {
font-size: 1em;
padding: 0.4em 0.8em;
margin-top: 0.5em;
}
.text {
font-size: 0.8em;
}
.icon {
right: 5px;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2em;
}
p {
font-size: 1em;
}
.button {
font-size: 0.8em;
padding: 0.3em 0.6em;
margin-top: 0.3em;
}
.text {
font-size: 0.6em;
}
.icon {
right: 3px;
}
}