-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.css
More file actions
51 lines (45 loc) · 803 Bytes
/
Copy pathcards.css
File metadata and controls
51 lines (45 loc) · 803 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
* {
box-sizing: border-box
}
#card-wrap {
border: 1px solid black;
background-color: #ccc;
height: 510px;
padding: 1px;
width: 510px;
position: relative;
margin: 15px;
display: inline-block;
}
#card-wrap p {
font-size: 2em;
text-align: center;
}
#card-wrap button {
background-color: #4CAwF50;
/* Green */
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: block;
font-size: 16px;
width: 100%;
position: absolute;
right: 0;
bottom: 0;
}
body {
font-family: Helvetica, Arial, sans-serif;
}
h2 {
text-align: center;
border: 1px dotted lightgray;
padding: .5em;
margin-top: 0;
}
p {
padding: 0 5px;
text-align: justify;
margin-bottom: 5px;
}