-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyleOthers.css
72 lines (53 loc) · 1.08 KB
/
styleOthers.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.fw-bold {
margin: 40px 60px 15px;
}
.section {
margin: 25px 60px;
}
.section.h3 {
margin: 0px 15px;
}
.btn {
border-radius: 0px;
background-color: rgb(255, 255, 255);
border-color: black;
color: rgb(0, 0, 0);
}
.btn:hover {
border-color: rgb(255, 255, 255);
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
}
.resultSection {
padding: 10px 60px;
}
.GradeShow {
padding: 10px 900px 10px 60px;
}
/* unvisited link */
a:link {
color: rgb(173, 169, 169);
text-decoration: none;
}
/* visited link */
a:visited {
color: rgb(255, 251, 0);
text-decoration: none;
}
/* mouse over link */
a:hover {
color: blue;
text-decoration: none;
}
/* selected link */
a:active {
color: blue;
text-decoration: none;
}