-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (50 loc) · 1022 Bytes
/
Copy pathstyles.css
File metadata and controls
58 lines (50 loc) · 1022 Bytes
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
body {
background-color: #121212;
color: #e0e0e0;
}
.standard-header {
background-size: cover;
background-position: center;
min-height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-content {
display: flex;
align-items: center;
color: rgb(255, 255, 266);
text-shadow: 2px 2px 4px #000000;
}
.header-logo {
width: 100px;
height: 100px;
border-radius: 25%;
}
.header-text {
margin-left: 10px;
}
.header-text h1 {
margin: 0;
font-weight: bold;
}
.header-text h3 {
margin: 0;
font-weight: bold;
}
.nav-btn {
padding: 25px 55px;
cursor: pointer;
border-radius: 8px;
background: transparent;
border: 2px solid rgba(255,255,255,0.8);
color: white;
font-weight: bold;
font-size: 24px;
backdrop-filter: brightness(1.05);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
transition: all 0.2s ease;
}
.header-color {
background: linear-gradient(90deg, rgb(31, 0, 32) 0%, rgb(76, 1, 99) 50%, rgb(165, 1, 183) 100%);
}