-
Notifications
You must be signed in to change notification settings - Fork 0
/
figuras.css
115 lines (96 loc) · 1.66 KB
/
figuras.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
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Helvetica Neue",Helvetica,Arial,sans;
}
header{
text-align:center;
}
header h1, p{
color:rgb(3, 2, 54);
margin-bottom: 10px;
}
.main-container{
display: flex;
flex-flow: row wrap;
width: 85%;
margin: 0 auto;
}
.figure-container{
width: 44%;
min-height: 400px;
display: flex;
justify-content: center;
flex-flow:column nowrap;
margin: 25px auto;
padding: 25px;
box-shadow: 0px 2px 8px 3px rgb(194, 194, 194);
border-radius: 8px;
background: rgb(247, 247, 247);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
}
form{
text-align: center;
}
.input{
min-width: 49%;
margin:0;
display: inline-block;
}
.input-left{
margin-right: 5px;
}
.figure-container h2{
text-align: center;
align-content: flex-start;
}
.figure-container h2 img{
width: 35px;
}
.figure-container label{
color: rgb(77, 77, 77);
font-weight: 900;
font-size: 0.8rem;
display: inline-block;
margin-top: 15px;
}
.figure-container input{
width: 45%;
height: 28px;
border: 1px solid rgb(3,2,54);
margin: 5px 0px 10px 0px;
text-align: center;
font-size: 25px;
}
.figure-container button{
width: 100%;
height: 28px;
border: 1px solid rgb(3,2,54);
background:rgb(224, 232, 255);
color: rgb(3,2,54);
font-weight: 900;
font-size: 14px;
margin: 5px 0px;
}
@media screen and (max-width:960px) {
.figure-container{
width: 90%;
}
.input{
width: 100%;
}
}
@media screen and (max-width:1410px) {
.input{
width: 100% !important;
}
}
@media screen and (max-width:1820px) {
.input{
width: 45%;
}
}