-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuttons.css
More file actions
44 lines (44 loc) · 793 Bytes
/
buttons.css
File metadata and controls
44 lines (44 loc) · 793 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
*{
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
.my-buttons{
display: flex;
align-items: center;
justify-content:space-evenly
}
.button{
margin-top: 3rem;
padding:0.4rem 1rem;
text-decoration: solid;
width: 160px;
border: 1px solid black;
cursor: pointer;
outline: none;
font-size: 1.3rem;
}
.button:hover{
background-color: rgb(199, 250, 232);
}
.info{
font-size: 2rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%);
}
.main-button{
position: absolute;
top: 60%;
left: 50%;
margin-top: 1rem;
transform: translate(-50%);
padding: 1rem;
border-style: none;
outline: none;
cursor: pointer;
}
.main-button:hover{
background: rgb(255, 224, 184);
}