-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.css
89 lines (87 loc) · 1.56 KB
/
Index.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins';
}
body {
height: 100vh;
display: grid;
justify-content: center;
align-items: center;
margin: auto;
}
.Main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 10px;
}
.MainTable tr {
display: grid;
grid-template-columns: repeat(3, 1fr);
margin: 0px 10px;
}
.fa-circle-plus {
text-align: center;
width: 100%;
font-size: xx-large;
margin: 10px 0px;
color: #FEAA42;
}
.Heading {
color: white;
width: 100%;
text-align: center;
background-color: #30404f;
padding: 20px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.MainTable {
background-color: #feaa42;
color: white;
}
input,select,button {
width: 100%;
outline: none;
border-radius: none;
border: none;
margin: 5px 0px !important;
padding: 5px;
border-radius: 5px;
min-width: 10px;
}
.MainTable td {
margin: 3px;
text-align: center;
}
.BS,button {
background-color: #30404f;
color: #FEAA42;
border: 0px;
width: 100%;
}
.Detail {
transform: scale(0);
width: 100%;
background-color: #30404f;
color: white;
justify-content: space-between;
align-items: center;
padding: 10px;
border-radius: 5px;
}
.Detail2
{
transform: scale(1);
transition: all 0.3s ease-in-out;
}
.GPA {
justify-self: end;
background-color: yellow;
padding: 10px;
color: #30336b;
border-radius: 5px;
}