-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (78 loc) · 1.21 KB
/
styles.css
File metadata and controls
86 lines (78 loc) · 1.21 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
75
76
77
78
79
80
81
82
83
84
85
86
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #101010;
color: #f0f0f0;
font-family: "Momo Trust Display", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
}
main {
margin: 20px;
display: flex;
flex-direction: column;
width: 70%;
justify-content: center;
align-items: center;
}
h1 {
font-size: 50px;
}
.orange {
color: orange;
}
p {
font-size: 20px;
margin: 20px;
}
.green {
color: green;
}
.red{
color:Red;
}
.Diet {
margin-top: 40px;
border-radius: 20px;
border: 3px solid orange;
padding: 30px;
width: 70%;
}
nav {
position: sticky;
top: 0;
margin: 10px;
z-index: 10;
}
nav a {
text-decoration: underline;
color: orange;
margin: 0 20px;
font-size: 20px;
}
nav a:hover{
color:rgb(0, 183, 255);
}
footer {
width: 100%;
text-align: center;
padding: 20px;
background-color: #1c1c1c;
}
.montserrat-<uniquifier > {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
}
.momo-trust-display-regular {
font-family: "Momo Trust Display", sans-serif;
font-weight: 400;
font-style: normal;
}