-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
110 lines (100 loc) · 2.9 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
font-family: "Poppins", sans-serif;
}
body{
background: linear-gradient(0deg,rgba(0,0,0,0.2),rgba(0,0,0.2)),url("https://img.freepik.com/free-vector/isometric-chatbot-flowchart-with-smartphones-computers-message-bubbles_1284-55214.jpg?w=740&t=st=1694537386~exp=1694537986~hmac=ac1256421c1e53ae371959fe340c1564a933fa2840a3dadd0552f4b65761ba9b");
background-size: cover;
background-position: center;
}
.wrapper {
display: grid;
place-content: center;
background-color: var(--background-color);
min-height: 10vh;
font-family: "Poppins", sans-serif;
font-size: 35px;
font-weight: 700;
text-transform: uppercase;
color: var(--text-color);
}
.wrapper > div {
grid-area: 1/1/-1/-1;
}
.top {
clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}
.bottom {
clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
color: transparent;
background: -webkit-linear-gradient(177deg, black 53%, var(--text-color) 65%);
background: linear-gradient(177deg, black 53%, var(--text-color) 65%);
background-clip: text;
-webkit-background-clip: text;
transform: translateX(-0.02em);
}
section{
box-sizing: border-box;
/* --background-color: rgba(0, 0, 0, 0.046); */
--text-color: hsla(0, 0%, 98%, 0.885);
margin: 0;
font-size: 10px;
}
.content{
width: 50%;
color: white;
text-align: center;
position: absolute;
left: 50%;
top: 50%;
border-radius: 15px;
padding: 60px;
transform: translate(-50%, -50%);
backdrop-filter: blur(7px) saturate(170%);
-webkit-backdrop-filter: blur(7px) saturate(170%);
background-color: rgba(0, 0, 0, 0.48);
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.3);
}
.nav_flex{
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-left: 50px;
padding-right: 50px;
}
.button{
padding: 7px 20px;
border: 0;
border-radius: 100px;
background-color: #2ba8fb;
color: #ffffff;
font-weight: Bold;
transition: all 0.5s;
-webkit-transition: all 0.5s;
}
.button:hover {
background-color: #6fc5ff;
box-shadow: 0 0 20px #6fc5ff50;
transform: scale(1.1);
}
.button:active {
background-color: #3d94cf;
transition: all 0.25s;
-webkit-transition: all 0.25s;
box-shadow: none;
transform: scale(0.98);
}
@media (max-width:988px) {
.content{
width: 95%;
margin-top: 50px;
margin-bottom: 40px;
}
.nav_flex{
padding-left: 25px;
padding-right: 25px;
}
}