-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleApp.css
143 lines (133 loc) · 3.65 KB
/
styleApp.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body{
color: #000000;
background-color: #e5e5e5;
font-family: 'Amatic SC', cursive;
}
/* navegacion */
.nav_container{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
align-content: center;
}
.nav_container h3{
justify-content: center;
align-content: center;
font-size: 30px;
}
.links{
color: #fca311;
}
.links:hover{
color: #14213D;
}
.navbar_brand{
align-items: center;
align-content: center;
text-decoration: none;
color: #000000;
margin: 10px;
font-size: 50px;
/* text-shadow: 2px 3px 1px rgba(252,163,17,0.6); */
}
/* main */
.main_container{
display: flex;
height: 100%;
text-align: center;
align-items: center;
align-content: center;
justify-content: center;
flex-wrap: wrap;
flex-direction: column;
}
.input_div input{
margin: 50px;
margin-bottom: 50px;
border: solid 2px #ffffff ;
padding: 10px;
font-family: 'Bebas Neue', cursive;
background-color: #e5e5e5;
font-size: 25px;
color: #14213d;
box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-webkit-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-moz-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
transition: 0.1s;
}
.input_div input:hover{
box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-webkit-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-moz-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
}
.text_div textarea{
flex-direction: column;
/* border-radius: 10px; */
border: 4px solid #ffffff;
padding: 10px;
font-family: 'Bebas Neue', cursive;
font-size: 25px;
background-color: #e5e5e5;
color: #14213d;
align-content: center;
justify-content: center;
box-shadow: 0px 2px 23px 17px rgba(232,148,11,0.75);
-webkit-box-shadow: 0px 2px 23px 17px rgba(232,148,11,0.75);
-moz-box-shadow: 0px 2px 23px 17px rgba(232,148,11,0.75);
transition: 0.1s;
}
.text_div textarea:hover{
box-shadow: 0px 2px 23px 17px RGBA(20,33,61,0.76);
-webkit-box-shadow: 0px 2px 23px 17px RGBA(20,33,61,0.76);
-moz-box-shadow: 0px 2px 23px 17px RGBA(20,33,61,0.76);
}
.submit_buton{
margin: 30px;
margin-top: 50px;
color: #14213d;
border: 1px solid #ffffff;
background-color: #e5e5e5;
padding: 10px;
font-family: 'Bebas Neue', cursive;
font-size: 15px;
box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-webkit-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-moz-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
transition: 0.1s;
}
.submit_buton:hover{
box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-webkit-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-moz-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
}
/* tarjetas de tareas */
.tareas_container{
display: flex;
}
.tareas_container h2{
font-size: 30px;
align-items: center;
justify-content: center;
}
.btn_eliminar{
font-family: 'Bebas Neue', cursive;
padding: 10px;
font-size: 15px;
margin: 30px;
border: 1px solid #ffffff;
background-color: #e5e5e5;
box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-webkit-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
-moz-box-shadow: -1px 1px 17px 8px rgba(232,148,11,0.75);
transition: 0.1s;
}
.btn_eliminar:hover{
box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-webkit-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
-moz-box-shadow: -1px 1px 17px 8px RGBA(20,33,61,0.76);
}
.card_body{
font-size: 30px;
border-top: 1px solid #000000;
}