-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (72 loc) · 1.3 KB
/
style.css
File metadata and controls
85 lines (72 loc) · 1.3 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
*{
box-sizing: border-box;
}
body{
background: #f3f4f6;
font-family: Calibri, sans-serif;
}
label {
display: block;
line-height: 1.25rem;
font-weight: bold;
font-size: 20px;
color: #374151;
}
input[type="text"], textarea, select{
font-size: .875rem;
line-height: 1.25rem;
border: 1px solid #d1d5db;
border-radius: 6px;
padding: 8px 12px;
margin-bottom: 12px;
color: #374151;
}
fieldset{
border: 1px solid #d1d5db;
border-radius: 6px;
width: fit-content;
margin-bottom: 16px;
padding: 12px;
}
fieldset legend{
font-size: 14px;
color: #374151;
}
input[type="checkbox"]{
display: inline-block;
}
input[type="checkbox"] ~ label, input[type="radio"] ~ label {
display: inline;
}
section{
margin-bottom: 16px;
}
section header{
margin-bottom: 8px;
}
.row {
display: flex;
gap: 16px;
}
.container{
max-width: 1300px;
margin: 0 auto;
display: flex;
gap: 16px;
}
.content{
/*flex: 1;*/
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
border: 4px solid black;
background: white;
padding: 20px;
border-radius: 12px;
}
.pizza{
background-color: #fce6ae;
}
.center{
display: flex;
justify-content: center;
align-items: center;
}