-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (46 loc) · 718 Bytes
/
Copy pathstyles.css
File metadata and controls
53 lines (46 loc) · 718 Bytes
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
body {
margin: 0;
padding: 0;
background: #0f1f17;
color: #e6e6e6;
font-family: Georgia, serif;
}
.lounge {
max-width: 700px;
margin: 0 auto;
padding: 2rem;
}
h1 {
color: #c8a24a;
letter-spacing: 1px;
}
.subtitle {
color: #9fb8a5;
margin-bottom: 2rem;
}
.buttons button,
.order-btn {
background: #1b3a2b;
color: #e6e6e6;
border: 1px solid #355f4b;
padding: 0.6rem 1rem;
margin: 0.3rem;
cursor: pointer;
}
.buttons button:hover,
.order-btn:hover {
background: #274d3a;
}
textarea {
width: 100%;
height: 80px;
background: #13261d;
color: #e6e6e6;
border: 1px solid #355f4b;
padding: 0.5rem;
}
footer {
margin-top: 3rem;
font-size: 0.8rem;
color: #7fa091;
}