-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (73 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
*::selection {
background: #7d2ae8;
color: #fff;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #B6C7AA;
}
.wrapper {
position: relative;
width: 600px;
height: 400px;
background: #F6E6CB;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
img {
height: 140px;
width: 140px;
border: 5px solid transparent;
outline: 3px solid #647E65;
border-radius: 50%;
}
h2 {
font-size: 1.3em;
color: #647E65;
margin: 15px 0;
}
.btn-group {
width: 100%;
height: 40px;
display: flex;
justify-content: center;
margin-top: 15px;
}
button {
position: absolute;
width: 150px;
height: inherit;
font-size: 1.2em;
color: #fff;
font-weight: 600;
border-radius: 30px;
border: 2px solid #647E65;
outline: none;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}
button:nth-child(1) {
margin-left: -200px;
background: #647E65;
}
button:nth-child(2) {
margin-right: -200px;
color: #647E65;
}
.ending {
font-size: 11px;
margin-top: 80px;
}