-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (112 loc) · 2.3 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
@font-face {
font-family: LetristaScript;
src: url("font/LetristaScript.woff") format("woff"), url(font/LetristaScript.woff2) format("woff2"), url(font/LetristaScript.eot), url(font/LetristaScript.eot?#iefix) format("embedded-opentype"), url(font/LetristaScript.otf) format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}
body.dark-mode {
background-color: #1a1a1a;
color: #fff;
}
.section {
background-color: #333;
color: #fff;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
padding: 40px;
transition: background-color .3s ease;
}
.section-img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
transition: transform .3s ease;
}
.section-img:hover {
transform: scale(1.1);
}
footer a,
.footer:hover,
.nav-item a:hover {
transition: color .3s ease;
text-decoration: none;
color: #fff;
}
.btn,
.btn-custom-border {
color: #fff;
transition: box-shadow .3s ease, background-color .3s ease, transform .3s;
background-color: purple;
}
.btn:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, .3);
background-color: purple;
}
.btn-custom-border {
border: 2px solid purple;
}
.btn-custom-border:hover {
transform: scale(1.1);
}
.footer:hover,
.nav-item a:hover {
color: purple;
}
.fullscreen-image {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .8);
display: flex;
justify-content: center;
align-items: center;
cursor: auto;
}
.fullscreen-image img {
max-width: 90%;
max-height: 90vh;
}
.close-button {
position: absolute;
top: 20px;
right: 20px;
font-size: 30px;
color: #fff;
}
.close-button:hover {
cursor: pointer;
}
.band-banner {
position: relative;
text-align: center;
color: white;
}
.band-banner img {
width: 100%;
height: auto;
}
.social {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
}
.social a {
margin: 0 15px;
font-size: 40px;
color: white;
transition: all .3s ease;
}
.social a:hover {
color: purple;
transform: scale(1.2);
}