-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (80 loc) · 1.61 KB
/
styles.css
File metadata and controls
97 lines (80 loc) · 1.61 KB
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
* {
margin: 0;
padding: 0;
}
body {
background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
/*Estilos base*/
.globalContainer {
height: 100vh;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.globalContainer__buttonContainer {
margin-bottom: 10px;
}
.button {
border: 2px solid #eef1f3;
border-radius: 6px;
color: rgb(251, 247, 247);
padding: 16px 32px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s;
/* Safari */
transition-duration: 0.4s;
cursor: pointer;
text-decoration: none;
text-transform: uppercase;
background: #F83B32;
}
.Column1 {
height: 500px;
width: 300px;
border: solid 1px black;
}
.Column2 {
display: none;
}
.textArea {
width: 286px;
height: 64px;
margin-left: 5px;
}
/*Estilos para Tamaños grandes*/
@media (min-width: 952px) {
.globalContainer {
display: flex;
flex-direction: column;
}
.globalContainer__columnsContainer {
display: flex;
align-items: center;
justify-content: center;
gap: 50px;
}
.globalContainer__buttonContainer {
margin-bottom: 30px;
}
.Column1 {
height: 600px;
width: 400px;
border: solid 1px black;
}
.Column2 {
display: block;
height: 600px;
width: 400px;
border: solid 1px black;
}
.textArea {
margin: 34px 50px;
}
}