forked from Khululiwe/MM4_2401FTDS-Anime-Recommender-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (76 loc) · 1.49 KB
/
style.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
body {
font-family: 'Roboto', Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
h1 {
color: #FF5733;
}
.st-subheader {
font-size: 24px;
font-weight: bold;
color: #0288d1;
}
.st-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
transition: background-color 0.3s ease;
}
.st-button:hover {
background-color: #0056b3;
}
.st-success {
color: green;
font-weight: bold;
}
.st-warning {
color: #f39c12;
font-weight: bold;
}
.anime-image {
width: 100%;
max-width: 400px;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 10px;
}
.content {
margin-bottom: 20px;
background-color: #ffffff;
padding: 15px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
div.stForm button {
background-color: #FF5733;
border: none;
color: white;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
div.stForm button:hover {
background-color: #c0392b;
}
/* New Styles for Team Member Section */
.team-member {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.team-member img {
width: 150px; /* Adjust the width as needed */
height: auto;
margin-right: 20px; /* Add space between the image and text */
border-radius: 10px; /* Optional: add rounded corners */
}
.team-member-info {
max-width: 500px; /* Limit the width of the text to avoid wrapping issues */
}