-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (82 loc) · 1.6 KB
/
style.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
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Press Start 2P', cursive;
background-color: #1a1a2e;
color: #e94560;
}
.game-screen {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100vh;
padding: 20px;
box-sizing: border-box;
background: linear-gradient(45deg, #1a1a2e, #16213e);
}
header, footer {
text-align: center;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
}
h2 {
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
margin-bottom: 20px;
}
#typing-text {
font-size: 24px;
margin-bottom: 40px;
min-height: 60px;
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
}
.about, .skills, .links {
margin-bottom: 30px;
text-align: center;
}
.skills ul {
list-style-type: none;
padding: 0;
}
.skills li {
margin-bottom: 10px;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
width: 200px;
}
.btn {
display: inline-block;
width: 100%;
padding: 15px 20px;
margin: 10px 0;
background-color: #e94560;
color: #1a1a2e;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Press Start 2P', cursive;
font-size: 14px;
text-align: center;
box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}
.btn:hover {
background-color: #0f3460;
color: #e94560;
box-shadow: 0 0 15px #e94560;
transform: translateY(-3px);
}
footer p {
font-size: 12px;
color: #00ff00;
}