-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
86 lines (78 loc) · 1.68 KB
/
Copy pathindex.css
File metadata and controls
86 lines (78 loc) · 1.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body{
margin: 0;
padding: 0;
background-image: url(https://www.medibank.com.au/content/dam/retail/travel-pet-life-assets/travel/cruise.jpg);
font-family: 'Quicksand', sans-serif;
background-position: center;
background-size: cover;
width: 100%;
height: 100vh;
background-attachment: fixed;
clip-path: polygon(100% 1%, 100% 49%, 49% 99%, 0% 99%, 0% 0%);
z-index: -3 ;
position: absolute;
}
.container{
width: 250px;
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
background: #fff;
padding: 20px;
margin: 8% auto 0;
text-align: center;
}
h1{
color: blue;
letter-spacing: 2px;
text-transform: uppercase;
font-size: 2em;
-webkit-text-fill-color: transparent;
}
.field1{
border-radius: 20px;
padding: 10px;
margin: 10px 0;
width: 95%;
border: 1px solid #999;
}
.button{
color: #fff;
width: 95%;
padding: 10px;
border-radius: 20px;
font-size: 15px 0;
margin: 10px 0;
cursor: pointer;
}
.signup_bn{
background-color: aquamarine;
}
hr{
margin-bottom: 5px;
width: 90%;
}
.OR{
background: #fff;
width: 22px;
margin:-15px auto 10px;
}
input[type="submit"]{
opacity: 0;
transition: .3s;
}
input:not(:placeholder-shown) + input[type="submit"]{
opacity: 1;
}
::-webkit-scrollbar{
width:12px;
background-color: #999;
}
::-webkit-scrollbar-thumb{
background:linear-gradient(to bottom,#30ff00,rgb(235, 18, 18));
border-radius:6px;
}
::-webkit-scrollbar-thumb:hover{
background:linear-gradient(transparent,aqua);
}
form{
color-scheme: dark;
}