-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyles.css
108 lines (88 loc) · 1.45 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue';
color: #444;
}
.container {
width: 380px;
margin-left: auto;
margin-right: auto;
}
.section {
margin-top: 40px;
}
h1 {
font-size: 18pt;
}
h2 {
font-size: 14pt;
}
h3 {
font-size: 12pt;
font-weight: normal;
}
form {
display: flex;
flex-direction: column;
}
input {
padding: .75em;
background-color: #fdfdfd;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 11pt;
box-shadow: 0px 2px 4px rgba(0,0,0,.15);
margin-bottom: 1.5em;
}
.btn {
padding: .75em 1em;
align-self: flex-end;
font-size: 10pt;
border-radius: 4px;
border: none;
text-transform: uppercase;
color: #fff;
background-color: #4A00FA;
box-shadow: 0px 2px 2px rgba(0,0,0,.15);
}
.car {
padding: 0 .75em;
border: 1px solid #ddd;
}
.car:first-child {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.car:last-child {
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.car:hover {
box-shadow: 0px 2px 4px rgba(0,0,0,.1);
}
.car .price {
font-size: 11pt;
}
table {
width: 100%;
border-collapse: collapse;
}
tr {
border-bottom: 1px solid #ddd;
}
tr:last-child {
border-bottom: none;
}
td {
padding-top: .5em;
padding-bottom: .5em;
font-size: 11pt;
}
td:first-child {
font-weight: bold;
}
td:last-child {
text-align: right;
}