-
Notifications
You must be signed in to change notification settings - Fork 0
/
wspace.css
122 lines (93 loc) · 1.69 KB
/
wspace.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
html, body{
background-color: #FFFFFF;
}
#wspace {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
min-width: 300px;
margin-bottom: 192px;
margin-top: 120px;
font-family: Brother 1816, Bold;
}
#wspace .content {
width: 530px;
height: 384px;
min-width: 328px;
margin-left: 10px;
text-align: left;
}
#wspace form {
display: flex;
flex-wrap: wrap;
margin-top: 24px;
text-align: left;
}
#wspace form h1{
margin-bottom: 8px;
}
#wspace form p{
margin-bottom: 56px;
line-height: 28px;
color: #3E5570;
}
#wspace form h5{
margin-bottom: 4px;
}
#wspace form small{
margin-bottom: 16px;
color: #3E5570;
}
#wspace form select {
width: 380px;
height: 40px;
margin-right: 32px;
padding-left: 16px;
padding-right: 16px;
border-radius: 20px;
border: 1px solid #6C8198;
cursor: pointer;
box-shadow: 0px 4px 10px #00000029;
}
#wspace form select:focus {
border: 2px solid #92D328;
}
#wspace form button, #cancelar {
width: 140px;
height: 40px;
margin: 32px 16px auto auto;
border-radius: 20px;
cursor:pointer;
}
#wspace #cancelar {
background-color: #FFFFFF;
color: #3E5570;
width: 136px;
height: 36px;
border: 2px solid #3E5570;
margin-left: 0px;
display: flex;
align-items: center;
justify-content: center;
}
#wspace #cancelar:hover {
background-color: #3E5570;
color: #FFFFFF;
border: 2px solid;
}
#wspace form button.começar {
background-color: #6BBA21;
margin-left: 0px;
color: #FFFFFF;
border: none;
transition: 0.3s;
}
#wspace form button.começar:hover {
background-color: #92D328;
}
#wspace img{
width: 412px;
min-width: 280px;
height: 412px;
}