-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (97 loc) · 1.7 KB
/
style.css
File metadata and controls
111 lines (97 loc) · 1.7 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100vh;
color: #ffffffda;
background: #333;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.navbar {
z-index: 1;
position: absolute;
left: 180px;
display: flex;
justify-content: center;
align-items: center;
}
nav ul {
gap: 30px;
display: flex;
background: #302f2f;
padding: 20px 35px;
margin-top: 25px;
border-radius: 40px;
}
nav ul li {
list-style: none;
font-size: 18px;
cursor: pointer;
transition: 0.3s ease-in;
}
nav ul li>a {
text-decoration: none;
color: #c1bfbf;
}
ul li:hover, li>a:hover {
scale: 1.2;
color: #5c5a5a;
}
.main{
position: relative;
text-align: center;
top: 200px;
font-size: 26px;
line-height: 1.5;
}
.circle {
margin-top: -90px;
position: absolute;
width: 350px;
height: 400px;
border-bottom-right-radius: 500px;
background: #ffffff;
opacity: 0.1;
z-index: 1;
}
.main h1 {
z-index: 2;
position: relative;
font-size: 4.2rem;
}
.main p {
z-index: 2;
color: #ffffffbe;
position: relative;
font-size: 1.5rem;
line-height: 1.2;
}
.main .note {
margin-top: 20px;
color: #0000006e;
font-weight: 700;
}
button {
width: 100px;
height: 43px;
outline: 0;
border: 0;
margin-top: 30px;
cursor: pointer;
background-color: #5c5a5a;
color: #d0d0d0;
font-weight: 500;
border-radius: 12px;
transition: 0.3s ease-out;
font-size: 22px;
}
button:hover {
background: transparent;
color: #c1bfbf;
scale: 1.2;
border: 1px solid #727070;
border-radius: 10px;
}