forked from AdaGold/video-store-consumer
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathApp.css
70 lines (57 loc) · 962 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
59
60
61
62
63
64
65
66
67
68
69
70
@import url('https://fonts.googleapis.com/css2?family=Sofia&display=swap');
* {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
html, body {
height: 100%;
background-color: #fffbee;
}
body {
height: 100%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 125px auto 40px;
}
main {
padding: 15px 15px;
}
header {
background-color: rgb(175, 215, 255);
font-family: 'Sofia', cursive;
}
.title {
font-size: 60px;
text-align: center;
color: #ff6d94;
}
nav ul {
list-style-type: none;
text-align: center;
display: flex;
justify-content: space-around;
padding: 5px 10%;
}
nav li {
display: inline-block;
font-size: 1.3em;
}
nav a {
text-decoration: none;
}
nav a:hover {
font-weight: bold;
}
.selected {
text-align: center;
display: flex;
justify-content: space-around;
padding: 5px 20px;
background-color: rgb(247, 197, 253);
}
.error-msg {
font-style: italic;
color: red;
}