forked from AdaGold/video-store-consumer
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathApp.css
58 lines (45 loc) · 756 Bytes
/
App.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
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&display=swap');
body {
padding-top: 65px;
}
body, h1, h2, h3, h4, h5, h6 {
font-family: 'Bodoni Moda', serif;
}
.App {
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 700px;
}
.App-header {
max-width: 100%;
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
.checkout {
color:aliceblue;
padding: 8px;
}
span {
color:aliceblue;
padding: 20px;
}
ul {
list-style-type: none;
}
li {
list-style-type: none;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}