-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (52 loc) · 906 Bytes
/
style.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
body {
background-color: black;
font-family: 'Handlee', cursive;
}
p {
margin: 1px;
font-size: 21px;
}
h2 {
font-size: 29px;
}
input {
border: 0px;
border-bottom: 1px gray solid;
margin-bottom: 5px;
width: 90%;
margin: 5px 23px;
font-size: 20px;
font-style: italic;
font-family: 'Handlee', cursive;
}
input::placeholder {
color: lightpink;
}
.flexboxContainers {
display: flex;
margin-bottom: 15px;
}
.flexboxContainers div {
width: 50%;
}
#postcardContainer {
width: 555px;
height: 355px;
background-color: white;
padding: 20px;
margin: 150px auto;
}
#topRightTextContainer {
text-align: right;
}
#bottomContainer {
text-align: center;
}
#submitButton {
text-align: center;
width: 30%;
background-color: lightgray;
border-radius: 10px;
padding: 5px;
font-style: normal;
}