-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (75 loc) · 1.48 KB
/
styles.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
body {
font-family: Calibri, Helvetica, sans-serif;
background-color: #505050;
/*border: 1px solid #dd0000;*/
display: grid;
grid-template-columns: auto minmax(auto, 225mm) auto;
}
h1, h3, h5, p, a, div, section, article, nav, footer, textarea {
margin: 0;
/*border: 1px solid #003cff;*/
}
h1 {
border-bottom: 0.4mm solid rgb(125, 125, 125);
color: rgb(36, 36, 36);
font-size: 1.75em
}
h3 {
font-size: 1.5em;
}
p {
color: rgb(36, 36, 36);
}
a {
text-decoration: none;
color: #ff4800;
}
input {
font-family: Calibri, Helvetica, sans-serif;
font-size: 1em;
width: 100%;
max-width: 65mm;
min-width: 20mm;
}
textarea {
font-family: Calibri, Helvetica, sans-serif;
font-size: 1em;
width: 100%;
max-width: 120mm;
min-width: 20mm;
height: 20mm;
min-height: 10mm;
}
main {
grid-column: 2/3;
background-color: #eeeeee;
/*border: 1px solid #51b400;*/
padding: 5mm;
}
.mid-align {
text-align: center;
}
/* All restaurants page */
.two-columns-layout {
display: grid;
grid-template-columns: minmax(min-content, max-content) minmax(50mm, auto);
}
.first-column {
grid-column: 1/2;
padding-right: 5mm;
border-right: 0.4mm solid rgb(200, 200, 200);
}
.second-column {
grid-column: 2/3;
padding-left: 5mm;
}
.edit-link {
color: #0055c4;
}
.bold-text {
font-weight: bold;
}
footer {
border-top: 0.4mm solid rgb(150, 150, 150);
margin-top: 5mm;
}