-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (41 loc) · 873 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (41 loc) · 873 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
.card{
margin: auto;
width: 50%;
border: 3px solid rgb(5, 7, 110);
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 15%;
left:40%;
border-top-left-radius:20px ;
border-bottom-right-radius: 20px;
}
.btn{
width: 150px;
text-align: center;
outline: none;
border: none;
border-radius: 24px;
font-size: small;
padding: 10px;
background-color: rgb(5, 7, 110);
color: aliceblue;
text-transform: uppercase;
transform: translateX(20px);
transition: all 0.5s;
margin: 10PX;
}
.btn:hover{
background-color: rgb(255, 255, 255);
color: black;
border: 1px solid black;
}
.card-title{
font-weight: bolder;
padding: 20px;
}
.form-label{
font-weight: bolder;
}