forked from breatheco-de/exercise-postcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (68 loc) · 1.09 KB
/
styles.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
body {
background: black;
}
.postcard {
background: white;
width: 400px;
height: 300px;
padding-top: 10px;
margin: auto;
}
.postcard-header {
display: flex;
}
.postcard-header img {
margin-top: 5px;
width: 50px;
height: 50px;
}
.postcard-header h1 {
font-family: "Noto Serif Display", serif;
margin: 0;
margin-left: 15px;
color: #1a92cc;
width: 80%;
}
.postcard-body {
display: flex;
font-family: "Cutive Mono", monospace;
font-weight: 400;
font-size: 14px;
font-style: normal;
}
.body-left p:first-child {
margin-top: 0px;
}
.body-left p:last-child {
font-size: 13px;
}
.body-left,
.body-right {
padding: 20px;
}
input {
border: none;
border-bottom: dotted rgba(128, 128, 128, 0.435);
font-size: 11px;
font-family: "Cutive Mono", monospace;
font-weight: 200;
font-style: normal;
}
.postcard-footer {
margin-top: -10px;
text-align: center;
}
button {
font-family: "Open Sans", sans-serif;
border: none;
border-radius: 30px;
background-color: rgba(211, 211, 211, 0.507);
padding: 10px;
}
button:hover {
background-color: #1a91cc;
color: white;
}
button:hover i {
color: white;
}