-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (69 loc) · 1.36 KB
/
styles.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
* {
box-sizing: border-box;
}
html {
font-family: "Jost", sans-serif;
}
body {
margin: 0;
}
header {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 3rem;
border-radius: 10px;
padding: 1rem;
background-color: #3d5875;
color: white;
text-align: center;
}
#user-goals {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
margin: 3rem;
border-radius: 10px;
padding: 1rem;
text-align: center;
}
#user-goals h2 {
font-size: 2rem;
border-bottom: 4px solid #ccc;
color: #3d5875;
margin: 0 0 1rem 0;
}
#user-goals ul {
list-style: none;
margin: 1rem 0;
padding: 0;
}
#user-goals li {
margin: 1rem 0;
font-size: 1.25rem;
font-weight: bold;
background-color: #879eb0;
padding: 0.5rem;
color: #1f1f1f;
border-radius: 25px;
}
#user-goals input {
font: inherit;
border: 1px solid #ccc;
}
#user-goals input:focus {
outline: none;
border-color: #1b995e;
background-color: #879eb032;
}
#user-goals button {
font: inherit;
cursor: pointer;
border: 1px solid #333873;
background-color: #4c5982;
color: white;
padding: 0.05rem 1rem;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.26);
}
#user-goals button:hover,
#user-goals button:active {
background-color: #4951a5;
border-color: #4951a5;
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26);
}