-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
121 lines (115 loc) · 2 KB
/
styles.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
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
body{
background-color: #FFFFFF;
}
h4,b{color: #2F80ED;}
h1{
font-family: 'Roboto Mono', monospace;
text-align: center;
}
/*3 divisons under container :- main flx-cont cont*/
.container {
display: flex;
}
/* main used for timeline */
.main
{
width: 10%;
}
/* used to display the chapter names */
.flx-cont
{
text-align: center;
margin: 10px;
width: 400px;
}
/* cont used for dymanically displaying the data */
.cont
{
margin: 15px;
border: solid black 1px;
border-color: blue;
border-radius: 25px;
height:280px ;
padding: 10px;
box-shadow: 0 0 10px #9ecaed;
}
.flx-itm
{
display: flex;
align-items: center;
padding : 10px 10px 0px 10px;
border: solid black 1px;
border-color: blue;
border-radius: 25px;
height: 50px;
width: 80%;
text-align: center;
margin: 10px;
cursor: grab;
background-color: #FAFAFA;
}
.flx-itm:hover
{
box-shadow: 0 0 10px #9ecaed;
}
.flx-itm img {
margin-left: auto;
}
.content/*Div*/
{
margin: 15px;
width: 300px;
font-weight: bold;
}
/* transitions for the syllabus showing */
.transi
{
animation: fadeInAnimation ease 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Time Line */
.element {
display: flex;
flex-direction: column;
align-items: center;
}
.circle {
width: 20px;
height: 20px;
border: 2px solid #2F80ED;
border-radius: 50%;
background-color: white;
transition: all 0.5s ease;
}
.circle-black {
background-color: #2F80ED;
}
.vline {
color: #2F80ED;
border-left: 3px solid;
height: 50px;
}
.circle-blue{
width: 30px;
height: 30px;
border-width: 4px;
background-color: #2F80ED;
}
.concentric{
width:30px;
height:30px;
border-radius:50%;
background-color: #2F80ED;
background-clip:content-box;
padding:4px;
border:3px solid #2F80ED;
}