-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneed.css
More file actions
61 lines (53 loc) · 1.33 KB
/
need.css
File metadata and controls
61 lines (53 loc) · 1.33 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
@font-face {
font-family: Helvetica;
src: url('https://bestfonts.pro/fonts_files/5c168bb7b2143e318c4cdb0f/files/HelveticaNeueCyr-Medium.woff') format('woff');
}
body {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
background-color: #0b4720;
color: #ffffff;
min-height: 100vh;
display: flex;
flex-direction: column;
}
h1 {
font-size: 36px;
text-align: left;
font-family: 'Times New Roman', Times, serif;
font-style: italic;
}
.vitamins-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.vitamin-column {
width: calc(100% / 6 - 16px);
margin-bottom: 20px;
padding: 15px;
background-color: #184e2e;
border-radius: 8px;
}
h2 {
font-size: 28px;
text-align: left;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: bold;
margin-top: 40px;
}
h3 {
font-size: 28px;
text-align: right;
font-family: 'Helvetica Neue Thin', sans-serif;
}
footer {
background: linear-gradient(to bottom, #0b4720, #5aae7c);
color: #ffffff;
text-align: center;
padding: 0;
width: 100%;
position: fixed;
bottom: 0;
}