forked from amaan14999/GPAtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (69 loc) · 1.16 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
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
font-family: Inter;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
h1 {
text-align: center;
color: #444;
}
form {
width: 80%;
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
label {
display: block;
margin-bottom: 10px;
color: #444;
}
input[type="number"],
select {
display: block;
width: 50%;
padding: 5px;
margin: 0 auto;
margin-bottom: 10px;
margin-top: 10px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
}
button {
display: inline-block;
width: 48%;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: #fff;
cursor: pointer;
}
.buttonContainer {
text-align: center;
display: flex;
justify-content: space-between;
}
button:hover {
background-color: #0056b3;
}
#resetButton {
background-color: #e12235;
}
#resetButton:hover {
background-color: rgb(173, 0, 0);
}
#courses {
margin-top: 20px;
}
#courses p {
font-size: 1.2rem;
font-weight: bold;
color: #007bff;
}