-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (88 loc) · 1.47 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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
flex: 1;
}
h1 {
color: #333;
text-align: center;
}
/* Form styling */
form {
background: #f4f4f4;
padding: 20px;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="number"],
input[type="date"] {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
}
button {
display: block;
width: 100%;
padding: 10px;
background: #333;
color: #fff;
border: none;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background: #555;
}
/* Output section styling */
#output-section {
margin-top: 20px;
text-align: center;
}
/* Preview section styling */
#preview-section {
margin-top: 20px;
margin-bottom: 20px;
max-height: 400px;
overflow-y: auto;
border: 1px solid #ddd;
padding: 15px;
background-color: #f9f9f9;
}
#preview-section h2 {
margin-top: 0;
}
#preview-content h3 {
margin-top: 15px;
margin-bottom: 5px;
}
#preview-content ul {
list-style-type: none;
padding-left: 0;
}
#preview-content li {
margin-bottom: 5px;
}
/* Footer styling */
footer {
text-align: center;
padding: 10px;
background: #333;
color: #fff;
}