-
Notifications
You must be signed in to change notification settings - Fork 1
/
login & signup.css
115 lines (105 loc) · 2.02 KB
/
login & 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Nunito Sans", sans-serif;
}
#main_cont{
display: grid;
grid-template-columns: 1fr 2fr;
width: 100vw;
height: 100vh;
}
#form{
padding: 30px;
width: 100%;
display: grid;
align-content: flex-start;
}
#form>img{
width: 50%;
margin: auto;
}
#form>p{
font-size: 35px;
margin: 20px auto;
text-align: center;
}
#form>form{
display: grid;
gap: 10px;
text-align: left;
}
#form>form>input:not(#submit){
padding: 15px;
border: 0.5px solid grey;
border-radius: 5px;
margin-bottom: 20px;
}
#submit{
margin: 10px 0;
background-color: #f2603e;
color: white;
padding: 10px 0;
font-size: 20px;
border-radius: 0px;
letter-spacing: 1px;
border: 1px solid rgb(242,96,62);
}
#submit+div>p{
text-align: center;
line-height: 20px;
color: grey;
}
#submit+div a{
text-decoration: none;
color: grey;
}
#back_svg{
background: linear-gradient(145deg, rgba(43,31,238,1) 0%, rgba(44,134,179,1) 59%, rgba(6,198,237,1) 100%);
display: grid;
grid-template-rows: 1fr 5fr;
padding: 20px 0;
}
#back_svg>:first-child{
display: flex;
width: 80%;
margin-left: 15%;
align-items: center;
color: white;
border-radius: 10px;
font-size: 15px;
padding: 0 10px;
gap: 20px;
background: linear-gradient(145deg, rgba(31,117,238,1) 0%, rgba(44,134,179,1) 56%, rgba(6,198,237,1) 100%);
}
#back_svg>:first-child>img{
border-radius: 50%;
border: 5px solid grey;
}
#back_svg>:last-child>img{
width: 70%;
}
#back_svg>:last-child{
display: flex;
align-items: center;
justify-content: center;
}
@media all and (min-width:1250px) {
#form{
width: 400px;
margin: 0 auto;
}
}
@media all and (max-width:950px) {
#back_svg{
visibility: hidden;
}
#main_cont{
grid-template-columns: 1fr;
}
#form{
width: 450px;
margin: auto;
}
}