Skip to content

Commit 152352b

Browse files
updated
1 parent 191d5de commit 152352b

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

26_miniproject/project06/style.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
body {
8+
font-family: 'Poppins', sans-serif;
9+
background-color: #121316;
10+
}
11+
12+
#header-bar {
13+
display: flex;
14+
justify-content: space-between;
15+
align-items: center;
16+
padding: .25rem;
17+
background-color: #1e1e22;
18+
}
19+
20+
#logo{
21+
display: flex;
22+
flex-direction: column;
23+
align-items: left;
24+
justify-content: left;
25+
/* padding: 1rem; */
26+
}
27+
28+
#logo h1 {
29+
color:transparent;
30+
font-size: 1.5rem;
31+
font-weight: bold;
32+
background : linear-gradient(90deg, #FEC45D, #FC6E7B, #995FBB);
33+
-webkit-background-clip: text;
34+
-webkit-text-fill-color: transparent;
35+
background-clip: text;;
36+
padding: 1rem;
37+
}
38+
39+
#logo p{
40+
color: #ffffff;
41+
font-size: 1rem;
42+
font-weight: bold;
43+
/* padding: 1rem; */
44+
}
45+
46+
#language h1 {
47+
color: #ffffff;
48+
font-size: 1rem;
49+
font-weight: bold;
50+
padding: 1rem;
51+
}
52+
53+
#header-bar h1:hover {
54+
cursor: pointer;
55+
transition: all 0.3s ease-in-out;
56+
transform: scale(1.05);
57+
}
58+

0 commit comments

Comments
 (0)