-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (101 loc) · 1.85 KB
/
styles.css
File metadata and controls
116 lines (101 loc) · 1.85 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f5f5f5;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
background-color: #ffffff;
padding: 2rem;
border-radius: 0.25rem;
width: 90%;
max-width: 1200px;
}
#svgContainer {
width: 100%;
max-width: 800px;
height: auto;
margin-bottom: 2rem;
}
.content-wrapper {
display: flex;
justify-content: space-between;
width: 100%;
}
.input-fields-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
width: 70%;
}
.orange-input-fields,
.blue-input-fields {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.input-group {
display: flex;
align-items: center;
}
label {
font-size: 0.875rem;
font-weight: 500;
color: rgba(0, 0, 0, 0.87);
margin-right: 0.5rem;
width: 20px;
}
input[type="number"] {
width: 60px;
padding: 0.25rem;
border: 1px solid #ccc;
border-radius: 4px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 1rem;
width: 25%;
}
button {
background-color: #4b6b8b;
border: none;
border-radius: 4px;
color: white;
cursor: pointer;
font-family: 'Roboto', sans-serif;
font-size: 14px;
font-weight: 500;
letter-spacing: 1.25px;
outline: none;
padding: 10px 16px;
text-transform: uppercase;
transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
button:hover {
background-color: #3700b3;
}
button:focus {
box-shadow: 0 0 0 4px rgba(98, 0, 238, 0.3);
}
@media (max-width: 768px) {
.content-wrapper {
flex-direction: column;
}
.input-fields-container,
.button-container {
width: 100%;
}
.button-container {
margin-top: 1rem;
}
}