-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (65 loc) · 1.26 KB
/
style.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
body, input, button, h1, h2, p {
font-family: 'Roboto', sans-serif;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 10px;
color: #333;
}
.header h1 {
color: #e15b5b;
font-size: 2rem;
}
.header p {
font-size: 1rem;
margin-bottom: 20px;
}
.main-content {
background: #ecf0f1;
padding: 20px;
border-radius: 8px;
}
.calculator-step h2 {
color: #000;
margin-bottom: 10px;
}
.input-group input, .input-group button {
padding: 10px;
margin: 5px;
border-radius: 4px;
border: 1px solid #000;
font-size: 1rem;
}
.input-group button {
background-color: #e15b5b;
color: white;
cursor: pointer;
border: none;
}
.input-group button:hover {
background-color: #000;
}
.hidden {
display: none;
}
#calculate-revenue-impact-btn {background:black;}
#calculate-revenue-impact-btn:hover {background:#e15b5b;}
.potatoe {border-bottom:1px solid;}
a.potatoe {color: #e15b5b;}
a {text-decoration:none;color:black;}
.output-group {
background: white;
padding: 35px;
margin-top: 20px;
border-left: 4px solid #e15b5b;
text-align: left;
}
.chart-container {
margin-top: 20px;
padding: 15px;
}
.chart-container canvas {
width: 100%;
height: 400px;
}