-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
83 lines (72 loc) · 1.32 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
font-family: 'Century Gothic', sans-serif;
margin: 0;
padding-bottom: 0;
box-sizing: border-box;
overflow: hidden;
}
body {
background-color: #1e1e2a;
}
.titulo {
display: flex;
color: #fcfeff;
padding: 5px;
justify-content: center;
}
div {
padding: 3px;
width: 100%;
}
.conte {
display: flex;
align-items: center;
flex-direction: column;
height: 100vh;
}
textarea {
width: 100%;
box-sizing: border-box;
border-radius: 1rem;
background: #2d2e37;
padding: 8px 15px;
color: #fcfeff;
outline: none;
resize: none;
}
.datos {
flex: 1;
}
.nom,
.ima,
.cod,
.enla,
.env {
display: flex;
}
.env {
display: flex;
justify-content: space-evenly;
}
input {
border: none;
outline: none;
color: #fcfeff;
flex-grow: 1;
background: #2d2e37;
padding: 8px 15px;
border-radius: 1rem;
}
button {
flex-grow: 0;
font-weight: bold;
background: hsl(37, 94%, 57%);
border-radius: 0.5rem;
border-style: none;
padding: 5px;
border-color: hsl(37, 94%, 57%);
text-decoration: none;
color: black;
cursor: pointer;
}