-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
42 lines (37 loc) · 718 Bytes
/
styles.css
File metadata and controls
42 lines (37 loc) · 718 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
#loginButton, #signupButton {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
margin: 10px 0;
cursor: pointer;
}
#podcastContainer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
#editPodcastButton, #publishPodcastButton, #sharePodcastButton {
background-color: #007BFF;
color: #fff;
border: none;
padding: 10px 20px;
margin: 10px 0;
cursor: pointer;
}
#searchPodcastInput {
width: 100%;
padding: 10px;
margin: 10px 0;
}