-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (37 loc) · 716 Bytes
/
style.css
File metadata and controls
41 lines (37 loc) · 716 Bytes
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
body {
margin:0px;
height: 100vh;
width: 100vh;
}
header {
width: 100vw;
height: 10vh;
padding: 0px;
display: flex;
background-color: #e29578;
align-items: center;
justify-content: center;
}
#main-body {
width:100vw;
height: 90vh;
padding: 0px;
background-color: #ffddd2;
display: flex;
align-items: center;
justify-content: center;
}
.rounded-box {
border-radius: 25px;
width: 400px;
height: 300px;
}
#login-box {
width: 65%;
max-width: 600px;
box-shadow: 5px 5px 5px #006d77;
background: #edf6f9;
display: flex;
align-items: center;
justify-content: center;
}