-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-agregar.css
81 lines (80 loc) · 1.61 KB
/
style-agregar.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
/*CREANDO MAIN DE AGREGAR PALABRA*/
.flex-agregar{
display: flex;
grid-column: 1 / span 3;
background-color: #74d8bc;
justify-content: center;
align-items: center;
flex-direction: column;
display: none;
}
.flex-agregar__tick{
margin-bottom: 20px;
}
.tick__img{
width: 70px;
opacity: 0;
transition: .3s;
position: absolute;
right: auto;
left: auto;
}
.tick__img2{
width: 70px;
opacity: 0;
transition: .3s;
}
.flex-agregar__condicion{
font-family: 'Nunito', sans-serif;
margin: 10px 0px;
text-align: center;
width: 70%;
}
.flex-agregar__textarea{
height: 100px;
width: 30%;
margin-bottom: 20px;
border-radius: 10px;
resize: none;
background-color: #D9ED92;
border: 3px solid #073C66;
padding: 30px;
font-size: 30px;
text-decoration: none;
text-align: center;
}
.flex-agregar__botones{
text-align: center;
}
.botones__add{
width: 200px;
height: 70px;
padding: 10px;
margin: 20px;
font-family: 'Nunito', sans-serif;
background-color: #184E77;
color: #D9ED92;
font-weight: 800;
letter-spacing: 2px;
border: 3px solid #D9ED92;
border-radius: 10px;
transition: all .2s;
}
.botones__back{
width: 200px;
height: 70px;
padding: 10px;
margin: 20px;
font-family: 'Nunito', sans-serif;
background-color: #184E77;
color: #D9ED92;
font-weight: 800;
letter-spacing: 2px;
border: 3px solid #D9ED92;
border-radius: 10px;
transition: all .2s;
}
.botones__add:hover, .botones__back:hover{
scale: 1.15;
background-color: #073C66;
}