-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (71 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (71 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0;
box-sizing: 0;
font-family: 'Poppins', sans-serif;
}
.container {
height: 100vh;
}
form {
float: left;
width: 49%;
height: 100%;
border-right: 3px solid black;
margin-right: 2px;
}
.content-form {
width: 300px;
background-color: white;
margin: 20% 30%;
padding: 5px;
}
.content-form h2 {
margin: 30px 0;
font-size: 2.2em;
}
.content-form #email,#pass {
padding: 10px;
width: 90%;
margin-bottom: 15px;
border-radius: 6px;
border: 2px solid black;
}
.content-form .check {
margin-bottom: 15px;
}
.content-form .check label {
font-size: 1em;
opacity: .8;
}
.content-form .check a{
margin-left: 24px;
opacity: .8;
font-size: .9em;
}
.content-form .sign button {
width: 98%;
padding: 15px 10px;
border: none;
margin-bottom: 15px;
border-radius: 6px;
font-size: 1em;
cursor: pointer;;
}
.content-form .sign button:nth-child(1) {
background-color: rgb(19, 4, 34);
color: white;
}
.content-form .sign button i {
margin-right: 10px;
}
.content-form p {
text-align: center;
font-size: .8em;
}
.image img {
width: 48%;
height: 100vh;
margin: 0 0 0 2px;
object-fit: cover;
}