-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (122 loc) · 2.26 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
margin: 0;
padding: 0;
color: #fff;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #222;
}
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#cc33ff,#ac00e6);
clip-path: circle(30% at left 70%);
}
body::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(#08ff73,#08ff73);
clip-path: circle(20% at right 10%);
}
section {
position: relative;
display: flex;
max-width: 1200px;
flex-wrap: wrap;
z-index: 1;
}
section .card {
position: relative;
width: 2800px;
height: 550px;
margin: 30px;
box-shadow: 20px 20px 50px #12121280;
border-radius: 15px;
background: #ffffff1;
overflow: hidden;
display: flex;
border-top: 1px solid #ffffff80;
border-left: 1px solid #ffffff80;
backdrop-filter: blur(5px);
}
section .card .item {
padding: 20px;
text-align: left;
opacity: 1; /* 0 */
transition: 0.5s;
}
section .card .item .logo{
padding: 40px;
font-size: 25px;
color: white;
font-weight: bold;
font-family: Tahoma;
}
section .card .item nav{
position: absolute;
top: 30px;
left: 500px;
}
section .card .item nav a{
text-decoration: none;
font-style: none;
padding-left: 40px;
color: lavender;
}
section .card .item li{
padding-top: 120px;
padding-left:50px;
list-style-type: none;
}
section .card .item h1{
font-size: 2.6rem;
font-family: Verdana;
}
section .card .item p{
max-width: 450px;
text-align: left;
padding-top: 15px;
padding-left: 0;
}
section .card .item .btn{
border: none;
padding: 15px;
font-size: 13px;
font-weight: bolder;
border-radius:25px;
color:lavender;
background-color: #260d26;
}
section .card .item .btn:hover{
background-color:lavender ;
color: #260d26;
}
section .card .item .img1{
width:500px;
position: relative;
top:-340px ;
left: 530px;
}
section .card .item .copy{
position: relative;
top:120px ;
left: 20px;
font-weight: bold;
color: lavender;
}
section .card .item .copy span{
color:#ac00e6;
}