-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (76 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
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Work Sans', sans-serif;
}
*::selection{
background-color: rgb(73, 146, 241);
}
.home-content{
padding: 20px;
background: linear-gradient(90deg,#6cef3c,#e48ad3);
min-height: 100vh;
}
.home-content img{
position: absolute;
height: 81px;
width: 180px;
border-radius: 25px;
}
.hc-head{
text-align: center;
padding: 20px;
font-weight: 600;
font-size: 50px;
}
.home-content .home-bio{
margin: 5px 0;
display:flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.trans{
position: relative;
margin:15px;
overflow: hidden;
border: 2px solid #e0892c;
border-radius: 10px;
cursor:pointer;
width:400px;
height:350px;
background: rgba(255, 255, 255, 0.363);
padding: 10px 0px;
}
.trans-con {
padding:30px;
text-align:center;
}
.trans-head{
margin-top: 10px;
text-align:center;
padding:10px;
}
.box-text #btn{
align-content: center;
margin:20px 30px;
padding: 0.938rem 9.188rem;
border: none;
color: #fff;
font-size: 21px;
font-weight: 500;
letter-spacing: 1px;
border-radius: 10px;
background-color:#e02ca1;
cursor: pointer;
transition: all 0.3s ease;
}
.box-text #btn:hover{
background-color:#cf7e28b9;
}
.p-con{
text-align: center;
padding: 20px;
font-size:25px;
}