-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (66 loc) · 1.17 KB
/
styles.css
File metadata and controls
78 lines (66 loc) · 1.17 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Neucha', cursive;
background-color: #f2f0f0;
color: #333;
padding: 1rem;
}
.navigation {
display: flex;
justify-content: right;
gap: 1rem;
margin-bottom: 2rem;
}
.mainContainer {
max-width: 600px;
margin: auto;
}
.factDisplay {
display: flex;
flex-direction: column;
gap: 1rem;
}
.factTextBox {
padding: 1rem;
background-color: #fffafc;
border: 2px dashed #ba91f2;
border-radius: 8px;
font-size: 1.2rem;
min-height: 80px;
}
.buttonGroup {
display: flex;
gap: 1rem;
}
.favorites {
background: #FFFFFF;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
}
button {
margin: 0.5rem 0.5rem 0 0;
padding: 0.5rem 1rem;
cursor: pointer;
border: none;
background-color: #ba91f2;
color: white;
border-radius: 5px;
transition: background 0.3s ease;
}
button:hover {
background-color: #a874ec;
}
ul {
list-style: none;
padding: 0;
}
#favoriteList li::before {
content: "🐾 ";
margin-right: 0.5rem;
}