-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (65 loc) · 1.17 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body{
background-color: #FFBA37;
font-family: 'Roboto', sans-serif;
}
h1{
text-align: center;
font-family: 'Roboto', sans-serif;
color: #5300C6;
font-weight: bolder;
}
.form{
display: flex;
justify-content: center;
}
input{
margin: 10px;
font-size: 1em;
padding: 4px;
padding-left: 10px;
padding-right: 20px;
border-radius: 1px;
}
.btn{
padding-left: 20px;
padding-right: 20px;
}
.course{
margin-bottom: 20px;
}
th{
padding: 10px 100px;
font-size: 1.5em;
background-color: #5B0E;
}
table{
margin: auto;
font-family: 'Roboto', sans-serif;
}
td{
text-align: center;
padding: 10px;
font-size: 1.25em;
font-weight: bolder;
}
.result{
display: flex;
justify-content:space-around;
font-size: 1.2em;
font-weight: bolder;
margin-top: 30px;
padding-left: 300px;
padding-right: 300px;
}
.cgp, .tot{
display: flex;
justify-content: center;
background-color: #00154F;
padding: 10px 20px;
border-radius: 5px;
color: #FFBA37;
}
.t{
padding-right: 5px;
}