-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathstyle.css
File metadata and controls
57 lines (57 loc) · 1.23 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
body {
/* display:flex; */
justify-content: center;
align-items: center;
gap: 15px;
flex-direction: column;
height: 100vh;
background-image: url("1215957.jpg");
background-attachment: fixed;
background-size: cover;
}
.body{
width: 500px;
clear: both;
}
#form {
mix-blend-mode: lighten;
color: aliceblue;
justify-content: center;
display: inline-block;
cursor: pointer;
transition: 0.3s;
padding: 15px 20px;
align-items: flex-start;
box-sizing: content-box;
}
.button {
/* color: white; */
text-align: center;
padding: 5px;
margin: 5px;
width: 100%;
justify-content: center;
}
.button1 {
width: 150px;
font-size: 16px;
font-weight: 600;
background-image: linear-gradient(to right, white, black, black);
color: black;
cursor: pointer;
margin: 10px;
height: 35px;
text-align: center;
border: none;
background-size: 300% 100%;
box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
border-radius: 50px;
moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.button1:hover {
background-image: linear-gradient(to right, red, white, white);
box-shadow: 0 5px 15px rgba(88, 88, 88, 0.4);
}