-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (82 loc) · 1.54 KB
/
style.css
File metadata and controls
82 lines (82 loc) · 1.54 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.container{
width: 100%;
height: 100vh;
background: #1b1f36;
display: flex;
align-items: center;
justify-content:center;
}
.box{
background: #fe5b15;
text-align: center;
padding: 40px 80px;
color: white;
position: relative;
border-radius: 25px;
box-shadow: 5px 6px 7px rgba(244, 67, 54, 0.5);
}
.box h2{
font-size: 25px;
font-weight: 300;
margin-bottom: 8px;
}
.box p{
margin-bottom: 5px;
}
.fa-bars{
width: 25px;
position: absolute;
left: 30px;
top: 30px;
}
.profile{
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
background: #fff;
padding: 4px;
margin:25px;
margin-top: 50px;
}
.fa-brands{
width: 19px;
margin: 25px 5px;
cursor: pointer;
}
.box button{
background-color: #fff;
color: #f66335;
border: none;
outline: none;
box-shadow: 0 5px 10px rgba(244, 67, 54, 0.5);
padding: 15px 50px;
cursor: pointer;
border-radius: 25px;
margin-bottom: -50px;
font-weight: 600;
font-size: 15px;
margin-top: 10px;
}
.bottom{
background: #fff;
color:#000;
padding: 50px 0;
margin-left: -80px;
margin-right: -80px;
margin-bottom: -40px;
border-radius: 25px;
margin-top: -10px;
}
.fa-solid{
width: 20px;
margin-top: 15px;
cursor: pointer;
padding-top: 10px;
}