-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-07-2021.css
91 lines (80 loc) · 1.62 KB
/
1-07-2021.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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');
:root{
--font-1: 'Quicksand', sans-serif;
--gradient-color : linear-gradient(to right top,
#d000e1,
#b900e1,
#a000e1,
#8400e0,
#6206df,
#6305de,
#6305de,
#6404dd,
#8600dc,
#a100db,
#b900da,
#cf05d9);
--gradient-color-2 : linear-gradient(to right, #906dd4, #ad6cd1, #c76bcb, #dd6bc4, #f16cbb);
}
body{
margin:0%;
padding:0%;
}
.container{
height: 100vh;
background-image:var(--gradient-color);
display: flex;
justify-content: center;
align-items: center;
font-family: var(--font-1);
}
.content{
padding: 2em;
}
.card{
padding: 1em;
width: 20em;
height: 32em;
background-color: #32364F;
border-radius: 15px ;
color: #fff;
text-align: center;
}
.girl{
margin:2em;
width: 10em;
height: 10em;
border-radius: 50%;
filter: drop-shadow(30px 18px 11px #292a3c);
}
.button{
background-image: var(--gradient-color-2);
color: white;
font-family: var(--font-1);
font-size:medium;
padding: 12px 25px;
border-radius: 30px;
font-weight: 500;
border: none;
outline: none;
}
.footer{
display: flex;
justify-content: center;
}
.Name{
font-size: larger;
font-weight: 700;
margin-top: -5px;
}
.job{
color: #6D6D87;
font-weight: 800;
padding-top: 2px;
text-transform: uppercase;
margin-bottom: 20px;
padding-top: 0.1cm;
}
.text{
color:rgb(241, 241, 241);
}