-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (73 loc) · 1.26 KB
/
styles.css
File metadata and controls
88 lines (73 loc) · 1.26 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
color: #333;
}
h1, h2 {
text-align: center;
color: #ffcc01;
}
h1 {
font-size: 3rem;
margin-top: 2rem;
}
h2 {
font-size: 1.5rem;
margin-bottom: 2rem;
}
#title {
font-family: 'Playball', cursive;
color: #ffcc01;
}
#logo {
width: 7rem;
}
.header-container{
display: flex;
justify-content: center;
}
#download-form {
background-color: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
max-width: 600px;
margin: 0 auto;
}
#download-form p {
margin-bottom: 0.5rem;
}
#url-input {
width: 100%;
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}
#download-button {
display: block;
width: 100%;
padding: 0.75rem;
background-color: #ffcc00;
color: #333;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
margin-top: 1rem;
}
#download-button:hover {
background-color: #e6b800;
}
#cleaned-html {
margin: 2rem 10rem;
}
#cleaned-html h1{
font-size: 1rem;
}
#cleaned-html button{
display: none;
}