Skip to content

Commit c8111c9

Browse files
Merge pull request #69 from Athena-Education/hariketsheth
Added 83+ Functions for Text Editor (#39, #40)
2 parents 781f7d5 + 2284629 commit c8111c9

22 files changed

Lines changed: 6084 additions & 0 deletions

account/css/style.css

Lines changed: 450 additions & 0 deletions
Large diffs are not rendered by default.

account/css/style1.css

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
2+
3+
* {
4+
zoom: 99%;
5+
}
6+
7+
html {
8+
scroll-behavior: smooth;
9+
}
10+
11+
::-webkit-scrollbar {
12+
width: 8px;
13+
background-color: #000;
14+
}
15+
16+
::-webkit-scrollbar-thumb {
17+
background: #777;
18+
border-radius: 2px;
19+
}
20+
21+
::-webkit-scrollbar-thumb:hover {
22+
background: #555;
23+
}
24+
25+
body {
26+
background: #0f0c29;
27+
background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);
28+
background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
29+
font-family: "Roboto", sans-serif;
30+
}
31+
32+
.shadow {
33+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
34+
}
35+
36+
.profile-tab-nav {
37+
min-width: 250px;
38+
}
39+
40+
.tab-content {
41+
flex: 1;
42+
}
43+
44+
.form-group {
45+
margin-bottom: 1.5rem;
46+
}
47+
48+
.nav-pills a.nav-link {
49+
padding: 15px 20px;
50+
border-bottom: 1px solid #ddd;
51+
border-radius: 0;
52+
color: #333;
53+
}
54+
55+
.nav-pills a.nav-link i {
56+
width: 20px;
57+
}
58+
59+
.img-circle img {
60+
height: 100px;
61+
width: 100px;
62+
border-radius: 100%;
63+
border: 5px solid #fff;
64+
}
65+
66+
.fa {
67+
padding: 5px;
68+
font-size: 13px;
69+
width: 20px;
70+
text-align: center;
71+
text-decoration: none;
72+
margin: 2px 1px;
73+
border-radius: 20%;
74+
}
75+
76+
.fa:hover {
77+
opacity: 0.7;
78+
}
79+
80+
.fa-facebook {
81+
background: #3B5998;
82+
color: white;
83+
}
84+
85+
.fa-github {
86+
background: #333;
87+
color: white;
88+
}
89+
90+
.fa-twitter {
91+
background: #55ACEE;
92+
color: white;
93+
}
94+
95+
.fa-linkedin {
96+
background: #007bb5;
97+
color: white;
98+
}
99+
100+
.fa-youtube {
101+
background: #bb0000;
102+
color: white;
103+
}
104+
105+
.fa-instagram {
106+
background-color: #4158D0;
107+
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
108+
color: white;
109+
}
110+
111+
.fa-globe {
112+
background: #3ca55c;
113+
background: -webkit-linear-gradient(to right, #3ca55c, #b5ac49);
114+
background: linear-gradient(to right, #3ca55c, #b5ac49);
115+
color: #FFF;
116+
}

account/css/sweetalert2.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

account/img/default.png

2.26 MB
Loading

account/img/logo.ico

4.19 KB
Binary file not shown.

account/img/welcome.png

399 KB
Loading

account/js/app.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

account/js/ckeditor/CHANGES.md

Lines changed: 2045 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)