-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnutri.css
122 lines (101 loc) · 1.76 KB
/
nutri.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
font-family: Arial, sans-serif;
background-color: #dbdbdb;
margin: 0;
padding: 0;
}
.header {
background-color: #2a6b2f;
color: white;
padding: 15px;
text-align: center;
}
.city-buttons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 10px;
}
.city-buttons button {
background-color: white;
border: none;
color: #007BFF;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
.city-buttons button:hover {
background-color: #e7e7e7;
}
.card-container {
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
justify-content: center;
align-items: center;
}
.card {
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
width: 80%;
display: flex;
padding: 20px;
align-items: center;
}
.profile-pic {
border-radius: 50%;
width: 80px;
height: 80px;
margin-right: 20px;
}
.info {
flex-grow: 1;
}
.agenda {
text-align: right;
}
.agenda button {
display: block;
background-color: #DCD6F7;
border: none;
padding: 10px;
margin-top: 5px;
color: #4B0082;
border-radius: 5px;
cursor: pointer;
}
.agenda button:hover {
background-color: #C4B5FD;
}
button {
background-color: #318549;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #318549;
}
button a {
color: white;
}
button:hover a{
background-color: #318549;
}
footer{
background: #161616;
padding: 20px 23px;
color: #fff;
text-align: center;
}
footer span{
color: #00804b;
font-weight: 600;
}
footer span:hover{
text-decoration: underline;
}