-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (93 loc) · 1.73 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.curve-wrapper {
max-width: 700px;
margin: 0 auto;
}
.container {
max-width: 700px; /* Add this line */
margin: 0 auto;
padding: 1rem;
}
h1 {
font-weight: 700;
font-size: 48px;
text-align: center;
color: #333;
margin-bottom: 40px;
}
h3 {
font-weight: 400;
margin-bottom: 5px;
color: #333;
}
p {
font-weight: 300;
margin-bottom: 10px;
color: #666;
}
.curves-container {
display: flex;
flex-direction: column;
gap: 30px;
}
.curve-container {
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
border: 2px solid #6daec5;
border-radius: 8px;
padding: 20px;
}
.curve {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
border: 1px solid #e0e0e0;
border-radius: 4px;
}
/* General form styles */
.form-controls {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 20px;
padding-top: 20px;
}
/* Style the input box */
.custom-function-input {
background-color: #f5f5f5;
border: 2px solid #e0e0e0;
border-radius: 4px;
padding: 10px 15px;
font-size: 14px;
color: #333;
flex-grow: 1;
margin: 0px 10px;
}
/* Style the select box */
.curve-selector {
background-color: #f5f5f5;
border: 2px solid #e0e0e0;
border-radius: 4px;
padding: 10px;
font-size: 14px;
color: #333;
margin-right: 20px;
}
.chatgpt-message {
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
background-color: #f0f0f0;
border-radius: 5px;
padding: 20px;
margin: 20px;
text-align: center;
}