forked from creativityexhausted/FlowLearner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (39 loc) · 713 Bytes
/
styles.css
File metadata and controls
47 lines (39 loc) · 713 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f9f9f9;
}
.container {
width: 800px; /* Increased width */
max-width: 90%; /* Allow responsiveness */
margin: 20px auto;
background:#74bede;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 8px;
padding: 20px;
}
h1, h2 {
color: #333;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #0056b3;
}
#summary, #images, #sentiment {
margin: 15px 0;
}
#images img {
margin: 5px;
max-width: 100px;
border: 1px solid #ddd;
border-radius: 5px;
}