-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (76 loc) · 1.32 KB
/
style.css
File metadata and controls
79 lines (76 loc) · 1.32 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
* {
box-sizing: border-box;
}
body{
height: 100dvh;
display: flex; flex-direction: column;
align-items: center;
justify-content: center;
background-color:rgb(19, 4, 25);
font-family: 'Outfit';
color: white;
}
.container{
padding: 20px;
width: 300px;
height: auto;
border-radius: 20px;
display: flex; flex-direction: column;
justify-content: center; align-items: center;
background-color:rgb(63, 14, 83);
box-shadow: 0px 0px 5px 4px plum;
}
.container img{
width: 120px;
justify-self: center;
border: 3px solid white;
border-radius: 50%;
}
.container h2{
margin: 0;
padding: 10px;
font-weight: 600;
}
.container h5{
margin: 0;
padding-bottom: 15px;
font-weight: 500;
color: plum;
font-size: 15px;
}
.container p{
margin: 0;
padding-bottom: 15px;
font-size: 15px;
}
.container a {
display: block;
width: 100%;
margin: 10px;
}
.btn {
display: flex;
align-items: c;
width: 100%;
gap: 20px;
padding: 12px;
background-color: plum;
color: black;
border-radius: 8px;
box-shadow: 0px 0px 1px 4px rgb(249, 208, 249);
text-align: center;
font-size: 16px;
font-weight: 600;
text-decoration: none;
margin: 8px 0;
transition: background 0.2s ease;
}
.container i{
align-self: flex-start;
}
.btn:hover {
background-color: #e0f7ff;
}
#last{
font-size: small;
}