-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (92 loc) · 1.55 KB
/
style.css
File metadata and controls
107 lines (92 loc) · 1.55 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
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.container {
display: flex;
gap: 20px;
}
.list {
flex: 1;
display: flex;
flex-direction: column;
}
h2 {
text-align: center;
}
textarea {
width: calc(100% - 20px);
height: 300px;
resize: vertical;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 18px;
border-radius: 4px;
font-size: 15px;
cursor: pointer;
transition: background 0.2s;
margin-top: 10px;
}
button:hover {
background-color: #0056b3;
}
input[type="text"],
input[type="email"] {
width: 100%;
padding: 8px 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
}
.list {
background: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
padding: 20px;
}
@media (max-width: 800px) {
.container {
flex-direction: column;
}
.list {
margin-bottom: 20px;
}
}
input[type="number"] {
width: 50px;
padding: 8px 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
background: #fff;
box-sizing: border-box;
appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.container {
margin: 25px auto;
max-width: 1240px;
}
footer {
max-width: 1240px;
margin: auto;
display: flex;
align-items: baseline;
gap: 15px;
}
#getAddressesButton {
margin-left: auto;
}