-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS.css
More file actions
132 lines (115 loc) · 2.16 KB
/
Copy pathCSS.css
File metadata and controls
132 lines (115 loc) · 2.16 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
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
123
124
125
126
127
128
129
130
131
132
body {
font-family: 'Robata',serif;
margin: 0;
padding: 0;
background-color: #eeffea;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #000;
}
#app {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow */
width: 400px;
text-align: center;
}
.hidden {
display: none;
}
button {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
background-color: #bfffb7;
color: #000000;
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s ease; /* Hover effect */
}
button:hover {
background-color: #bebebe;
}
.auth-options,
.category-options {
margin-bottom: 20px;
}
.auth-form input,
.category-options button {
display: block;
width: 90%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
}
h1,
h2 {
font-family: Open Sans, sans-serif; /* Heading font */
margin-bottom: 10px;
text-shadow: 2px 2px 5px #bfffb7;
}
#sentence {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px 0;
}
#sentence img {
width: 100px;
height: 100px;
border-radius: 5px;
cursor: pointer;
border: 1px solid #ddd; /* Light border */
}
.image-small {
width: 50px;
height: 50px;
}
.image-medium {
width: 100px;
height: 100px;
}
.image-large {
width: 100px;
height: 100px;
}
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px 0;
#picture-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 20px 0;
}
#picture-list img {
width: 150px;
height: 100px;
border: 1px solid #fff;
border-radius: 5px;
cursor: pointer;
}
/* Grid layout for category options */
.category-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust column width as needed */
gap: 5px;
}
.category-options button {
background-color: #bfffb7;
color: #000000;
}
/* Responsive grid layout for smaller screens (optional) */
@media (max-width: 768px) {
.category-options {
grid-template-columns: 1fr; /* Single column for smaller screens */
}
}