-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_style_7.css
More file actions
133 lines (66 loc) · 1.9 KB
/
inline_style_7.css
File metadata and controls
133 lines (66 loc) · 1.9 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
.card-container {
display: flex;
flex-wrap: wrap;
}
.boolean-carder {
flex: 1 1 100%;
margin: 10px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@media (min-width: 600px) {
.boolean-carder {
flex: 1 1 45%;
}
}
.card-title {
font-size: 1.5rem;
margin-bottom: 15px;
color: #333;
text-align: center;
}
/* Boolean card specific styles */
.boolean-converter {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.boolean-title {
text-align: center;
margin-bottom: 20px;
font-size: 24px;
font-weight: 700;
color: #333;
}
.boolean-label {
font-weight: 500;
margin-bottom: 6px;
}
.boolean-textarea {
width: 100%;
min-height: 150px;
padding: 10px;
border-radius: 4px;
font-family: monospace;
border: 1px solid #ccc;
margin-bottom: 20px;
}
.boolean-btn {
background-color: #007bff;
border: none;
color: white;
padding: 10px 20px;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
}
.boolean-output {
background: #f9f9f9;
padding: 10px;
border-radius: 4px;
font-family: monospace;
border: 1px solid #ddd;
}