-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (63 loc) · 1.25 KB
/
Copy pathstyle.css
File metadata and controls
74 lines (63 loc) · 1.25 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
body {
background-color: rgb(245, 235, 224);
/* display: flex;
justify-content: center;
align-items: center; */
}
.container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
text-align: center;
background-color: white;
width: 40%;
height: fit-content;
border-radius: 5px;
box-shadow: 5px 5px 2px 2px gray;
}
#headtxt {
width: 100%;
font-size: 3vw;
font-weight: bold;
margin-top: 4vw;
}
#quote::after,
#quote::before {
content: '"';
}
#quote {
/* font-size: 1.5vw; */
width: 80%;
margin: auto;
padding: 2vw 3vw;
text-align: center;
font-weight: 500;
/* border: 1px solid red; */
}
#writer {
font-weight: 500;
}
#writer::before {
content: '- ';
}
button {
width: 10vw;
padding: 0.8vw 1vw;
margin: 2vw;
border-radius: 5px;
border: none;
background-color: rgb(160, 222, 255);
color: white;
font-size: medium;
font-weight: bold;
}