forked from Shubham8287/notice
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·125 lines (105 loc) · 1.94 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·125 lines (105 loc) · 1.94 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
@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
overflow: hidden;
font-family: Rubik;
background-color: #f2f2f3;
}
.FirstRow{
display: flex;
margin: 20px 0px;
justify-content: space-evenly;
}
.SecondRow{
display: flex;
margin: 20px 0px;
justify-content: space-evenly;
}
.sec{
height: 45vh;
flex-basis: 47%;
display: flex;
overflow: hidden;
flex-direction: column;
justify-content: flex-start;
background-color: white;
}
.sec-heading{
text-align: center;
}
.sec-heading h2{
color: white;
padding: 4px;
margin: 7px;
box-shadow: 0 3px 6px rgba(0,0,0,0.30),
0 3px 6px rgba(0,0,0,0.50);
}
.photo-galery{
height: 45vh;
flex-basis: 47%;
display: flex;
overflow: hidden;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: white;
}
.teachers-on-leave-names{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
text-align: center;
}
.teachers-on-leave-heading{
background-color: #273868 /* #2c3e50 */;
}
.teachers-on-leave-names h3{
padding: 8px;
}
.teachers-name{
width: 45%;
margin-top: 10px;
border: 1.8px solid #273868;
border-radius: 5px;
background-color: #f2f2f3;
}
.imp-notification{
margin: 60px 30px;
display: flex;
text-align: center;
}
.imp-notification-heading{
background-color: #273868 /* #e81e25 */;
}
.imp-txt{
color: #e81e25;
margin: 15px 0;
padding-bottom: 15px;
font-weight: 900;
font-size: 1.15rem;
animation: blink 1s infinite;
}
.notification{
margin: 0 20px;
}
.notification-heading{
background-color: #273868 /* #12c2e9 */;
}
.txt{
color: #273868;
margin: 10px 0;
padding-bottom: 10px;
border-bottom: 1px solid #273868;
}
@keyframes blink{
50% {
font-size: 1.2rem;
color: #273868;
}
}