-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (47 loc) · 840 Bytes
/
style.css
File metadata and controls
48 lines (47 loc) · 840 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: whitesmoke;
}
h2 {
text-align: center;
font-size: 3em;
color: #e94d58;
margin: 15px 0;
}
.btn-group {
width: 100%;
height: 40px;
display: flex;
justify-content: center;
margin-top: 50px;
}
button {
position: absolute;
width: 150px;
height: inherit;
color: white;
font-size: 1.2em;
border-radius: 30px;
outline: none;
cursor: pointer;
box-shadow: 0 2px 4px gray;
border: 2px solid #e94d58;
font-size: 1.2em;
}
button:nth-child(1) {
margin-left: -200px;
background: #e94d58;
}
button:nth-child(2) {
margin-right: -200px;
background: white;
color: #e94d58;
}