-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (41 loc) · 868 Bytes
/
style.css
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
*{
margin: 0;
padding: 0;
}
.banner{
width: 100%;
height: 635px;
/* background: black;
color: #ffff; */
background: url(./images/beach.jpg);
background-size: cover;
background-position: center;
}
.banner-text{
text-align: center;
padding-top: 220px;
}
span{
font-size: 35px;
/* background: linear-gradient(to right, green,yellow,red); */
color: black;
background: linear-gradient(to right, #2fda04, #FFF200, #FF0000);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
.login-form{
width: 400px;
height: 300px;
padding: 30px;
margin: 80px auto;
border: 10px solid black;
}
.login-form input{
width: 380px;
height: 30px;
border: 2px solid #00ff55;
}
.button input{
background: linear-gradient(to right, green,yellow,red);
width: 386px;
}