-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
width: 100vw;
display: flex;
}
aside{
flex: 0 0 20%;
background-color: #c4c4c4;
}
aside > div{
background-color: #828ccc;
height: 2rem;
width: 60%;
margin: 1rem auto;
}
.main-wrap{
display: flex;
width: 100%;
flex-direction: column;
}
header{
flex: 0 0 fit-content;
padding: 1rem;
background-color: #f8f4f4;
display: flex;
justify-content: flex-end;
}
.logo{
background-color: #c4c4c4;
display: inline-block;
padding: .2rem;
border-radius: 5px;
font-family: sans-serif;
}
main{
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
form{
background-color: #decaca;
height: 350px;
width: 80%;
padding: 3rem;
display: flex;
flex-direction: column;
gap: 5rem;
}
input{
padding: .5rem;
background-color: #f0efef;
border: none;
border-radius: 5px;
width: fit-content;
margin: 0 auto;
}
button{
width: fit-content;
background-color: #c4c4c4;
border: none;
align-self: center;
padding: .5rem 2rem;
border-radius: 5px;
}
.avatar{
height: 30px;
width: 30px;
background-color: #c4c4c4;
border-radius: 50%;
margin: 2rem;
position: absolute;
bottom: 0;
right: 0;
}
@media screen and (max-width: 750px) {
}