forked from zuri-training/anima_lib_team98
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
123 lines (123 loc) · 2.18 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
* {
box-sizing: border-box;
}
@media screen and (max-width: 1440px) {
body {
font-family: Calibri;
font-size: 15px;
width: 99%;
height: 100%;
}
h1 {
margin: 10px;
padding: 30px;
color: white;
background-color: #7d1b7e;
}
h2 {
text-align: center;
font-weight: bold;
font-size: 30px;
}
.label {
margin-left: 20%;
}
input {
border: none;
border-radius: 5px;
padding: 12px;
width: 60%;
margin-bottom: 2%;
margin-left: 20%;
}
fieldset {
border: none;
border-radius: 10px;
background-color: rgb(240, 233, 233);
margin-top: 20px;
margin-left: 30%;
width: 40%;
justify-content: center;
align-items: center;
}
button {
background-color: #ef18f3;
color: white;
border: white;
width: 60%;
margin-top: 15px;
margin-left: 20%;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
.signin {
text-align: center;
margin-top: 40px;
}
a {
text-decoration: none;
color: #7d1b7e;
}
.or:before {
content: " ";
display: block;
height: 1px;
width: 120px;
position: absolute;
top: 50%;
left: 0;
background: black;
}
.or {
position: relative;
max-width: 300px;
margin: 100px auto;
text-align: center;
margin-top: 30px;
margin-bottom: 30px;
}
.or:after {
content: " ";
display: block;
height: 1px;
width: 120px;
position: absolute;
top: 50%;
right: 0;
background: black;
}
.icons {
justify-content: center;
align-items: center;
}
.fa-google {
background: conic-gradient(
from -45deg,
#ea4335 110deg,
#4285f4 90deg 180deg,
#34a853 180deg 270deg,
#fbbc05 270deg
)
73% 55%/150% 150% no-repeat;
-webkit-background-clip: text;
background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
margin-left: 35%;
}
.fa-apple {
margin-left: 5%;
}
.agreement {
margin-top: 30px;
text-align: center;
color: rgb(112, 110, 110);
margin-bottom: 10px;
}
#terms,
#privacy {
text-decoration: none;
color: rgb(112, 110, 110);
}
}