-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsell.css
125 lines (107 loc) · 2.02 KB
/
sell.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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,100;1,300&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Roboto',
sans-serif;
box-sizing: border-box;
outline: none;
}
nav {
display: flex;
align-items: center;
justify-content: flex-start;
background-color: rgba(0, 47, 52, .03);
padding: 10px 30px;
}
nav .nav__logo {
width: 40px;
}
h1 {
margin: 0% auto;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 30px;
font-weight: 600;
}
.sell_container {
width: 90%;
height: auto;
border: 1px solid #6c6c6c;
display: flex;
align-items: flex-start;
justify-content: flex-start;
padding: 10px 30px;
margin: 3% auto;
color: #012f34;
border-radius: 5px;
flex-direction: column;
}
.sell__inputs {
width: 100%;
}
.sell_container input {
width: 100%;
padding: 15px 30px;
margin: 15px 0;
border: 1px solid #012f34;
border-radius: 5px;
}
.sell__inputs textarea {
width: 100%;
margin: 15px 0;
}
.sell__inputs label{
font-size: 15px;
margin-top: 10px;
color: #606060;
margin: 15px 0;
}
.sell__inputs hr{
width: 100%;
margin: 15px 0;
}
.sell__inputs h4{
font-size: 22px;
margin-bottom: 15px;
}
.sell__inputs .condition button{
padding: 15px 20px;
border: 1px solid #000;
background: none;
border-radius: 5px;
color: #000;
cursor: pointer;
}
.condition {
display: flex;
align-items: center;
justify-content: space-between;
width: 250px;
}
#btnSubmit{
padding: 15px 30px;
background-color: #012f34;
border: 1px solid #012f34;
color: #fff;
border-radius: 5px;
font-size: 15px;
cursor: pointer;
}
.profileName{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.profileName input{
width: 100% !important;
}
.profileName img{
margin-right: 20px;
}
.input{
width: 100%;
}