forked from nihalsrivastava02/Hackathon-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_assignment1.css
More file actions
69 lines (61 loc) · 1.37 KB
/
create_assignment1.css
File metadata and controls
69 lines (61 loc) · 1.37 KB
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
.container-login100-form-btn {
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.login100-form-btn {
font-family: Poppins-Medium;
font-size: 16px;
color: #555555;
line-height: 1.2;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 20px;
min-width: 120px;
height: 75px;
border-radius: 15px;
background: #9152f8;
background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
background: -o-linear-gradient(bottom, #7579ff, #b224ef);
background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
background: linear-gradient(bottom, #7579ff, #b224ef);
position: relative;
z-index: 1;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
.login100-form-btn::before {
content: "";
display: block;
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
border-radius: 25px;
background-color: #fff;
top: 0;
left: 0;
opacity: 1;
-webkit-transition: all 0.4s;
-o-transition: all 0.4s;
-moz-transition: all 0.4s;
transition: all 0.4s;
}
.login100-form-btn:hover {
color: #fff;
}
.login100-form-btn:hover:before {
opacity: 0;
}