forked from keterFree/posperity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.css
109 lines (93 loc) · 1.84 KB
/
sign.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
body {
font-family: Arial, sans-serif;
background-color: white;
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: space-between;
margin: 0;
padding: 0;
background-image: url("assets/bike.webp");
background-size: cover;
}
header {
background-color: rgba(50, 67, 103,0.9);
color: #fff;
padding: 20px;
text-align: center;
}
/* Additional styles */
.profile {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
flex: 1;
}
.profile-picture img {
max-width: 150px;
border-radius: 50%;
margin-right: 20px;
}
.profile-info h2 {
margin-bottom: 10px;
}
.profile-info p {
margin: 5px 0;
}
.profile-info p a img {
max-width: 30px;
}
footer {
background-color: #333;
color: #fff;
padding: 0px;
text-align: center;
font-size: 2vw;
}
.signup-form,
.login-form {
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
background-color: rgba(255, 255, 255,0.9);
}
@media (min-width: 470px) {
.signup-form,
.login-form {
min-width: 400px;
margin: 50px auto;
border-radius: 5px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
}
.signup-form h2,
.login-form h2 {
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-weight: bold;
}
.form-group input {
width: 90%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 10px;
background-color: #0e1f3d;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}