-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (47 loc) · 925 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (47 loc) · 925 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
49
50
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');
body {
align-items: center;
background-color: #f0fff0;
display: flex;
height: 100vh;
justify-content: center;
font-family: "Poppins", sans-serif;
}
.container{
margin-top: 50px;
margin-left: 15px;
}
.btn{
width: 90px;
height: 60px;
font-size: 15px;
border-radius: 30px;
border: none;
color: white;
vertical-align: top;
transition: .6s ease-in-out;
}
.btn:hover{
cursor: pointer;
}
.btn2{
width: 90px;
height: 60px;
font-size: 15px;
border-radius: 30px;
border: none;
color: white;
vertical-align: top;
transition: .6s ease-in-out;
}
.btn2:hover{
cursor: pointer;
}
.btn-property{
background: linear-gradient(145deg, #800080, #ffc0cb);
border: 3px solid rgba(255, 255, 255, .4);
}
.btn-property:focus,
.btn-property-pressed:focus{
border: 3px solid rgba(46, 74, 112, .75);
}