-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 899 Bytes
/
Copy pathstyles.css
File metadata and controls
68 lines (57 loc) · 899 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body {
background: black;
font-family: "Handlee", cursive;
font-size: 19px;
}
.postcard {
background-color: white;
width: 500px;
height: 300px;
padding: 10px;
}
.postcard h1 {
margin: 0;
padding-top: 10px;
}
.postcard-header {
display: flex;
justify-content: space-between;
}
.postcard-body {
overflow: hidden;
display: flex;
padding-top: 30px;
}
.body-left {
float: left;
width: 50%;
}
p {
margin-top: 0;
margin-bottom: 0;
}
.body-right {
float: right;
width: 50%;
padding-left: 10px;
}
.postcard-footer {
padding: 12px;
text-align: center;
}
.postcard-body input[type="text"] {
border: none;
border-bottom: 1px solid rgb(146, 146, 146);
color: grey;
margin-top: 0%;
display: block;
}
.postcard-footer input[type="submit"] {
background: rgb(177, 174, 174);
border: none;
border-bottom: gray;
}
input {
font-size: 19px;
font-family: "Handlee", cursive;
}