-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_skills.css
88 lines (76 loc) · 1.48 KB
/
style_skills.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
border: none;
outline: none;
font-family: 'Poppins', sans-serif;
}
html {
font-size: 62.5%;
}
body {
width: 100%;
height: 100vh;
overflow-x: hidden;
background-color: #593221;
color: white;
}
header {
margin-top: 20px;
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 1rem 9%;
background-color: transparent;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
}
.logo {
font-size: 3rem;
color: #34bebe;
font-weight: 800;
cursor: pointer;
transition: 0.5s ease;
}
.logo:hover {
transform: scale(1.1);
}
h1 {
text-align: center;
color: #34bebe;
font-size: 3rem;
margin-top: 80px; /* Ensure it appears below the fixed header */
margin-bottom: 2rem;
}
ul {
list-style-type: none;
padding: 0 10%;
}
li {
background: #593221;
color: #fbec2f;
margin: 10px 0;
padding: 20px;
border-radius: 4px;
font-size: 2.4rem;
font-weight: 500;
display: flex;
align-items: center;
}
li i {
font-size: 3rem; /* Increased size of icons */
margin-right: 20px;
}
li:hover {
background: #34bebe;
color: #593221;
transform: scale(1.03);
box-shadow: 0 0 25px #34bebe;
transition: 0.3s ease;
}