-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.css
More file actions
67 lines (56 loc) · 976 Bytes
/
Copy pathadd.css
File metadata and controls
67 lines (56 loc) · 976 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
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
.container{
display: flex;
background: white;
border-radius: 20px;
overflow: hidden;
height: 500px;
width: 900px;
box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.sidebar{
width: 240px;
padding: 30px;
background: linear-gradient(180deg,#5c5cff,#7c6c);
}
.menu{
list-style: none;
}
.menu li{
font-size: 20px;
cursor: pointer;
border-radius: 8px;
margin-bottom: 70px;
transition: 0.3s;
padding: 20px;
}
.menu li:hover{
background: blue;
}
.container h1{
text-align: center;
margin-bottom: 40px;
}
.input{
margin-bottom: 20px;
}
label{
display: block;
margin-bottom: 8px;
font-weight: bold;
font-size: 14px;
}
input,textarea,select{
width: 100%;
outline: none;
padding: 12px;
border-radius: 6px;
border-color: blue;
}
button{
padding: 20px 50px;
background-color: #5c5cff;
border-radius: 5cm;
}
.row{
display: flex;
}