-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (51 loc) · 1.06 KB
/
styles.css
File metadata and controls
54 lines (51 loc) · 1.06 KB
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
body {
font-family: "Jersey 20", sans-serif;
background-image: url("https://img.freepik.com/free-vector/computer-screen-with-90s-retro-software-windows_107791-17560.jpg")
}
.postcard {
height: 350px;
width: 400px;
background: rgb(255, 255, 255);
margin: auto;
margin-top: 150px;
border: black 2px solid;
border-top: 20px rgb(116, 146, 245) solid;;
}
.postcard-top {
display: flex;
}
.postcard-top img {
height: 50px;
width: 50px;
}
.postcard-top h1{
width: 83%;
margin: 0;
margin-left: 10px;
}
.postcard-mid {
display: flex;
}
.postcard-left, .postcard-right {
padding: 10px;
}
.postcard-left :first-child {
margin-top: 0;
}
.postcard-right input {
font-family: "Jersey 20", sans-serif;;
border: none;
border-bottom: gray 1px solid;
}
.postcard-bottom {
text-align: center;
}
button{
background-color: rgb(155, 154, 154);
padding: 5px 10px;
font-family: "Jersey 20", sans-serif;;
}
button:hover {
background: rgb(90, 154, 206);
font-family: "Jersey 20", sans-serif;;
}