-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (44 loc) · 805 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
body {
font-family: 'Nunito';
text-align: center;
}
h1 {
color: #EABE3F;
padding: 50px;
font-size: 40px;
}
#search-container {
margin: 20px auto;
width: 60%;
}
#search-input {
width: 70%;
padding: 5px;
margin-right: 10px;
}
#search-button {
background-color: #007BFF;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
#definition-result {
margin: 20px auto;
width: 60%;
}
/* Estilos para la lista de definiciones */
ul {
list-style: none;
padding: 0;
}
/* Estilos para los enlaces dentro de la definición */
a {
text-decoration: none;
color: #007BFF;
}
p {
font-weight: bold;
margin: 10px 0;
}