forked from ReejoJoseph1244/RMLearning-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontcss.css
More file actions
149 lines (126 loc) · 2.67 KB
/
frontcss.css
File metadata and controls
149 lines (126 loc) · 2.67 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#header{
height: 50px;;
color:purple;
}
.div{
position: relative;
right: 8px;
}
.socialicons{
margin: -25px 2px 1px 280px;
}
.login{
background-color:#4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
margin: -25px 2px 4px 180px;
border-radius: 20px;
}
.button {
background-color:#4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover{background-color:white;color: black;}
#bar{
background-color:#4CAF50;
margin-right: -10px;
}
.subjectbuttons{
background-color:powderblue; /* Green */
border: none;
color: blueviolet;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 2px -35px;
cursor: pointer;
width: 180px;
}
.gridcontainer{
display: grid;
grid-template-areas:
'name info info info info info feed'
'name cont cont cont cont cont feed'
'pg pg pg pg pg pg pg'
'faq faq faq faq faq faq faq';
}
.subjectnames{
margin-left: -5px;
grid-area: name;
width: 200px;
background-color: cornsilk;
border-right: 5px solid blueviolet;
border-bottom: 5px solid blueviolet;
height: 850px;
}
.content{
margin-left: 15px;
}
.feedback{
background-color:cornsilk;
height: 850px;
width: 200px;
margin-right: -9px;
border-left: 5px solid blueviolet;
border-bottom: 5px solid blueviolet;
padding-left: 10px;
line-height: 10px;
}
.submit{
background-color:blueviolet;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 20px;
}
.FAQ{
background-color: cornsilk;
border-top: 5px solid blueviolet;
border-left: 5px solid blueviolet;
border-right: 5px solid blueviolet;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
.checked {
color: orange;
}
.subjectinfo{
grid-area: info;
}
.content{
grid-area: cont;
}
.feedback{
grid-area: feed;
}
.pagechange{
grid-area: pg;
}
.FAQ{
grid-area: faq;
}