-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (72 loc) · 1.43 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #ECE5DD;
/* Fondo similar a WhatsApp */
font-family: 'Roboto', sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #FFFFFF;
border-radius: 30px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
width: 90%;
max-width: 600px;
padding: 20px;
}
.title {
color: #075E54;
/* Color de WhatsApp */
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
}
.input-container {
display: flex;
align-items: center;
width: 100%;
}
.select-prefix {
border: none;
padding: 10px 15px;
border-radius: 20px;
outline: none;
font-size: 16px;
margin-right: 10px;
background-color: #F0F0F0;
}
.textbox {
flex: 1;
border: none;
padding: 10px 15px;
border-radius: 20px;
outline: none;
font-size: 16px;
margin-right: 10px;
background-color: #F0F0F0;
}
.button {
background-color: #25D366;
/* Color del botón de WhatsApp */
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.button svg {
fill: #FFFFFF;
/* Color del icono dentro del botón */
width: 24px;
height: 24px;
}