-
Notifications
You must be signed in to change notification settings - Fork 3
/
cards.css
99 lines (77 loc) · 1.81 KB
/
cards.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
cards colours
white #F2F2F2
black ##010101
*/
/* this is to make the website go all the way to the edges of the website*/
html {
margin: 0%;
padding: 0%;
height: 100%;
}
/* this is to make the website go all the way to the edges of the website*/
body {
margin: 0%;
height: 100%;
background-color: #F2F2F2;
display: flex;
flex-direction: column;
align-items: center;
}
header h1 {
text-align: center;
color: #010101;
font-family: Helvetica;
}
.promptdisplay {
padding: 10px;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
font-family: Helvetica;
box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38); /*i stole this code! https://www.joshwcomeau.com/css/designing-shadows/*/
border: 1px;
border-radius: 10px;
/*dimensions of a real card */
width: 63mm;
min-height: 88mm;
font-family: Helvetica;
font-size: 200%;
background-color: #010101;
color:#F2F2F2;
}
button {
background-color: #010101;
color: #F2F2F2;
padding: 15px 32px;
text-align: center;
font-size: 16px;
border-radius: 10px;
box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38); /*i stole this code! https://www.joshwcomeau.com/css/designing-shadows/*/
margin: 0;
/* position: absolute; */
/* left: 50%; */
width: 158px;
margin-bottom: 20px;
/* transform: translate(-50%, -90%); */
}
/*footer*/
.footer {
/* position: fixed; */
/* left: 0; */
background-color: #F2F2F2;
color: #010101;
/* bottom: 0; */
margin-top: auto;
padding: 0%;
width: 100%;
padding-bottom: 1px;
text-align: center;
font-size: 200%;
font-family:'Times New Roman', Times, serif;
}
.footer small {
font-size: 10px;
padding: 0%;
}