-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
149 lines (130 loc) · 3.06 KB
/
styles.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
144
145
146
147
148
149
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
color: #333;
display: flex;
justify-content: center;
padding: 10px 10px;
padding-bottom: 0px;
height: 100vh;
margin: 0;
}
.container {
display: flex;
flex-wrap: wrap; /* Permite que os cards se movam para a linha seguinte quando necessário */
justify-content: center; /* Distribui os cards com espaço entre eles */
background: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
height: fit-content;
max-width: 1200px;
width: 80vw;
}
.card {
background: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
flex: 1; /* Permite que os cards se ajustem ao espaço disponível */
min-width: 200px; /* Define uma largura mínima para os cards */
margin: 5px; /* Espaçamento entre os cards */
display: flex;
flex-direction: column; /* Alinha os itens em coluna */
max-width: min-content;
padding-right: 60px;
font-size: 13px;
justify-content: space-between;
}
.card .sub {
padding-left: 10px;
border-left: 2px solid #007acc;
align-self: flex-start;
}
.input-group::after {
content: "- -";
position: relative;
top: -25px;
left: 7px;
font-size: 14px;
color: gray;
}
.currency::after {
content: "R$";
}
h2 {
color: #007acc;
margin-bottom: 20px;
text-align: left; /* Alinha o título à esquerda */
}
h3 {
color: #007acc;
margin-bottom: 20px;
text-align: left; /* Alinha o título à esquerda */
}
.input-group {
width: 100%; /* Faz com que o input-group ocupe toda a largura do card */
display: flex;
flex-direction: column;
}
.input-group label {
display: block;
margin-bottom: 5px;
color: #007acc;
text-align: left; /* Alinha o texto do label à esquerda */
}
.input-group input {
width: 100%; /* Ajusta o input para a largura disponível dentro do input-group */
max-width: 200px; /* Define uma largura máxima para os inputs */
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
text-align: left; /* Alinha o texto e o placeholder à esquerda dentro do input */
padding-left: 30px;
font-family: Arial, sans-serif;
}
.input-group.double input.pct {
width: 30px;
}
.input-group span {
color: #007acc;
font-weight: bold;
}
.button {
color: white;
font-size: 15px;
font-weight: bold;
background-color: #007acc;
padding: 10px 30px;
border-radius: 10px;
border: 3px solid transparent;
transition: 0.1s;
display: block;
margin-top: 40px;
}
.checkbox-container {
display: flex;
margin-top: 20px;
user-select: none;
justify-content: space-between;
}
.checkbox-container * {
cursor: pointer;
font-size: 14px;
}
.checkbox-container input[type=checkbox] {
width: 14px;
height: 14px;
}
.button:hover {
background-color: white;
color: #007acc;
border: 3px solid #007acc;
cursor: pointer;
}
.goals-card {
background-color: #ffebcc;
}
.with-percentage {
width: 60%;
}