-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsalesReg.css
More file actions
127 lines (123 loc) · 2.02 KB
/
salesReg.css
File metadata and controls
127 lines (123 loc) · 2.02 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.container {
width: 100%;
display: flex;
column-gap: 10px;
}
.sidebar {
flex: 1.5;
border-right: 1.5px solid #000;
}
.profile {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 20px 24px;
border: 0px solid red;
}
.profile-image {
width: 70px;
height: 70px;
border-radius: 50%;
background-color: #d8d8d8;
}
.profile-information {
display: flex;
flex-direction: column;
gap: 4px;
border: 0px solid red;
}
.profile-name {
font-size: 16px;
font-weight: 500;
color: #000;
}
.profile-role {
font-size: 13px;
color: #000;
}
.navigation {
display: flex;
flex-direction: column;
}
a {
border: 1px solid #000;
border-radius: 5px;
text-decoration: none;
color: #000;
background-color: #d8d8d8;
display: block;
padding: 14px 24px;
}
/* Main section */
h1,
h2,
h3 {
text-align: center;
border: 0px solid red;
margin: 1rem;
}
.content {
flex: 3;
margin: 20px 40px 30px;
padding: 0 35px 20px;
border: 1.4px solid #000;
border-radius: 10px;
}
.input-container {
display: flex;
column-gap: 20px;
margin: 0px;
flex-wrap: wrap;
border: 0px solid blue;
padding: 0;
}
.input-section {
display: flex;
flex-direction: column;
flex: 1;
margin: 0px;
border: 0px solid red;
}
.input-container .input-section {
flex: 1 1 calc(50% - 20px);
}
section:nth-of-type(3) .input-section {
flex: 1 1 calc((100% - 40px) / 3);
}
input,
select {
padding: 10px;
border-radius: 5px;
border: 1px solid #000;
background-color: #d8d8d8;
}
.buttons {
display: flex;
justify-content: space-between;
margin-top: 10px;
}
.cancel-button {
background-color: #f2f2f2;
border: 1px solid #345bb7;
color: #345bb7;
width: 45%;
padding: 10px 20px;
font-size: 15px;
font-weight: bolder;
border-radius: 4px;
}
.submit-button {
background-color: #345bb7;
border: none;
color: #fff;
width: 45%;
padding: 10px 20px;
font-size: 15px;
font-weight: bolder;
border-radius: 4px;
}