-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (77 loc) · 1.59 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html{
height: 100px;
overflow: hidden;
}
body{
background-color: rgb(0, 0, 0);
color: #fff;
display: flex;
flex-flow: column nowrap;
font-family: "Black Ops one" , system-ui, sans-serif;
}
.background{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: scale(1.2);
z-index: -1;
}
.navbar{
display: flex;
justify-content: space-around;
height: 100px;
align-items: center;
}
.menu{
display: flex;
align-items: center;
list-style: none;
gap: 50px;
}
.logo{
font-size: 2rem;
background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.menu li{
font-size: 1rem;
transition: 0.4s;
}
.menu li:hover{
transform: scale(1.2);
background: linear-gradient(45deg, #000dff, #ff00e6, #ff7700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.btn1{
color: #ffff;
padding: 10px 40px;
border-radius: 20px;
border: none;
background: linear-gradient(45deg, hsl(237, 100%, 50%), #ff00e6, #ff7700);
transition: 0.5s;
}
.btn1:hover{
transform: scale(1.2);
}
.mainarea{
display: flex;
align-items: center;
flex: 1;
flex-direction: column;
}
.text{
margin-top: 5px;
font-size: 3rem;
background: linear-gradient(45deg, hsl(237, 100%, 50%), #ff00e6, #ff7700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}