-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (98 loc) · 2.06 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Press+Start+2P&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Orbitron", sans-serif;
background-color: #1F2937;
text-align: center;
color: #f2f2f2;
}
.title {
font-family: 'Press Start 2P', cursive;
text-shadow: 0px 6px #395c98;
font-size: 3rem;
color: #7696de;
}
.logo > img {
margin: 30px;
filter: drop-shadow(0 0 1rem black);
height: 200px;
}
#banner {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(49, 168, 221, 0.5), rgba(0, 0, 0, 0.6)),
url('assets/code.png') center/cover;
font-size: 1.25rem;
height: 585px;
}
.banner-content {
text-align: center;
font-weight: bold;
letter-spacing: 5px;
}
button {
margin: 30px;
border: 5px solid #afa16e;
border-image: linear-gradient(#e9c35b, #d38441) 10;
background-color: transparent;
letter-spacing: 5px;
padding: 15px 25px;
color: #FFD43B;
transition: transform 0.2s ease;
}
button:hover {
cursor: pointer;
transform: scale(1.1);
}
.about-content {
display: flex;
justify-content: center;
flex-wrap: wrap;
background: rgba(0, 0, 0, 0.6);
padding: 35px 0;
}
.about-content > div {
display: block;
text-align: center;
width: 680px;
}
.about-content > div > p {
margin: 35px;
line-height: 30px;
}
#requirements-list {
margin: 30px 0;
}
.requirement-item {
background-color: #1F2937;
border-radius: 30px;
margin: 30px 10px;
padding: 15px 25px;
}
#transform-world {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(49, 168, 221, 0.3), rgba(0, 0, 0, 0.7)), url('assets/bg.png') top/cover fixed;
height: 500px;
}
#transform-world > div > p {
width: 600px;
margin: 0 auto;
}
footer {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(#FFD43B, #d38441);
padding: 20px 0;
}
footer > img {
margin: 10px;
height: 50px;
}