-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.css
94 lines (84 loc) · 1.64 KB
/
base.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
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
color: #e5e5e5;
font-size: 0.9rem;
line-height: 1.5;
background-color: #434753;
}
h1,
h2,
h3,
h4,
h5 {
font-weight: normal;
}
/* Episode 7 - Contact Form */
a.btn {
display: inline-block;
padding: 0.3rem 1.2rem;
background-color: white;
border-radius: 2rem;
text-decoration: none;
color: black;
font-size: 0.7rem;
font-weight: bold;
letter-spacing: 0.02rem;
}
label {
display: block;
font-size: 0.8rem;
}
input,
textarea {
margin-top: 0.3rem;
padding: 0.5rem;
background-color: #333744;
border: solid 1px #434753;
border-radius: 5px;
width: 100%;
resize: none;
color: white;
font-size: 0.8rem;
}
input:focus,
textarea:focus {
outline: none;
border: solid 1px rgb(126, 138, 163);
}
/* Episode 9 - Restaurant Listing */
.btn-book-table {
border: none;
display: inline-block;
padding: 0.75rem 1.25rem;
border: 1px solid #16a34a;
border-radius: 0.5rem;
background-color: #16a34a;
color: #ffffff;
font-weight: 600;
font-size: 0.875rem;
cursor: pointer;
}
/* Episode 9 - Pricing Plans */
.plan {
background-color: rgb(39, 39, 39);
padding: 1.6rem;
border-radius: 10px;
box-shadow: 6px 6px 50px -35px rgba(0, 0, 0, 0.75);
}
.plan-highlight {
background-color: #1a6460;
color: white;
}
/* Episode 12 - Dashboard Layout */
i.fa-money-bill-wave {
color: #4e94db;
font-size: 1.4rem;
}