-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
117 lines (113 loc) · 2.82 KB
/
home.css
File metadata and controls
117 lines (113 loc) · 2.82 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
111
112
113
114
115
116
117
*{
margin: 0;
padding: 0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body{
background-color: #121212;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
overflow: hidden;
}
body::before {
content: "";
position: absolute;
inset: 0;
/* Animated LinkedIn graph pattern */
background-image:
radial-gradient(circle at 10% 20%, rgba(53,165,252,0.18) 0.8px, transparent 3px),
radial-gradient(circle at 80% 30%, rgba(53,165,252,0.14) 0.8px, transparent 3px),
radial-gradient(circle at 30% 70%, rgba(53,165,252,0.16) 0.8px, transparent 3px),
radial-gradient(circle at 60% 80%, rgba(53,165,252,0.12) 0.8px, transparent 3px),
radial-gradient(circle at 20% 40%, rgba(53,165,252,0.15) 0.8px, transparent 3px),
radial-gradient(circle at 70% 60%, rgba(53,165,252,0.13) 0.8px, transparent 3px),
linear-gradient(120deg, rgba(53,165,252,0.14) 2px, transparent 1px),
linear-gradient(300deg, rgba(53,165,252,0.14) 2px, transparent 1px);
background-size: 80px 80px, 90px 90px, 70px 70px, 100px 100px, 60px 60px, 75px 75px, 30px 30px, 30px 30px;
animation: networkMove 30s linear infinite;
z-index: 0;
}
@keyframes networkMove {
from {
background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
}
to {
background-position: 400px 200px, -300px 150px, 200px -250px, -150px -300px, 120px 60px, -120px -60px;
}
}
.logsign{
position: absolute;
top: 20px;
right: 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
z-index: 2;
}
.btn{
background-color: #00487e2b;
border-radius: 15px;
padding: 10px 30px;
color: white;
border: 1px solid #35a5fc;
text-decoration: none;
transition: transform 0.5s ease;
}
.heading{
margin-bottom: 20px;
}
.content{
background-color: rgb(46, 46, 46);
padding: 30px;
box-sizing: border-box;
box-shadow: 4px 4px 40px #35a5fc;
border-radius: 15px;
z-index: 2;
}
h1{
color: #35a5fc;
font-weight: bold;
font-size: 70px;
margin-bottom: 30px;
}
input{
width: 500px;
height: 26px;
border-radius: 15px;
border: none;
padding: 10px;
font-size: 16px;
margin-right: 10px;
background-color: #121212;
color: white;
}
.analyzebutton{
width: 150px;
height: 48px;
border-radius: 15px;
border: none;
background-color: #35a5fc;
color: rgb(218, 218, 218);
font-size: 16px;
cursor: pointer;
transition: transform 0.5s ease;
}
button:hover{
transform: translateY(-6px);
cursor: pointer;
}
button:active{
opacity: 0.9;
cursor: pointer;
}
.btn:hover {
transform: translateY(-6px);
}
.btn:active {
opacity: 0.9;
}