-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (70 loc) · 1.26 KB
/
style.css
File metadata and controls
83 lines (70 loc) · 1.26 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
83
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
:root{
--theme-color:#5074f3;
}
body{
background-color: var(--theme-color);
}
.container{
width: 90%;
max-width: 25em;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
}
.card{
width: 100% ;
padding: 4em 0;
background-color: #fff;
text-align: center;
border-radius: 0.5em;
}
.card .img-container{
height: 11.25em;
width: 11.25em;
display: block;
margin: -8.75em auto 0 auto;
background-color: #fff;
box-shadow: 0 0 0 0.3em #fff, 0 0 0 0.9em var(--theme-color);
border-radius: 50%;
}
.img-container img{
width: 100%;
border-radius: 50%;
}
.container button{
display: block;
font-size: 1.2rem;
width: 90%;
margin: 2em auto 0 auto;
padding: 1.1em 0;
border-radius: 0.3rem;
border: none;
outline: none;
font-weight:600 ;
color: #000341;
cursor: pointer;
}
.card h2{
margin-top: 1.8rem;
font-weight: 600;
color: #000341;
}
.card h3
.card h4{
font-size: 1em;
letter-spacing: 0.02em;
margin-top: 0.5em;
font-weight: 300;
color: #90929e;
}
.card i{
color: var(--theme-color);
margin-right: 0.3em;
}