forked from Trivianetix/Trivianetix
-
Notifications
You must be signed in to change notification settings - Fork 3
/
signup.css
88 lines (72 loc) · 1.73 KB
/
signup.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
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
87
88
.sign-up-form {
width: 500px;
padding: 20px;
text-align: center;
position: absolute;
background: url(https://ae01.alicdn.com/kf/HTB1.N60SXXXXXcRXpXXq6xXFXXXK/10x10FT-Dark-Orange-Chocolate-Wooden-Wall-Wood-Props-Custom-Backgrounds-Photography-Studio-Backdrops-Digital-Prints-Vinyl.jpg_640x640q70.jpg);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10%;
box-shadow: 0 10px 2px rgba(0,0,0,0.3);
}
.sign-up-form h1 {
color: rgb(255, 255, 255);
font-size: 45px;
text-decoration: none;
text-shadow: 0 8px 2px rgba(0,0,0,0.3);
}
.sign-up-form input,
.sign-up-form select {
display: block;
width: 100%;
padding: 0 16px;
height: 44px;
color: black;
font-size: 13px;
box-sizing: border-box;
box-shadow: 0 10px 2px rgba(0,0,0,0.3);
}
#entrybox:hover {
font-size: 14px;
}
.txtb{
margin: 20px 0;
border-radius: 6px;
}
input[type=text] {
border-color: rgba(0, 0, 0, .15);
background-color: white;
font-size: 12px;
}
input[type=text]:hover {
font-size: 14px;
}
.signup-btn{
margin-top: 60px;
margin-bottom: 20px;
background: rgba(102, 226, 30, 0.7);
color: black;
border-radius: 44px;
cursor: pointer;
transition: 0.8s;
text-align: center;
box-shadow: 0 10px 2px rgba(0,0,0,0.3);
}
.signup-btn:hover{
transform: scale(1.05);
}
.sign-up-form :hover{
/* background: rgba(185, 182, 182, 0.3); */
background: rgb(227, 222, 222);
}
.sign-up-form h1:hover {
background: none;
}
#signupbutton:hover {
background: rgba(102, 226, 30, 0.7);
font-size: 25px;
}
#signupbutton {
font-size: 20px;
}