-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
110 lines (94 loc) · 1.8 KB
/
css.css
File metadata and controls
110 lines (94 loc) · 1.8 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
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
body {
background-color: rgb(211, 230, 242);
margin: 0; /* Remove default body margin */
}
#colorstrip {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgb(107, 129, 224);
padding: 10px;
}
.login-container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.login-box {
width: 400px;
/* padding: 20px; */
background-color: #f1f1f1;
border: 1px solid #ccc;
margin: 0; /* Remove margin */
}
.login-box h2 {
text-align: center;
}
.user-input {
margin-bottom: 15px;
}
.user-input label {
display: block;
}
.user-input input {
width: 90%;
padding: 8px 12px; /* Add desired left and right padding */
border: 1px solid #ccc;
}
button[type="submit"] {
width: 40%;
padding: 8px;
background-color: #2e5ab1;
border: none;
color: white;
cursor: pointer;
margin-bottom: 10px;
}
button[type="submit"]:hover {
background-color: #13274F;
}
.login-content {
display: flex;
align-items: center;
background-color: #6082B6;
color: white;
padding: 10px;
margin-top: 0;
margin-bottom: 15px;
}
.login-content img {
width: 50px; /* Adjust the image width as desired */
height: auto; /* Preserve the aspect ratio */
margin-right: 10px;
}
.form-content{
margin-left: 10px;
margin-right: 10px;
}
.link-container {
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px;
}
.forgot-link {
color: #4CAF50;
text-decoration: none;
}
.register-link {
color: #4CAF50;
text-decoration: none;
}
.success-msg {
display: flex;
box-align: center;
color: green;
font-weight: bold;
}