-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
73 lines (63 loc) · 1.39 KB
/
style.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
@charset "utf-8";
/* start login page style coding*/
body {
padding: 0;
margin: 0;
background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}
#login-back {
background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .7)), url(photos/vo28ssjt25l21.jpg);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
#login-container {
width: 400px;
}
#login-back input[type='text'],
[type='password'],
[type='email'],
[type='number']::placeholder {
font-family: fontAwesome;
font-size: 18px;
color: gray;
}
#login-back input[type='text'],
[type='password'],
[type='email'],
[type='number'] {
width: 100%;
padding: 13px;
border: 1px solid grey;
margin-bottom: 25px;
outline: none;
}
/*start signup coding*/
#signup-container {
width: 400px;
}
#signup-back {
background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .7)), url(photos/vo28ssjt25l21.jpg);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
}
#signup-back input[type='text'],
[type='password'],
[type='email'],
[type='number']::placeholder {
font-family: fontAwesome;
font-size: 18px;
color: gray;
}
#signup-back input[type='text'],
[type='password'],
[type='email'],
[type='number'] {
width: 100%;
padding: 13px;
border: 1px solid grey;
margin-bottom: 25px;
outline: none;
color: white;
}