diff --git a/doc/deployer/Migrating_SQLite_DB_to_PostgreSQL.txt b/doc/deployer/Migrating_SQLite_DB_to_PostgreSQL.txt index 2e64d507a5..148be5b2e7 100644 --- a/doc/deployer/Migrating_SQLite_DB_to_PostgreSQL.txt +++ b/doc/deployer/Migrating_SQLite_DB_to_PostgreSQL.txt @@ -112,6 +112,12 @@ alter sequence auth_user_id_seq restart # Tabing BACKUP/DUMP of all DBs and table pg_dumpall > file-name.sql +-- OR -- +echo "pg_dumpall > /tmp/file-name.sql" | sudo su - postgres +# In above case, permission denied exception might gets raised to create file under `/tmp/` +-- OR -- +echo "pg_dumpall > file-name.sql" | sudo su - postgres +# In above case file-name.sql will be created under `/var/lib/postgresql/` folder # DROP database $ sudo su - postgres diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py new file mode 100644 index 0000000000..b61d654a44 --- /dev/null +++ b/doc/deployer/es_initialize.py @@ -0,0 +1,133 @@ +# from bson import json_util +# import os +# import sys +# import json +# from elasticsearch import Elasticsearch +# from gnowsys_ndf.ndf.models import * + +# from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +# from gnowsys_ndf.local_settings import * + + +# ##### use the below commented lines if you are working with Python 2.x ##### +# # reload(sys) +# # sys.setdefaultencoding('UTF8') + +# es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) + + +# author_index = "author_" + GSTUDIO_SITE_NAME.lower() +# index = GSTUDIO_SITE_NAME.lower() +# gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME.lower() + +# page_id = 0 + +# def index_docs(all_docs): +# k = 0 +# all_docs_count = all_docs.count() +# for node in all_docs: +# print "[ %s/%s ] : %s " % (k, all_docs_count, node._id) +# if(node._type == "GSystem"): +# try: +# node.get_neighbourhood(node.member_of) +# except Exception as e: +# print(e) +# else: +# pass + +# doc = json.dumps(node, cls=NodeJSONEncoder) #convert mongoDB object to a JSON string +# #doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string + +# document = json.loads(doc) #convert JSON string to a python dictionary +# #doc = json.dumps(document) #convert python dictionary to JSON string + +# if("name" in document.keys()): + +# # replacing "_" starting keys: +# document["id"] = document.pop("_id") +# document["type"] = document.pop("_type") + +# if("object_type" in document.keys()): +# document["object_type"] = str(document["object_type"]) +# if("property_order" in document.keys()): +# document["property_order"] = str(document["property_order"]) +# if("object_value" in document.keys()): +# document["object_value"] = str(document["object_value"]) #for consistent mapping + +# doc_type = get_document_type(document) +# es.index(index=index, doc_type=doc_type, id=document["id"], body=document) +# if "contributors" in document.keys(): +# contributors = document["contributors"] +# for contributor_id in contributors: +# es.index(index = author_index, doc_type = contributor_id, id=document["id"], body = document) + +# if(document["type"] == "GSystem"): +# for type_ids in document['member_of']: +# es.index(index = gsystemtype_index, doc_type = type_ids, id = document["id"], body = document) + +# k+=1 + +# def get_document_type(document): +# types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group", "GSystemType"] +# if document["type"]=="GSystem": +# for ids in document['member_of']: #document is a member of the Page GSystemType +# if(ids == page_id): +# return "Page" +# if('if_file' in document.keys()): +# if(document["if_file"]["mime_type"] is not None): +# data = document["if_file"]["mime_type"].split("/") +# doc_type = data[0] +# else: +# doc_type = "NotMedia" +# else: +# doc_type = "NotMedia" +# elif (document["type"] in types_arr): +# doc_type = document["type"] +# else: +# doc_type = "DontCare" +# return doc_type + + +# def main(): + +# print("Starting the indexing process...") +# # DELETING existing/old indexes +# if(es.indices.exists(index)): +# print("Deleting the existing index: "+index+" for reindexing") +# res = es.indices.delete(index=index) +# print("The delete response is %s " % res) + +# if(es.indices.exists(author_index)): +# print("Deleting the existing author_index: "+author_index +" for reindexing") +# res = es.indices.delete(index=author_index) +# print("The delete response is %s " % res) + +# if(es.indices.exists(gsystemtype_index)): +# print("Deleting the existing gtype index: "+ index+ "for reindexing") +# res = es.indices.delete(index=gsystemtype_index) +# # --- END of DELETING existing/old indexes + +# with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body.json") as req_body: +# request_body = json.load(req_body) +# with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json") as req_body_type: +# request_body_gtype = json.load(req_body_type) +# with open(GSTUDIO_DOCUMENT_MAPPING+"/gsystemtype_map.json") as gtypemap: +# gtype_map = json.load(gtypemap) +# page_id = gtype_map["Page"] + +# res = es.indices.create(index=index, body=request_body) +# print("Response for index creation") +# print(res) + +# res = es.indices.create(index=gsystemtype_index, body=request_body_gtype) +# print("Response for index creation") +# print(res) + +# res = es.indices.create(index=author_index, body=request_body_gtype) +# print("Response for index creation") +# print(res) + +# all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) +# index_docs(all_docs) + +# main() \ No newline at end of file diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py new file mode 100644 index 0000000000..60e7c493ea --- /dev/null +++ b/doc/deployer/es_injection.py @@ -0,0 +1,204 @@ +from bson import json_util +import os +import sys +import json +from elasticsearch import Elasticsearch +from gnowsys_ndf.ndf.models import * + +#from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +#from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.settings import * + +try: + from bson import ObjectId +except ImportError: # old pymongo + from pymongo.objectid import ObjectId +##### use the below commented lines if you are working with Python 2.x ##### +# reload(sys) +# sys.setdefaultencoding('UTF8') + +es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) + +#author_index = "author_" + GSTUDIO_SITE_NAME.lower() +#index = GSTUDIO_SITE_NAME.lower() +#gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME.lower() +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json") as req_body: + request_body = json.load(req_body) +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json") as triples: + triples_body = json.load(triples) + + +page_id = 0 + + +def index_docs(all_docs,index,doc_type): + k = 0 + all_docs_count = all_docs.count() + for docs in all_docs: + print "[ %s/%s ] : %s " % (k, all_docs_count, docs._id) + + + doc = json.dumps(docs, cls=NodeJSONEncoder) # convert mongoDB object to a JSON string + # doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string + + document = json.loads(doc) # convert JSON string to a python dictionary + # doc = json.dumps(document) #convert python dictionary to JSON string + document["id"] = document.pop("_id") + document["type"] = document.pop("_type") + + #for docs in doc_type: + print document["type"] + #print document + doc_type = document["type"].lower() + es.index(index=index, doc_type=doc_type, id=document["id"], body=document) + + k += 1 + + #file_name.close() + + + +def get_document_type(document): + + if document["type"]=="GSystem": + #for ids in document['member_of']: #document is a member of the Page GSystemType + #if(ids == page_id): + #return "Page" + if('if_file' in document.keys()): + if(document["if_file"]["mime_type"] is not None): + data = document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "notmedia" + else: + doc_type = "notmedia" + + else: + doc_type = "dontcare" + return doc_type + + + +def main(): + #f = open("/data/nodes.txt", "w") + #os.chmod("/data/nodes.txt", 0o777) + + nodes = {} + triples = {} + benchmarks = {} + filehives = {} + buddys = {} + counters = {} + + #all_docs = [ triples, buddys, benchmarks, nodes, counters] + + print("Starting the indexing process...") + + for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): + temp = [] + + + index_lower = index.lower() + if (not es.indices.exists(index_lower)): + if (index_lower == "triples"): + res = es.indices.create(index=index_lower, body=triples_body) + else: + res = es.indices.create(index=index_lower, body=request_body) + + if (es.indices.exists(index_lower)): + + res = es.search(index=index_lower, body={"query": {"match_all": {}}, "_source": ["id"]}, scroll="1m", size="10") + + scrollid = res['_scroll_id'] + + while len(res['hits']['hits']) > 0: + + for hit in res['hits']['hits']: + # print(hit["_source"]["id"]) + # f.write(hit["_source"]["id"] + '\n') + # res = es.search(index="nodes", body={"scroll_id": '"' + scrollid + '"'}, search_type="scan", + # scroll="1m", size="10") + temp.append(ObjectId(hit["_source"]["id"])) + + res = es.scroll(scrollid, scroll="1m") + + + if(index_lower == "nodes"): + nodes = node_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + + if(nodes.count() == 0): + print("All "+ index_lower +" documents has injected to elasticsearch") + continue + else: + index_docs(nodes, index_lower, doc_type) + + elif (index_lower == "triples"): + triples = triple_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (triples.count() == 0): + print("All " + index_lower + " documents has injected to elasticsearch") + continue + else: + # f = open("/data/triples.txt", "w") + # os.chmod("/data/triples.txt", 0o777) + index_docs(triples, index_lower, doc_type) + + elif (index_lower == "benchmarks"): + benchmarks = benchmark_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (benchmarks.count() == 0): + print("All " + index_lower + " documents has injected to elasticsearch") + continue + else: + index_docs(benchmarks, index_lower, doc_type) + + elif (index_lower == "filehives"): + filehives = filehive_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (filehives.count() == 0): + print("All " + index_lower + " documents has injected to elasticsearch") + continue + else: + index_docs(filehives, index_lower, doc_type) + + elif (index_lower == "buddies"): + buddys = buddy_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (buddys.count() == 0): + print("All " + index_lower + " documents has injected to elasticsearch") + continue + else: + index_docs(buddys, index_lower, doc_type) + + elif (index_lower == "counters"): + counters = counter_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (counters.count() == 0): + print("All " + index_lower + " documents has injected to elasticsearch") + continue + else: + index_docs(counters, index_lower, doc_type) + + + #print(res['_scroll_id']) + #print(res['hits']['total']) + + #f = open("/data/nodes.txt", "w+") + #os.chmod("/data/nodes.txt", 0o777) + + # f = open("/data/nodes.txt", "w+") + # os.chmod("/data/nodes.txt", 0o777) + + # es.scroll(scrollid, scroll="1m") + + #print(temp) + + # DELETING existing/old indexes + + # for index in GSTUDIO_ELASTIC_SEARCH_INDEX.keys(): + # if (es.indices.exists(index_lower)): + # print("Deleting the existing index: " + index.lower() + " for reindexing") + # res = es.indices.delete(index=index.lower()) + # print("The delete response is %s " % res) + + + # --- END of DELETING existing/old indexes + + + +main() diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py new file mode 100644 index 0000000000..adc69b9f2b --- /dev/null +++ b/doc/deployer/esinitialize_map.py @@ -0,0 +1,121 @@ +# from bson import json_util +# import os, errno +# import sys +# import json +# # from elasticsearch import Elasticsearch +# from gnowsys_ndf.ndf.models import * + +# from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING + +# # es = Elasticsearch("http://elsearch:changeit@gsearch:9200") + +# author_map = {} +# group_map = {} +# system_type_map = {} +# id_attribute_map = {} +# id_relation_map = {} + +# def create_map(all_docs): +# ''' +# This function is used to create 4 maps author_map, group_map,attribute map, relation map +# Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. + +# ''' +# for node in all_docs: +# if("name" in node): #only docs with names will be considered for mapping +# if(node._type == "Author"): +# author_map[node.name] = node.created_by +# if(node._type == "Group"): +# group_map[node.name] = str(node._id) +# if(node._type == "GSystem"): +# attr = []; rel = []; +# #here what we are doing is: if a GSystem node has member_of set as [A,B,C] +# #suppose the possible attributes of A are x,y +# #suppose the possible attributes of B are z +# #suppose the possible attributes of C are w +# #if the GSystem node contains any other attribute (p), then that has to be added to the attribute_map +# #i.e. it will be added to attribute_set of A,B,C +# for grid in node.member_of: +# gid = str(grid) +# if(gid not in system_type_map.values()): +# id_attribute_map[gid] = [] +# id_relation_map[gid] = [] +# attr += id_attribute_map[gid] +# rel += id_relation_map[gid] + +# attr = list(set(attr)) +# rel = list(set(rel)) +# for grid in node.member_of: +# gid = str(grid) +# for attr_dict in node.attribute_set: +# for key in attr_dict.keys(): +# if(key not in attr): +# id_attribute_map[gid].append(key) +# for rel_dict in node.relation_set: +# for key in rel_dict.keys(): +# if(key not in rel): +# id_relation_map[gid].append(key) + +# if(node._type == "GSystemType"): +# create_advanced_map(node) +# # if(node._type == "GSystem"): +# # update_advanced_map(node) + + + +# def create_advanced_map(node): +# ''' +# This function is used for creating the gsystemtype_map, attribute_map and relation_map +# attribute and relation map are a mapping between the gsystem type id and the possible attributes/relations +# of that gsystem type. +# ''' +# system_type_map[node.name] = str(node._id) +# attribute_type_set = [] +# for attribute in node.attribute_type_set: +# attribute_type_set.append(attribute["name"]) +# relation_type_set = [] +# for relation in node.relation_type_set: +# relation_type_set.append(relation["name"]) +# if(str(node._id) not in id_attribute_map.keys()): +# id_attribute_map[str(node._id)] = [] +# if(str(node._id) not in id_relation_map.keys()): +# id_relation_map[str(node._id)] = [] +# id_attribute_map[str(node._id)] += attribute_type_set +# id_relation_map[str(node._id)] += relation_type_set + +# def main(): +# print("Starting the map creation process") +# all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) +# create_map(all_docs) + +# for key,val in id_attribute_map.iteritems(): +# id_attribute_map[key] = list(set(val)) +# for key,val in id_relation_map.iteritems(): +# id_relation_map[key] = list(set(val)) + +# mapping_directory = GSTUDIO_DOCUMENT_MAPPING +# if not os.path.exists(mapping_directory): +# print("creating mapping directory") +# os.makedirs(mapping_directory) + +# f = open(mapping_directory+"/authormap.json","w") +# json.dump(author_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/groupmap.json","w") +# json.dump(group_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/gsystemtype_map.json","w") +# json.dump(system_type_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/attribute_map.json","w") +# json.dump(id_attribute_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/relation_map.json","w") +# json.dump(id_relation_map,f,indent=4) +# f.close() + +# main() \ No newline at end of file diff --git a/doc/deployer/update.py b/doc/deployer/update.py new file mode 100644 index 0000000000..d64cf52985 --- /dev/null +++ b/doc/deployer/update.py @@ -0,0 +1,223 @@ +# from bson import json_util +# import os +# import sys +# import json +# from elasticsearch import Elasticsearch +# from gnowsys_ndf.ndf.models import * +# from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_DOCUMENT_MAPPING + +# es = Elasticsearch("http://elsearch:changeit@gsearch:9200") +# mapping_directory = GSTUDIO_DOCUMENT_MAPPING + +# #during deleting or updating do we need need to set refresh=true to make the document available for search + +# author_index = "author_" + GSTUDIO_SITE_NAME +# index = GSTUDIO_SITE_NAME +# gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME + +# author_map = {} +# group_map = {} +# gsystemtype_map = {} +# attribute_map = {} +# relation_map = {} +# with open(mapping_directory+'/authormap.json') as fe: +# author_map = json.load(fe) + +# with open(mapping_directory+'/groupmap_clix.json') as fe: +# group_map = json.load(fe) + +# with open(mapping_directory+"/gsystemtype_map.json") as gm: +# gsystemtype_map = json.load(gm) + +# with open(mapping_directory+"/attribute_map.json") as am: +# attribute_map = json.load(am) + +# with open(mapping_directory+"/relation_map.json") as rm: +# relation_map = json.load(rm) + +# doc_type = "" +# page_id = gsystemtype_map["Page"] + +# def update_doc(node): +# ''' +# This function should be called from models.py whenever +# a new node is created or an existing node is updated(not deleted) +# Arguments: the mongoDB object +# ''' +# global doc_type +# if(node._type == "GSystem"): +# try: +# node.get_neighbourhood(node.member_of) +# except Exception as e: +# print(e) +# else: +# pass + +# doc = json.dumps(node, default=json_util.default) +# document = json.loads(doc) +# if("name" not in document.keys()): +# return +# document["id"] = document.pop("_id") +# document["type"] = document.pop("_type") +# if("object_type" in document.keys()): +# document["object_type"] = str(document["object_type"]) +# if("property_order" in document.keys()): +# document["property_order"] = str(document["property_order"]) +# if("object_value" in document.keys()): +# document["object_value"] = str(document["object_value"]) +# doc_type = get_document_type(document) +# update_author_index(document) +# if(document["type"] == "Author"): +# indexAuthor(document) +# elif(document["type"] == "GSystem"); +# indexGSystem(document) +# elif(document["type"] == "GSystemType"): +# indexGSystemType(document) +# elif(document["type"] == "Group"): +# indexGroup(document) +# else: +# indexDoc(document) + +# f = open(mapping_directory+"/authormap.json","w") +# json.dump(author_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/groupmap.json","w") +# json.dump(group_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/gsystemtype_map.json","w") +# json.dump(gsystem_type_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/attribute_map.json","w") +# json.dump(id_attribute_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/relation_map.json","w") +# json.dump(id_relation_map,f,indent=4) +# f.close() + + +# def update_author_index(document): +# ''' +# This function updates the author index, i.e. it +# first gets the old document from elasticsearch index, +# deletes that document from each contributor_id doc_type and indexes the +# new updated document into every contributor doc_type in the new contributors list +# Argument: the json file to be indexed +# ''' +# if("contributors" in document.keys()): +# res = es.get(index=index,doc_type=doc_type,id=document["id"]["$oid"]) +# if(len(res["hits"]["hits"]) != 0): #check the syntax +# old_contributor_set = res["hits"]["hits"][0]["_source"]["contributors"] +# new_contributor_set = document["contributors"] +# for contributor_id in old_contributor_set: +# es.delete(index=author_index, doc_type=contributor_id,id=document["id"]["$oid"]) #check the syntax +# for contributor_id in new_contributor_set: +# es.index(index = author_index, doc_type = contributor_id, id=document["id"]["$oid"], body = document) +# else: +# new_contributor_set = document["contributors"] +# for contributor_id in new_contributor_set: +# es.index(index = author_index, doc_type = contributor_id, id=document["id"]["$oid"], body = document) + + + +# def indexGroup(document): +# ''' +# This function indexes/updates those documents whose doc_type is Group. +# It also updates the group_map +# Argument: the json file to be indexed +# ''' +# if(document["name"] not in group_map.keys()): +# group_map[document["name"]] = document["id"]["$oid"] +# es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + +# def indexAuthor(document): +# ''' +# This function indexes/updates those documents whose doc_type is Group. +# It also updates the author_map +# Argument: the json file to be indexed +# ''' +# if(document["name"] not in author_map.keys()): +# author_map[document["name"]] = document["created_by"] + +# es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + +# def indexGSystemType(document): +# ''' +# This function indexes/updates those documents whose doc_type is GSystemType +# It updates the attribute map and relation map +# Argument: the json file to be indexed +# ''' +# if(document["name"] not in gsystemtype_map.keys()): +# gsystemtype_map[document["name"]] = document["id"]["$oid"] +# for attribute in document["attribute_type_set"]: +# if(attribtue not in attribute_map[document["id"]["$oid"]]): +# attribute_map[document["id"]].append(attribute) +# for relation in document["relation_type_set"]: +# if(relation not in relation_map[document["id"]["$oid"]]): +# relation_map[document["id"]["$oid"]].append(relation) +# es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + +# def indexGSystem(document): +# ''' +# This function indexes/updates those documents whose type is GSystem +# It also updates the attribute map and relation map +# It also updates the GSystemType_index, i.e. the +# index used for advanced search +# Argument: the json file to be indexed +# ''' +# es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) +# attr_set = [] +# reln_set = [] +# for gsyst in document["member_of"]: +# gsyst_id = gsyst["$oid"] +# poss_attr = attribute_map[gsyst_id] +# poss_reln = relation_map[gsyst_id] +# attr_set.extend(poss_attr) +# reln_set.extend(poss_reln) +# for attr_dict in document["attribute_set"]: +# attr_name = attr_dict.keys()[0] +# if(attr_name not in attr_set): +# for gsyst in document["member_of"]: +# gsyst_id = gsyst["$oid"] +# attribute_map[gsyst_id].append(attr_name) +# for reln_dict in document["relation_set"]: +# reln_name = reln_dict.keys()[0] +# if(reln_name not in reln_set): +# for gsyst in document["member_of"]: +# gsyst_id = gsyst["$oid"] +# relation_map[gsyst_id].append(reln_name) + +# for type_ids in document['member_of']: +# es.index(index = gsystemtype_index, doc_type = type_ids["$oid"], id = document["id"]["$oid"], body = document) + +# def indexDoc(document): +# ''' +# For any other type of document, this function will index/update the document in the main index +# ''' +# es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + +# def get_document_type(document): +# ''' +# This function is used to return the document type of a document +# ''' +# types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group", "GSystemType"] +# if document["type"]=="GSystem": +# for ids in document['member_of']: #document is a member of the Page GSystemType +# if(ids['$oid'] == page_id): +# return "Page" +# if('if_file' in document.keys()): +# if(document["if_file"]["mime_type"] is not None): +# data = document["if_file"]["mime_type"].split("/") +# doc_type = data[0] +# else: +# doc_type = "NotMedia" +# else: +# doc_type = "NotMedia" +# elif (document["type"] in types_arr): +# doc_type = document["type"] +# else: +# doc_type = "DontCare" +# return doc_type diff --git a/doc/developer/elastic-search.txt b/doc/developer/elastic-search.txt new file mode 100644 index 0000000000..b83d5a7f17 --- /dev/null +++ b/doc/developer/elastic-search.txt @@ -0,0 +1,179 @@ +# INSTALLING ELASTIC SEARCH CONTAINER: + +1. GETTING DOCKER IMAGE: + $ docker pull docker.elastic.co/elasticsearch/elasticsearch:5.4.0 + + +2. CREATEING CONTAINER: + $ docker run -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.4.0 + + +3. CREATE A SUPERUSER TO USE THE ELASTIC SEARCH: + - A login is required to use the elasticsearch container. + - Open the bash of elasticsearch and run following inside the bash + $ curl -XPOST 'http://elastic:changeme@localhost:9200/_xpack/security/user/elsearch?pretty' -H 'Content-Type:application/json' -d '{"password": "", "roles": ["superuser"]}' + - NOTE: Make sure same passowrd is used at both places: + 1. GSTUDIO_ELASTIC_SEARCH_PASSWORD + 2. + + +4. LINK THE GSTUDIO CONTAINER WITH THE ELASTICSEARCH CONTAINER (using the docker run): + + $ docker run -itd --link :alias --name= -p 80:80 -p 8000:8000 -v -v + +- NOTE: The alias we gave was gsearch -> this alias is used while creating instance of elasticsearch in the program. + +(--link flag is now deprecated) + +5. INSTALL THE PYTHON ELASTICSEARCH CLIENT (in the gstudio container): + $ pip install elasticsearch + + + +------------------------------------------------------------------------------------------ + + + +# IMPLEMENTATION: + +- Our search url can be found in __init__.py file of urls folder. In the search form, the if filter Users is selected then the contributions of the user entered in the search box will be searched, else if any other filter is selected, normal search will happen. + +If group is also selected with Users filter, the contributions of that user in a particular group will be searched. +*********************************************************************************************************************************** +First run the `esinitialize_map.py` script which creates all the necessary mappings then run the es_init.py script which will index all documents into elasticsearch. +Go to project shell (`python manage.py shell`) and run following commands in specified order: +``` +>>> execfile('../doc/deployer/esinitialize_map.py') +>>> execfile('../doc/deployer/es_initialize.py') +``` + +index→ analogous to database +Type → analogous to table in database +Body → analogous to a record in a table + +******Documentation for initializing the index i.e. indexing all the documents into elasticsearch****** + +MAPPINGS: +Attribute Map : Mapping from GSystemType ID to possible attribute names for that GSystemType +Author Map : Mapping from author name to PostGRESQL ID of that author +Group Map : Mapping from Group ID to Group name. +Gsystem Type Map : Mapping from GSystemType name to ID. +Relation Map : Mapping from GSystemType ID to possible relation names for that GSystemType + + + +# main(): + +* Deleting existing indexes to re-create new ones: + es.indices.exists(index_name) -> checks if the index already exists in elasticsearch, if it exists already then, es.indices.delete(index_name) will delete the index for creating a fresh index and re indexing all the documents. The delete function returns the response if the index has been successfully deleted. + +* Mapping Configs: + The json body request_body has the mapping settings and the index settings. Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. + + +SETTINGS: + * `number_of_shards`: An index can potentially store a large amount of data that can exceed the hardware limits of a single node. For example, a single index of a billion documents taking up 1TB of disk space may not fit on the disk of a single node or may be too slow to serve search requests from a single node alone. To solve this problem, Elasticsearch provides the ability to subdivide your index into multiple pieces called shards. When you create an index, you can simply define the number of shards that you want. + + * `analysis` is the part which tells about how to analyze the search query which is provided by the user. We have used a `trigram analyzer. While creating the inverted index(indexing of words inside name, content and tags field), trigram analyzer indexes the values as phrases(of size = min 1 word and max 3 words). This helps in phrase search and also phrase suggester(discussed in esearch.py documentation). Trigram analyzer uses shingles filter to do this. + + * `shingles`: it creates combinations of tokens as a single token. For example, the sentence "please divide this sentence into shingles" might be tokenized into shingles "please divide", "divide this", "this sentence", "sentence into", and "into shingles". + + * `lowercase` filter: is used to convert all the letters in the words while indexing documents also convert the search query to lowercase. This useful in the sense that if the query is “Ram” and the word “ram” is indexed in then that document will be retrieved in the search results. + + * `char_filter`: “html_strip” * this filter is used to remove the html tags if given in the search query. + + * `stopwords`: remove the stopwords(like a, an, the) from the search query + + --------------------------------------------------------------------------------------------------------------------------------------- + + * `mappings`: Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. + + ->We have defined Author type, Filehive, RelationType, Group, AttributeType, GAttribute, GRelation. + GSystem is broken down to different media types which will help in filter search(if user wants to search only for images/videos/audio, etc) - image, video, text, application, audio, NotMedia(all those Gsystem docs that have mime_type as null) + + ->All these types have mappings defined. Each mapping type contains a list of fields or properties pertinent to that type. Each field has a data type . + + ->We can specify the index_analyzer and search_analyzer in the mapping for a field itself. But here we are specifying analyzer in the properties of the field which will act as both index and search analyzer. + + ->The fields for which mappings is created are: name, altnames, content, tags, since these are the most relevant fields for search. The values of these fields are of type text and are indexed based on trigram filter. +--------------------------------------------------------------------------------------------------------------------------------------- + +es.indices.create(index_name,request_body) : is used to create a new index with the mapping and settings given by request_body + +For indexing the documents into elasticsearch all the MongoDB objects are needed. Using the node_collection.find() function all the documents in MongoDB are obtained. +*********************************************************************************************************************************** + +index_docs(all_docs) + + **This function takes a list of MongoDB documents as parameter and indexes those documents which have “name” key into elasticsearch. Some of the functions called inside this function: + ->json.dumps(node,default=json_util.default): returns JSON string representation of MongoDB object. + ->json.loads(doc): returns a python dictionary form of the JSON string + + **Since, _id, _type cannot be inserted into elasticsearch, we have changed their key names to “id” and “type” respectively. + The keys object_type, property_order, object_value are having values as string in some documents and an array of strings in other documents. Elasticsearch expects similar type of value for a single field across all documents. So the code converts all the value (be it string, array) to a string. + + **The document type is given by get_document_type(document) function. The document is passed as parameter to this function and it returns the doc_type i.e. the type in which you want the document to be indexed. + + **es.index(index=index_name, doc_type=doc_type, id=document["id"]["$oid"], body=document) + + **This function indexes the document into elasticsearch. + + **If the document has “contributors” as a key then we are indexing the document into another index (author_index) with the type as author post greSQL ID. This is necessary if the user wants to search for the contributions of a particular author in a particular group or across all groups. +*********************************************************************************************************************************** +******Documentation for esinitialize_map in views folder****** +create_map(document): This function is used to create 2 maps. One is an author_map and other is a group_map. Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. + +create_advanced_map(document) : This function is used to create the gsystem type map, attribute map, relation map. All these 3 maps are used in advanced search. + +******Documentation for esearch.py in views folder******(get_search documentation remains to be written) + +##def get_suggestion_body(query,field_value,slop_value,field_name_value) -> + + Arguments: query, field in which suggestion is to be found + “.trigram” to use trigram analyzer, slop value, field in which suggestion is to be found + Returns: the suggestion body + + This function is used to return the suggestion json body that will be passed to the suggest function of elasticsearch query DSL. + ->“Gram_size” : sets the max size of shingles in the field to be searched. + ->“Max_errors” : the maximum number of terms that are at most considered to be misspellings in order to form a correction. + ->“Prefix_length” : is set to zero since the misspelling in the word can be at the first letter too. (eg: qutub->kutub). + ->“Suggest_mode”: is set to missing because the function should return a suggestion only when the word for which we are searching a suggestion is not indexed. + ->“Collate”: collate is used to match the returned suggestions with the existing index and sets collate_match to true if the suggestion is found in the index else false. + +##get_suggestion(suggestion_body, queryInfo, doc_types, query,field) + + Arguments: suggestion_body, queryInfo is an array which has flag(to check if we got a query to search for or not), score(how close is the first suggestion to the query), doc_types(the type in which to search), query, the field in which query is to be searched. + + This function searches for suggestion and if suggestion is not found, it may mean that the query is already indexed and if query is also not indexed, then the flag remains 0. If we find a suggestion or if the query is indexed, the flag is set to 1. + +##def get_search_results(resultArray) + + Arguments: the results array which contains all the search results along with id, type, index name. We need to extract only the json source of the search results. + Returns: Array of json objects which will be passed to the html template for rendering. + + +##def resources_in_group(res,group) + Arguments: the results json body which is returned by the es.search function. The group filter(i.e. Get results from a particular group) + Returns: the search results pertaining to a group. + +##def searchTheQuery(index_name, select, group, query) + + Arguments: name of the index in which to search the query, what type of results to show(filter-images,audio,video,etc), in which groups to search, query + Returns: an array of json bodies(search results) + + This is the main function which does the search. If index_name passed to it is author_index, the function searches for the contributions of a particular author. + + “match_all” :{} when this query body is passed to the search function, it returns all the documents indexed in elasticsearch. An infinite loop is used inside loop since es.search returns only size number of documents, so we change the from parameter in the query body to get all the search results. + + + +Res = es.search returns a json body. Res[“hits”][“hits”] is an array of search results. + +******Documentation for advanced_search.html in templates/ndf folder****** + +This file is used for rendering the advanced search form. The gsystem type map, attribute map and relation map is passed by python get_advanced_form function in esearch.py. + +First the drop down list of GSystem types is rendered. When the user selects a GSystem type, the possible attributes and possible relations are shown to the user in the form of check boxes. + +Then when the user selects any attribute or relation, text boxes appear for that attribute which the user has to fill in to search for the left subject/object which belongs to the selected node type and has the attribute/relation selected and the right predicate/object as given in the text box. + +On clicking the submit button, the input is validated(checking if all text boxes are filled or not) and then data is sent using an ajax call. The data is sent to url 'advanced_search'. The data that is sent is 2 dictionaries and the node type selected. Key is the selected attribute and value is the value provided for that attribute in the text box. diff --git a/doc/schema_directory/STs_run1.csv b/doc/schema_directory/STs_run1.csv index 6b798787e4..a1a9ae6763 100755 --- a/doc/schema_directory/STs_run1.csv +++ b/doc/schema_directory/STs_run1.csv @@ -60,3 +60,4 @@ announced_unit,[],"[""factory_types""]",[],[],[] trans_node,[],"[""factory_types""]",[],[],[] base_survey,[],"[""factory_types""]",[],[],[] announced_survey,[],"[""factory_types""]",[],[],[] +interactive_page,"[""Page""]","[""factory_types""]",[],[],[] diff --git a/doc/schema_directory/STs_run2.csv b/doc/schema_directory/STs_run2.csv index 4daadf9827..6d0a5d5214 100755 --- a/doc/schema_directory/STs_run2.csv +++ b/doc/schema_directory/STs_run2.csv @@ -60,3 +60,4 @@ announced_unit,[],"[""factory_types""]","[""educationalsubject"", ""educationall trans_node,[],"[""factory_types""]","[""options""]",[],[] base_survey,[],"[""factory_types""]",[],[],[] announced_survey,[],"[""factory_types""]","[""start_time"", ""end_time"", ""start_enroll"", ""end_enroll""]",[],[] +interactive_page,"[""Page""]","[""factory_types""]",[],[],[] diff --git a/gnowsys-ndf/bower.json b/gnowsys-ndf/bower.json index 81e56fecfe..547c60dc2b 100755 --- a/gnowsys-ndf/bower.json +++ b/gnowsys-ndf/bower.json @@ -24,7 +24,7 @@ "leaflet": "#0.7.3", "Leaflet.awesome-markers": "#2.0.2", "jquery-ui": "#1.11.2", - "fullcalendar": "#2.1.1", + "fullcalendar": "#3.8.0", "jqueryui-timepicker-addon": "#1.4.5", "jqtree": "#0.21.0", "jquery-legacy": "jquery#1.10.2", @@ -35,7 +35,7 @@ "d3-cloud": "#1.0.5", "d3-tip": "#0.6.4", "side-comments": "aroc/side-comments##0.0.3", - "slick-carousel": "#1.3.7", + "slick-carousel": "^1.3.7", "onepage-scroll": "#1.3.1", "open-sans-fontface": "#1.1.0", "mousetrap": "#1.5.3", @@ -56,11 +56,15 @@ "rubik-googlefont": "#a23ec91574", "MathJax": "2.7.0", "jquery-backstretch": "^2.1.15", + "ckeditor-youtube-plugin": "#2.1.4", "datatables-rowsgroup": "#2.0.0", "datatables.net-buttons": "#1.4.2", "datatables.net-buttons-dt": "#1.4.2", "pdfmake": "#0.1.33", - "jszip": "#3.1.4" + "jszip": "#3.1.4", + "css-toggle-switch": "^4.1.0", + "infinite-scroll": "^3.0.3", + "waypoints": "^4.0.1" }, "resolutions": { "jquery": "2.2.1" diff --git a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po index 8dd780d759..cafb313063 100644 --- a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po +++ b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po @@ -1,37 +1,54 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-20 12:29+0530\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2018-04-18 15:05+0530\n" +"PO-Revision-Date: 2018-04-06 15:32+0530\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.10.0\n" +"X-Generator: Poedit 1.5.4\n" -#: gnowsys_ndf/ndf/templates/error_base.html:65 -#: gnowsys_ndf/ndf/templates/ndf/header.html:46 +#: gnowsys_ndf/ndf/gstudio_es/paginator.py:34 +msgid "That page number is not an integer" +msgstr "" + +#: gnowsys_ndf/ndf/gstudio_es/paginator.py:36 +msgid "That page number is less than 1" +msgstr "" + +#: gnowsys_ndf/ndf/gstudio_es/paginator.py:41 +msgid "That page contains no results" +msgstr "" + +#: gnowsys_ndf/ndf/templates/error_base.html:79 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:87 +#: gnowsys_ndf/ndf/templates/ndf/header.html:52 msgid "Menu" msgstr "मेन्यू" +#: gnowsys_ndf/ndf/templates/error_base.html:98 +msgid "Click here to go back" +msgstr "वापस जाने के लिए यहाँ क्लिक करें" + #: gnowsys_ndf/ndf/templates/admin/base_site.html:7 msgid "Studio" msgstr "स्टूडियो" -#: gnowsys_ndf/ndf/templates/ndf/Captcha.html:47 +#: gnowsys_ndf/ndf/templates/ndf/Captcha.html:44 msgid "invalid captcha Try Again" -msgstr "" +msgstr "अमान्य कैप्चा, दोबारा प्रयास करें " #: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:8 #: gnowsys_ndf/ndf/templates/ndf/beta.html:8 -#: gnowsys_ndf/ndf/templates/ndf/file.html:274 +#: gnowsys_ndf/ndf/templates/ndf/file.html:315 msgid "" "Files Listed below are already uploaded. Duplicate file uploads are not " "possible." -msgstr "" +msgstr "नीचे दी गई फ़ाइलें पहले ही अपलोड की जा चुकी हैं। डुप्लिकेट फ़ाइल अपलोड संभव नहीं है" #: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:18 #: gnowsys_ndf/ndf/templates/ndf/beta.html:38 @@ -40,41 +57,43 @@ msgstr "फ़ाइल नाम" #: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:19 #: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:25 +#: gnowsys_ndf/ndf/templates/ndf/card_group.html:60 #: gnowsys_ndf/ndf/templates/ndf/version_page.html:35 msgid "View" msgstr "देखें" -#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:29 +#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:524 +#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:131 +#, fuzzy +msgid "Only image files can be uploaded!" +msgstr "केवल इमेज फ़ाइलों को अपलोड किया जा सकता है" + +#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:204 #: gnowsys_ndf/ndf/templates/ndf/beta.html:21 #: gnowsys_ndf/ndf/templates/ndf/file_search.html:16 -#: gnowsys_ndf/ndf/templates/ndf/header.html:378 -#: gnowsys_ndf/ndf/templates/ndf/header.html:392 +#: gnowsys_ndf/ndf/templates/ndf/header.html:141 +#: gnowsys_ndf/ndf/templates/ndf/header.html:758 #: gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 -#: gnowsys_ndf/ndf/templates/ndf/search_page.html:3 -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:29 +#: gnowsys_ndf/ndf/templates/ndf/search_page.html:4 msgid "Search" msgstr "खोजें" -#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:34 -#: gnowsys_ndf/ndf/templates/ndf/beta.html:25 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:221 -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:34 -msgid "Upload" -msgstr "अपलोड" - #: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:90 #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:65 msgid "Editing Event:" -msgstr "संपादन इवेंट" +msgstr "इवेंट संपादन" #: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:67 msgid "Create a New" -msgstr "नया बनायें" +msgstr "नया बनाएँ" #: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 #: gnowsys_ndf/ndf/templates/ndf/mis_report.html:56 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:352 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 msgid "Event" msgstr "इवेंट" @@ -97,110 +116,162 @@ msgstr "सुनिश्चित अवधि (मिनट में)" #: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:263 #: gnowsys_ndf/ndf/templates/ndf/mis_report.html:57 msgid "Voluntary Teacher" -msgstr "स्वयंसेवी शिक्षक" +msgstr "ऐच्छिक शिक्षक" #: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:41 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:41 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:41 msgid "Uploading" msgstr "अपलोड हो रहा है" #: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:42 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:42 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:42 msgid "You can upload files of any format to your group library." msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:57 msgid "New File" msgstr "नई फ़ाइल" #: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:84 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:39 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:85 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:171 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:417 -#: gnowsys_ndf/ndf/templates/ndf/file.html:218 +#: gnowsys_ndf/ndf/templates/ndf/file.html:248 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:53 #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:285 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:84 msgid "Upload File" msgstr "फ़ाइल अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:86 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:42 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:87 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:88 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:55 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:87 msgid "Choose File" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:88 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:47 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:89 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:94 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:89 msgid "Title of File" msgstr "फ़ाइल शीर्षक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:93 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:94 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:192 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:80 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:62 msgid "Select Language" msgstr "भाषा चुनें" #: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:108 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:77 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:108 msgid "Add Description" msgstr "विवरण जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:113 -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:125 -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:136 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:65 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:294 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:306 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:112 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:135 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:112 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:33 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:100 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:112 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:135 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:45 msgid "Add Tag" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:125 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:69 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:294 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:116 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#, fuzzy msgid "" "Tags help identify similiar work easily. Just add tag text and click Add Tag " "button" msgstr "" -"एक जैसें कार्यों को पहचानने में टैग सहायक है, टैग टेक्स्ट जोड़ें एवं टैग जोड़ें बटन पर क्ल्कि करें" +"टैग एक जैसे काम को आसानी से पहचानने में सहायता करता है। टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन " +"पर क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:132 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:302 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:29 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:96 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:131 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:41 msgid "Add tag text and click on [Add Tag] button" -msgstr "टैग टेक्स्ट जोड़ें एवं टैग जोड़ें बटन पर क्ल्कि करें" +msgstr "टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन पर क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:145 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:85 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:315 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:144 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:142 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:109 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:144 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:94 msgid "" "Non empty tags can have only alphanumeric characters, dash(-) and spaces." -msgstr "टैग्स में केवल डेस, स्पेस, अक्षर एवं अंक का प्रयोग करें" - -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:170 -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:183 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:125 +msgstr "टैग में केवल अल्फ़ान्यूमेरिक वर्ण, डैश (-) और रिक्त स्थान का प्रयोग किया जा सकता है " + +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:169 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:182 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:182 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:89 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:215 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:134 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:147 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:89 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:96 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:222 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:100 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:107 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:169 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:182 msgid "Public" msgstr "सार्वजनिक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:173 -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:187 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:127 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:172 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:186 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:184 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:218 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:137 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:151 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:92 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:99 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:225 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:103 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:110 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:172 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:186 msgid "Private" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:200 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:264 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:199 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:321 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:164 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:199 msgid "" "Depending on the size of file/s and your Internet speed, upload process may " "take time. Please do not close this window." msgstr "" -"फाईल आकार और इंटरनेट की गति के अनुरूप अपलोड प्रक्रिया में कुछ समय लग सकता है। कृपया पृष्ठ " -"बंद न करें" +"फ़ाइलों के आकार और आपकी इंटरनेट की गति के आधार पर, अपलोड प्रक्रिया को समय लग सकता है। " +"कृपया इस विंडो को बंद न करें।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:202 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:265 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:201 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:322 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:166 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:201 msgid "" "Please upload videos in webm format. If you upload videos of other formats, " "it will take longer to publish them." @@ -208,65 +279,75 @@ msgstr "" "कृपया वीडियो वेबएम प्रारूप में अपलोड करें। यदि आप किसी अन्य प्रारूप में वीडियो अपलोड करते " "हैं तो उनके प्रकाशन में अधिक समय लग सकता है।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:206 -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:281 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:205 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:340 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:170 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:205 msgid "You are not an authorised user. Please login to upload files." msgstr "आप अधिकृत उपयोगकर्ता नहीं हैं। कृपया फाईल अपलोड करने से पहले लॉगिन करें।" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:56 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:103 #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:68 #: gnowsys_ndf/ndf/templates/ndf/visualize.html:168 msgid "Details" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:72 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:119 msgid "Add one tag at a time" -msgstr "" +msgstr "एक समय में एक टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:77 -#: gnowsys_ndf/ndf/templates/ndf/event.html:56 -#: gnowsys_ndf/ndf/templates/ndf/event.html:62 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:126 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:76 +#: gnowsys_ndf/ndf/templates/ndf/event.html:58 +#: gnowsys_ndf/ndf/templates/ndf/event.html:64 #: gnowsys_ndf/ndf/templates/ndf/mis_base.html:63 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:65 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:67 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:343 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:362 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:37 #: gnowsys_ndf/ndf/templates/ndf/shelf.html:14 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 msgid "Add" msgstr "जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:118 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:175 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:125 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:241 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:386 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:391 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:137 #: gnowsys_ndf/ndf/templates/ndf/location_widget.html:4 #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:310 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:254 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:279 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:125 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:248 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:133 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:197 msgid "Add Location" -msgstr "स्थान जोड़ें" +msgstr "लोकेशन जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:204 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:261 msgid "ctrl + click to select multiple values" -msgstr "" +msgstr "एकाधिक मूल्यों का चयन करने के लिए ctrl + क्लिक करें" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:9 msgid "Contribute File" -msgstr "योगदान करें" +msgstr "फाइल का योगदान करें" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:12 msgid "You can contribute only Open Educational Resources" -msgstr "मुक्त शैक्षिक संसाधन प्रदान करने वाला" +msgstr "आप केवल मुक्त शैक्षिक संसाधनों का योगदान कर सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:13 msgid "Resources copyrighted by others must be cited including OER" -msgstr "" +msgstr "ओईआर सहित अन्य लोगों द्वारा कॉपीराइट संसाधन उद्धृत किए जाने चाहिए" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:16 msgid "What constitutes OER" -msgstr "" +msgstr "ओईआर क्या है " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:20 +#, fuzzy msgid "You can upload files of any format" msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" @@ -277,10 +358,14 @@ msgid "" "as they credit you and license their new creations under the identical " "terms) unless you chose a different licence" msgstr "" +"CC BY-SA लाइसेंस के तहत सभी फाइलें अपलोड की जा रही हैं। यह लाइसेंस दूसरों को रीमिक्स, " +"ट्विक करने और व्यावसायिक कार्यों के लिए भी अपने काम का निर्माण करने की अनुमति देता है, " +"जब तक कि आप एक अलग लाइसेंस नहीं चुनते हैं, तब तक इसका प्रयोग करके नया काम तैयार कर सकते " +"हैं। " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 msgid "Please visit" -msgstr "कृपया सेट करें" +msgstr "कृपया अवश्य पधारें " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 @@ -289,9 +374,10 @@ msgstr "और" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 msgid "to learn more about licenses" -msgstr "" +msgstr "लाइसेंस के बारे में अधिक जानकारी के लिए" #: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:9 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:126 msgid "Activities" msgstr "क्रियाकलाप" @@ -300,302 +386,687 @@ msgstr "क्रियाकलाप" msgid "No Recent Activities" msgstr "हाल ही में कोई क्रियाकलाप नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:128 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:130 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:82 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:383 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:30 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:12 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:59 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:149 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:208 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:287 +msgid "Yes" +msgstr "हाँ" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:85 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:384 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:13 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:60 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:290 +msgid "No" +msgstr "नहीं" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:110 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:112 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:118 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:122 +msgid " Edit" +msgstr "संपादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:124 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:129 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +msgid "You are not authorized for this action" +msgstr "आप इस एक्शन के लिए अधिकृत नहीं हैं" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:139 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:141 #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:420 #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:425 msgid "Publish" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:134 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:145 msgid "Moderation" -msgstr "स्थान" +msgstr "नियंत्रण" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:136 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:147 msgid "Published" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:157 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:170 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:158 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:39 +msgid "History" +msgstr "इतिहास" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:162 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:164 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:86 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:77 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:113 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:47 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:17 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:88 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:270 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:123 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:70 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:109 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:126 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:117 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:201 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:79 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 +#: gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 +#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:102 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:526 +msgid "Delete" +msgstr "डिलीट" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 +msgid "Publish this resource in other group/s" +msgstr "इस संसाधन को अन्य समूह में प्रकाशित करें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:64 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:4 msgid "Cross Publish" -msgstr "प्रकाशित" +msgstr "क्रॉस प्रकाशित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:161 -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:64 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:182 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:59 #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:455 msgid "Select Groups" msgstr "समूह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:165 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:186 msgid "Save selected group" -msgstr "समूह चुनें" - -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:176 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:178 -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:149 -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:87 -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:269 -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:122 -#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:240 -#: gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 -#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:101 -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:526 -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:51 -msgid "Delete" -msgstr "मिटाएं" +msgstr "चयनित समूह सेव करें " -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:181 -#: gnowsys_ndf/ndf/templates/ndf/beta.html:53 -msgid "Delete " -msgstr "मिटाएं" +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 +msgid "keyword or label to categorize" +msgstr "वर्गीकृत करने के लिए कीवर्ड या लेबल" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:224 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 +#: gnowsys_ndf/ndf/templates/ndf/card.html:51 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:407 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:153 #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:295 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:98 msgid "Tags" msgstr "टैग्स" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:238 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 +#: gnowsys_ndf/ndf/templates/ndf/course_about.html:124 +#: gnowsys_ndf/ndf/templates/ndf/ggallerymodal.html:114 msgid "No tags defined yet!" -msgstr "कोई टैग जोड़ा नहीं गया है" +msgstr "कोई टैग अभी तक परिभाषित नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:255 +msgid "Click to see no. of view " +msgstr "देखी गई संख्या जानने के लिए क्लिक करें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:255 +msgid "Views" +msgstr "देखा गया" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:265 +msgid "Rating defines popularity" +msgstr "रेटिंग लोकप्रियता को परिभाषित करता है" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:266 msgid "Rating" msgstr "रेटिंग" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:260 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 +msgid "Click to view the location" +msgstr "लोकेशन देखने के लिए क्ल्कि करें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:214 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:218 #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:133 #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:107 msgid "Location" -msgstr "स्थान" +msgstr "लोकेशन " + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:290 +msgid "Graphs" +msgstr "ग्राफ" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:300 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:222 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 +msgid "Collection Graph" +msgstr "संग्रह ग्राफ" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:304 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:225 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 +msgid "Dependency Graph" +msgstr "निर्भरता ग्राफ" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 +#: gnowsys_ndf/ndf/templates/ndf/header.html:505 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 +msgid "Help" +msgstr "सहायता" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:314 +msgid "Click to view help page" +msgstr "सहायता पेज देखने के लिए क्ल्कि करें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:340 +msgid "Create New" +msgstr "नया बनायें" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:342 +msgid "New Partner" +msgstr "नए पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:310 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:344 #: gnowsys_ndf/ndf/templates/ndf/group.html:51 msgid "New Group" msgstr "नया समूह" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:317 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:321 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:325 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:328 -#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:18 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:30 -#: gnowsys_ndf/ndf/templates/ndf/task.html:29 -#: gnowsys_ndf/ndf/templates/ndf/task.html:62 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:350 +msgid "Delete Partner" +msgstr "डिलीट पाटनर्स" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:352 +msgid "Delete Group" +msgstr "डिलीट समूह " + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:362 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:366 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:373 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:254 +#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:37 +#: gnowsys_ndf/ndf/templates/ndf/task.html:64 #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:187 msgid "New" msgstr "नया" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:393 msgid "New Sub Partner" -msgstr "पार्टर्नस" +msgstr "नया सब-पार्टनर" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:350 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:395 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:36 msgid "New SubGroup" msgstr "नया उप-समूह" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:352 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:397 msgid "New Program" msgstr "नया कार्य" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 -#: gnowsys_ndf/ndf/templates/ndf/groupdashboard.html:178 -msgid "List Members" -msgstr "सदस्यों की सूची" +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:423 +msgid "Programs" +msgstr "कार्यक्रम" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:378 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:429 msgid "Unsubscribe" -msgstr "विवरण दें" +msgstr "सदस्यता रद्द" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:390 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:403 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:440 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 msgid "Join" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:392 -#: gnowsys_ndf/ndf/templates/ndf/task.html:66 -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:191 -msgid "Closed" -msgstr "" +msgstr "शामिल हों" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:400 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 msgid "Joined" -msgstr "" +msgstr "शामिल हो गए" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:420 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 +msgid "You are already a member of this group" +msgstr "आप पहले से ही इस समूह का सदस्य हैं" + +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:474 #: gnowsys_ndf/ndf/templates/ndf/under_moderation.html:23 msgid "Moderate Resources" -msgstr "संसाधन" +msgstr "नियंत्रित संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:426 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:480 #: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:18 msgid "Moderation Status" -msgstr "सृजित तिथि" +msgstr "मॉडरेशन स्टेटस " + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:82 +msgid "Write Note" +msgstr "नोट लिखें " + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:84 +#, fuzzy +msgid "Write Blog" +msgstr "नोट लिखें " + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:93 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:177 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:249 +msgid "Previous Lesson" +msgstr "पिछला पाठ" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:96 +#, fuzzy +msgid "Previous Section" +msgstr "पिछला पाठ" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:104 +msgid "PREV" +msgstr "पिछला" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:85 -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:88 -#, fuzzy, python-format -msgid " %(content)s " -msgstr "विषय-वस्तुः" +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:109 +msgid "OF" +msgstr "का" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:113 +msgid "NEXT" +msgstr "अगला " + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:122 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:186 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:258 +msgid "Next Lesson" +msgstr "अगला पाठ" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:126 +#, fuzzy +msgid "Next Section" +msgstr "अनुभाग सहेजें" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:180 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:252 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:37 +msgid "Previous Activity" +msgstr "पिछला क्रियाकलाप" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:183 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:255 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:85 +msgid "Next Activity" +msgstr "अगला क्रियाकलाप" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:192 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:264 +msgid "Write a new Note" +msgstr "एक नया नोट लिखें" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:316 +msgid "Student Help" +msgstr "छात्रा सहायता" + +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:319 +msgid "Teacher's Help" +msgstr "शिक्षक सहायता" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:47 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:38 +#: gnowsys_ndf/ndf/templates/ndf/file.html:240 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 +msgid "Actions" +msgstr "एक्शन" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:52 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:111 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:70 +#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:50 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:144 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:42 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:381 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:48 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:18 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html:20 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:116 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:44 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:130 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:34 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:161 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:121 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:263 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:33 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:78 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:84 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:58 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:385 +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:19 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:43 +msgid "Edit" +msgstr "संपादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:58 +#, fuzzy +msgid " Add Metadata" +msgstr "मेटाडाटा जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:60 +#, fuzzy +msgid " View Metadata" +msgstr "मेटाडाटा देखें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:69 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:73 +msgid "Delete Asset" +msgstr "एसेट डिलीट करें " + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:71 +#, fuzzy +msgid "Delete Folder" +msgstr "फोल्डर डिलीट करें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:82 +#, fuzzy +msgid "Add File" +msgstr "फाइल जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:83 +#, fuzzy +msgid "Add page" +msgstr "पृष्ठ जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:109 +#, fuzzy +msgid "Add a new" +msgstr "नया पृष्ठ जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:114 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 +#, fuzzy +msgid "Resource" +msgstr "संसाधन" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:116 +#, fuzzy +msgid "Folder" +msgstr "फोल्डर" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:118 +#, fuzzy +msgid "Asset" +msgstr "एसेट" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:122 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:236 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:341 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:271 +#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:322 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:282 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:295 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:21 +msgid "Save" +msgstr "सेव करें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:130 +#, fuzzy +msgid "Resource Name" +msgstr "संसाधन का नाम" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:133 +#, fuzzy +msgid "Folder Name" +msgstr "फोल्डर का नाम" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:136 +msgid "Asset Name:" +msgstr "एसेट का नाम" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:138 +#, fuzzy +msgid "Display Name:" +msgstr "प्रदर्शित नाम" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:154 +#, fuzzy +msgid "Resource Description" +msgstr "संसाधन का विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:157 +#, fuzzy +msgid "Folder Description" +msgstr "फोल्डर का विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:160 +#, fuzzy +msgid "Asset description" +msgstr "एसेट का विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:213 +#, fuzzy +msgid "Add tags:" +msgstr "टैग जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:222 +#, fuzzy +msgid "Mark as Resource" +msgstr "नियंत्रित संसाधन" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:249 +#, fuzzy +msgid "Enter File Name" +msgstr "फ़ाइल का नाम डालें" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:256 +#, fuzzy +msgid "Enter File Description" +msgstr "फ़ाइल का विवरण डालें " + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:259 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:117 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:144 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:168 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:25 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:121 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:226 +msgid "Upload" +msgstr "अपलोड" + +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:279 +#: gnowsys_ndf/ndf/templates/ndf/file.html:281 +#, fuzzy +msgid "Delete Files" +msgstr "डिलीट फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 msgid "Add Internal Image" -msgstr "" +msgstr "आंतरिक इमेज जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:259 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 #: gnowsys_ndf/ndf/templates/ndf/image_detail.html:4 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:369 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:349 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:247 msgid "Image" -msgstr "चित्र" +msgstr "इमेज" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:259 -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:325 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:300 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:275 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/card.html:43 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:385 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:301 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:289 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:76 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:111 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:175 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:197 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:41 msgid "Description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:260 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:263 msgid "Some description" -msgstr "विवरण" +msgstr "कुछ विवरण" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 msgid "Width" -msgstr "" +msgstr "चौड़ाई" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:174 -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:265 msgid "Enter width in pixel eg.600" -msgstr "" +msgstr "चौड़ाई पिक्सेल में दर्ज करें जैसे 600" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:241 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:244 msgid "citation has been inserted" -msgstr "" +msgstr "उद्धरण सम्मिलित किया गया है" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:247 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:250 msgid "Add Internal/External Images" -msgstr "" +msgstr "आंतरिक / बाहरी इमेज जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:249 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:252 msgid "External" -msgstr "" +msgstr "बाहरी" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:250 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:253 msgid "Internal" -msgstr "इंटरैक्टिवस" +msgstr "आंतरिक" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:257 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:260 msgid "Add External Image" -msgstr "" +msgstr "बाहरी इमेज जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:264 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:267 msgid "Enter Image path" -msgstr "" +msgstr "इमेज पथ दर्ज करें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:264 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:267 msgid "eg" -msgstr "" +msgstr "जैसे" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:76 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:71 msgid "Select Collections" msgstr "संग्रह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:128 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:123 msgid "Group(s)" msgstr "समूह" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:125 msgid "Type(s)" msgstr "प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:131 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:126 msgid "Author" -msgstr "लेखक" +msgstr "निर्माता" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:132 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:127 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:379 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:120 #: gnowsys_ndf/ndf/templates/ndf/list_themes.html:32 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:357 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:383 msgid "Creation date" -msgstr "सृजित तिथि" +msgstr "निर्माण तिथि" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:134 -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:82 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:129 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:94 #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:207 msgid "Member of" msgstr "सदस्य" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:135 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:120 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:110 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:59 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:57 msgid "Collection" msgstr "संग्रह" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:136 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:131 msgid "AttributeType_set" msgstr "ऐट्रीब्यूट टाइप सेट" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:137 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:132 msgid "RelationType_set" msgstr "रिलेशन टाइप सेट" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:195 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:404 #: gnowsys_ndf/ndf/templates/ndf/list_themes.html:57 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:382 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:85 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:408 msgid "Translate" msgstr "अनुवाद करें" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:47 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:215 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 +msgid "Graph" +msgstr "ग्राफ" + +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:219 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 +msgid "Concept Graph" +msgstr "संकल्पना ग्राफ" + +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:56 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:329 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:331 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:365 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:367 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:58 #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:176 #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:178 msgid "Unknown" msgstr "अज्ञात" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:48 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 -#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 -msgid "Yes" -msgstr "हाँ" - -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:49 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 -#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:135 -msgid "No" -msgstr "नहीं" - -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:66 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:74 msgid "PUBLISHED" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:67 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:75 msgid "DRAFT" msgstr "प्रारूप" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:59 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:68 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:76 msgid "HIDDEN" msgstr "छिपा हुआ" @@ -606,13 +1077,13 @@ msgstr "अंडरलाईन मोडरेशन ग्रुप" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:7 #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:60 msgid "Course Announcement " -msgstr "पाठयक्रम घोषणा" +msgstr "कोर्स की घोषणा" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:58 #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:69 #, python-format msgid " Editing %(title_var)s: %(node_name)s " -msgstr "" +msgstr "संपादन %(title_var)s:%(node_name)s" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:68 #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:75 @@ -628,17 +1099,17 @@ msgstr "भरें" #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:81 #, python-format msgid " %(tab_name)s " -msgstr "" +msgstr "टैब _ नाम:%(tab_name)s" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:92 #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:101 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:188 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:213 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:247 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:258 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:271 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:284 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:293 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:192 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:217 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:251 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:262 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:275 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:288 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:297 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:47 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:59 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:71 @@ -672,7 +1143,7 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:427 #, python-format msgid " %(label_val)s " -msgstr "" +msgstr "%(label_val)s" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:113 msgid "Announced for" @@ -680,11 +1151,13 @@ msgstr "के लिए घोषणा" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:135 msgid "Course Period" -msgstr "पाठ्यक्रम कालांश" +msgstr "कोर्स कालांश" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:140 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:279 #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:143 #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:182 +#, fuzzy msgid "From" msgstr "से" @@ -700,23 +1173,31 @@ msgstr "संस्था में घोषणा" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:166 msgid "Select University" -msgstr "संस्था चुनें" +msgstr "विश्वविद्यालय चुनें" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:176 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:482 msgid "- - - Select University - - -" -msgstr "संस्था चुनें" +msgstr "विश्वविद्यालय चुनें" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:182 msgid "Please select University" -msgstr "कृपया संस्था चुनें" +msgstr "कृपया विश्वविद्यालय चुनें" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:717 -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:190 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:217 #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:175 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:392 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:409 #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:612 #: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:275 +#: gnowsys_ndf/ndf/templates/ndf/pagination.html:242 +#: gnowsys_ndf/ndf/templates/ndf/pagination.html:246 +#: gnowsys_ndf/ndf/templates/ndf/pagination.html:250 +#: gnowsys_ndf/ndf/templates/ndf/pagination.html:254 #: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:297 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:207 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:224 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:680 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1270 msgid "Next" @@ -724,6 +1205,9 @@ msgstr "आगे" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:723 #: gnowsys_ndf/ndf/templates/ndf/course_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:56 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:188 msgid "Announce" msgstr "घोषणा करें" @@ -735,16 +1219,18 @@ msgstr "घोषणा करें" #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:689 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1279 msgid "Update" -msgstr "अद्यतन" +msgstr "अपडेट" #: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:735 -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:133 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:160 #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:193 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:445 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:459 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:388 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:402 #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:630 #: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:293 #: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:315 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:203 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:217 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:698 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1288 msgid "Previous" @@ -752,7 +1238,7 @@ msgstr "पिछला" #: gnowsys_ndf/ndf/templates/ndf/approval_data_review.html:29 msgid "Course Code: " -msgstr "पाठ्यक्रम कोड" +msgstr "कोर्स कोड" #: gnowsys_ndf/ndf/templates/ndf/approval_data_review.html:30 msgid "Enrollment Completed On: " @@ -760,14 +1246,94 @@ msgstr "नामांकन पूर्ण तिथि:" #: gnowsys_ndf/ndf/templates/ndf/approval_data_review.html:37 msgid "Sr. #" -msgstr "Sr. #" +msgstr "क्रम.#" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:9 +#, fuzzy +msgid "File name:" +msgstr "फ़ाइल नाम" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:10 +#, fuzzy +msgid "Created By:" +msgstr "निर्माता" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:18 +#, fuzzy +msgid "Alternate File:" +msgstr "वैकल्पिक फाइल " + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:29 +msgid "Subtitle:" +msgstr "उपशीर्षक" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:33 +#, fuzzy +msgid "Delete subtitle" +msgstr "डिलीट उपशीर्षक" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:44 +msgid "Transcript:" +msgstr "लिपियान्तर" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:47 +msgid "Delete transcript" +msgstr "डिलीट लिप्यन्तर" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:57 +msgid "Link/Add Related File" +msgstr "लिंक /संबंधित फाइल जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:60 +#, fuzzy +msgid "Add Alternate File" +msgstr "वैकल्पिक फाइल जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:62 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:339 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:358 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:33 +#, fuzzy +msgid "Add Transcript" +msgstr "लिप्यन्तर जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:65 +#, fuzzy +msgid "Add Subtitle" +msgstr "उपशीर्षक जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:112 +msgid "Upload Transcript" +msgstr "उपशीर्षक अपलोड करें " + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:127 +#, fuzzy +msgid "Upload Subtitle" +msgstr "उपशीर्षक अपलोड करें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:135 +#, fuzzy +msgid "--- Select Language ---" +msgstr "भाषा चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:152 +#, fuzzy +msgid "--- Select Alternate Type ---" +msgstr "वैकल्पिक प्रकार का चयन करें" + +#: gnowsys_ndf/ndf/templates/ndf/assets.html:41 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:46 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:51 +#, fuzzy +msgid "Add Folder" +msgstr "फोल्डर जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:24 msgid "Add Attendance" msgstr "उपस्थिति जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:30 -#: gnowsys_ndf/ndf/templates/ndf/event_details.html:73 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:75 msgid "Attendance" msgstr "उपस्थिति" @@ -796,16 +1362,16 @@ msgstr "अनुपस्थित" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:79 msgid "All Students - Mark the attendance" -msgstr "सभी छात्र उपस्थिति अंकित करें" +msgstr "सभी छात्र -उपस्थिति अंकित करें" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:85 msgid "Students Name" -msgstr "छात्र का नाम" +msgstr "छात्र/छात्रा का नाम" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:109 #: gnowsys_ndf/ndf/templates/ndf/mis_report.html:55 msgid "Student" -msgstr "छात्र" +msgstr "छात्र/छात्रा " #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:111 msgid "Done" @@ -813,63 +1379,135 @@ msgstr "पूर्ण हुआ" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:120 msgid "Present Students" -msgstr "उपस्थित छात्र" +msgstr "उपस्थित छात्र/छात्रा" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:121 #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:129 msgid "Student " -msgstr "छात्र" +msgstr "छात्र/छात्रा" #: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:128 msgid "Absent Students" -msgstr "अनुपस्थित छात्र" +msgstr "अनुपस्थित छात्र/छात्रा" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/event.html:4 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:5 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/gevent.html:4 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 +msgid "Events" +msgstr "इवेंटस" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:125 +#, fuzzy +msgid "Edit Course" +msgstr "कोर्स संपादन" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 +#, fuzzy +msgid "Edit Course Structure" +msgstr "कोर्स संरचना संपादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 +msgid "Add Course Structure" +msgstr "कोर्स संरचना जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#, fuzzy +msgid " Add Students" +msgstr "छात्र/छात्रा शामिल करें " + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#, fuzzy +msgid " Add Members" +msgstr "सदस्य शामिल करें " + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:148 +msgid " Add Admins" +msgstr "एडमिन जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:220 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:91 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:82 +msgid "Overview" +msgstr "अवलोकन" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:196 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:226 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:301 +#, fuzzy +msgid "Course Content" +msgstr "कोर्स विषयवस्तु" + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:174 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:197 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:232 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:302 +msgid "Raw Material" +msgstr "रॉ मेटेरियल " + +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:195 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:300 +#, fuzzy +msgid "About the course" +msgstr "कोर्स के बारे में :" + +#: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:37 +#, fuzzy +msgid "AttributeType " +msgstr "ऐट्रीब्यूट टाइप " + +#: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:51 +#, fuzzy +msgid "PossibleAttributeType " +msgstr "संभावित ऐट्रीब्यूट टाइप " + +#: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:61 +#, fuzzy +msgid "RelationType " +msgstr "रिलेशन टाइप " + +#: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:76 +#, fuzzy +msgid "PossibleRelationType " +msgstr "संभावित रिलेशन टाइप" #: gnowsys_ndf/ndf/templates/ndf/batch.html:5 -#, python-format +#, fuzzy, python-format msgid " %(title)s " -msgstr "" +msgstr "विकल्प" #: gnowsys_ndf/ndf/templates/ndf/batch.html:81 #: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:114 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:523 msgid "Course Type" -msgstr "पाठ्यक्रम के प्रकार" +msgstr "कोर्स के प्रकार" #: gnowsys_ndf/ndf/templates/ndf/batch.html:87 #: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:123 msgid "Name of Course" -msgstr "पाठ्यक्रम का नाम" +msgstr "कोर्स का नाम" #: gnowsys_ndf/ndf/templates/ndf/batch.html:172 #: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:229 msgid " - - - Select course - - - " -msgstr "पाठ्यक्रम चुनें" - -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:104 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:106 -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:111 -#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:149 -#: gnowsys_ndf/ndf/templates/ndf/course_details.html:50 -#: gnowsys_ndf/ndf/templates/ndf/course_details.html:144 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:115 -#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 -#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:256 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:53 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:176 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:359 -msgid "Edit" -msgstr "संपादित करें" +msgstr "कोर्स चुनें" #: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:27 -#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:60 msgid "ago edited by " -msgstr "द्वारा संपादित पूर्व" +msgstr "के द्वारा पूर्व संपादित " #: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:27 msgid "User" @@ -889,45 +1527,81 @@ msgstr "फाइल प्रकार" #: gnowsys_ndf/ndf/templates/ndf/beta.html:47 msgid "Posted by " -msgstr "प्रेषक" +msgstr "द्वारा प्रकाशित" #: gnowsys_ndf/ndf/templates/ndf/beta.html:50 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:543 msgid "Download " msgstr "डाउनलोड" +#: gnowsys_ndf/ndf/templates/ndf/beta.html:53 +msgid "Delete " +msgstr "डिलीट" + #: gnowsys_ndf/ndf/templates/ndf/beta.html:87 msgid "Nothing found!" msgstr "कुछ भी नहीं मिला" -#: gnowsys_ndf/ndf/templates/ndf/course.html:30 -msgid " New Course" -msgstr "पाठ्यक्रम का नाम" - -#: gnowsys_ndf/ndf/templates/ndf/course.html:34 -msgid " New Event" -msgstr "इवेंट" - -#: gnowsys_ndf/ndf/templates/ndf/course.html:47 -msgid "All eCourses" -msgstr "सभी पाठ्यक्रम" +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:40 +#, fuzzy +msgid "Add a buddy" +msgstr "दोस्त जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course.html:47 -#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:11 -msgid "All Events" -msgstr "इवेंटस जोड़ें" +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:41 +msgid "" +"Multiple users can be logged into the platform. Just specify your color and " +"animal and click add to join the session." +msgstr "" +"एकाधिक उपयोगकर्ता प्लेटफॉर्म पर लॉगइन कर सकते हैं। बस अपने रंग और जानवर का चुनाव करें और " +"सत्र में शामिल होने के लिए क्लिक करें" + +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:52 +#, fuzzy +msgid "Step 1" +msgstr "पहला चरण:" + +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:53 +#, fuzzy +msgid "Select your color" +msgstr "अपना रंग चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:61 +#, fuzzy +msgid "Step 2" +msgstr "दूसरा चरण:" + +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:62 +msgid "Select your animal/flower/fruit" +msgstr "अपने जानवर/ फूल/ फल का चयन करें" + +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:75 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:85 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:98 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:407 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:330 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:29 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:148 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:207 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:344 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:363 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:38 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:23 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:79 +msgid "Cancel" +msgstr "रद्द करें" -#: gnowsys_ndf/ndf/templates/ndf/course.html:49 -msgid "My eCourses" -msgstr "मेरे पाठ्यक्रम" +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:83 +msgid "Are you sure you want to delete the buddy?" +msgstr "क्या आप निश्चित ही दोस्त को डिलीट करना चाहते हैं" -#: gnowsys_ndf/ndf/templates/ndf/course.html:49 -msgid "My Events" -msgstr "इवेंटस" +#: gnowsys_ndf/ndf/templates/ndf/card.html:61 +msgid "more..." +msgstr "अधिक" -#: gnowsys_ndf/ndf/templates/ndf/course.html:52 -msgid "Courses" -msgstr "पाठ्यक्रम" +#: gnowsys_ndf/ndf/templates/ndf/compose_mail.html:83 +msgid "You are not an authorised user. Please Log in" +msgstr "आप अधिकृत उपयोगकर्ता नहीं हैं। कृपया लॉगिन करें।" #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:13 msgid "" @@ -940,74 +1614,175 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:22 msgid "Upload thumbnail : " -msgstr "फ़ाइल अपलोड करें" +msgstr "कोर्सेस अपलोड करें" #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:31 -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:303 -#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:138 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:364 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:137 msgid "View existing thumbnail " -msgstr "" +msgstr "मौजूदा थंबनेल देखें" + +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:119 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:164 +msgid "Remove this tag" +msgstr "इस टैग को हटाएँ " #: gnowsys_ndf/ndf/templates/ndf/course_detail.html:66 #: gnowsys_ndf/ndf/templates/ndf/course_details.html:65 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:66 msgid "View history" msgstr "इतिहास देखें" #: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 #: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 #: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 msgid "Edit Course Structure" -msgstr "पाठ्यक्रम संरचना संपादित करें" - -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 -#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 -msgid "Add Course Structure" -msgstr "पाठ्यक्रम संरचना जोड़ें" +msgstr "कोर्स संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:146 -msgid "You have not added any content to this course yet" -msgstr "आपने अभी तक पाठ्यक्रम में विषय-वस्तु नहीं जोड़ी है" +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:144 +#, fuzzy +msgid "* Note: You have not added any resources to this course yet" +msgstr "नोट: आपने अभी तक इस कोर्स में कोई संसाधन नहीं जोड़ा है" #: gnowsys_ndf/ndf/templates/ndf/course_details.html:76 #: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:113 msgid "Course Details" -msgstr "पाठ्यक्रम विवरण" +msgstr "कोर्स विवरण" #: gnowsys_ndf/ndf/templates/ndf/course_details.html:80 msgid "Course Registration Details " -msgstr "पाठ्यक्रम पंजीकरण विवरण" +msgstr "कोर्स रजिस्ट्रेशन विवरण" #: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:40 msgid "Release Date" -msgstr "कृपया सेट करें" - -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 -msgid "Only image files can be uploaded!" -msgstr "" +msgstr "रिलीज़ की तारीख" #: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:160 -msgid "Please wait your file is uploading.." -msgstr "कृपया प्रतीक्षा करें, प्रोफ़ाइल तस्वीर अपलोड हो रही है" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:537 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 +msgid "Please wait while file is Uploading..." +msgstr "कृपया प्रतीक्षा करें फाईल अपलोड हो रही है" #: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:167 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:544 #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:440 #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:480 -#: gnowsys_ndf/ndf/templates/ndf/upload_pic_widget.html:217 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:268 msgid "Please select an image to set it as a profile picture !" -msgstr "प्रोफ़ाइल तस्वीर सेट करने के लिए चित्र फाइल का ही चयन करें" +msgstr "कृपया एक प्रोफ़ाइल पिक्चर के रूप में सेट करने के लिए तस्वीर का चयन करें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:9 +msgid "Unique Name: " +msgstr "अद्वितीय नाम" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:12 +#, fuzzy +msgid "Please enter Unique Name" +msgstr "कृपया नाम भरें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:18 +#, fuzzy +msgid "Display Name: " +msgstr "प्रदर्शित होने वाला नाम" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:21 +#, fuzzy +msgid "Please enter Display Name" +msgstr "कृपया प्रदर्शित होने वाला नाम दर्ज करें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:30 +#, fuzzy +msgid "Select Lanaguage: " +msgstr "भाषा चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:51 +#, fuzzy +msgid "Choose template" +msgstr "टेम्पलेट चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:55 +#, fuzzy +msgid "Select Template (Optional): " +msgstr "टेम्पलेट चुनें (वैकल्पिक)" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:71 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:199 +#, fuzzy +msgid "Edit Metadata" +msgstr "मेटाडाटा सम्पादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:90 +#, fuzzy +msgid "Add Tags:" +msgstr "टैग जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:43 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:57 +#, fuzzy +msgid " Edit Content" +msgstr "विषय-वस्तु सम्पादित करें " + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:44 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:125 +msgid "Interaction Settings" +msgstr "इंटरैक्शन सेटिंग्स" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:48 +msgid "Link Coordinator's page" +msgstr "लिंक समन्वयक पृष्ठ" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:50 +msgid "Link Teacher's page" +msgstr "लिंक शिक्षक पृष्ठ" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:53 +msgid "Link Help page" +msgstr "लिंक सहायता पृष्ठ " + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:56 +#, fuzzy +msgid "Alternate Language" +msgstr "वैकल्पिक भाषा" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:116 +#, fuzzy +msgid "Add Activity page" +msgstr "गतिविधि पृष्ठ जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:118 +msgid "Add Cordinator's page" +msgstr "कॉर्डिनेटर के पृष्ठ को जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:120 +#, fuzzy +msgid "Add Teacher's page" +msgstr "टीचेस् पेज जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:122 +#, fuzzy +msgid "Add Help page" +msgstr "सहायता पृष्ठ जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/course_units.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:104 msgid "Unit Name: " msgstr "इकाई का नाम" #: gnowsys_ndf/ndf/templates/ndf/course_units.html:153 -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:94 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:153 msgid "Add New Page: " msgstr "नया पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:166 -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:126 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:287 +#, fuzzy +msgid "Page Type:" +msgstr "पेज प्रकार" + +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:184 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:184 msgid "Add New File: " msgstr "नई फ़ाइल जोड़ें" @@ -1019,86 +1794,124 @@ msgstr "बैच का नाम अंकित करें" msgid "Choose users" msgstr "उपयोगकर्ता चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:24 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:15 -msgid "" -"\n" -"

Types of Groups

\n" -"
\n" -"
Open Groups
\n" -"

Open groups are ideal for projects that require a " -"high level of collaboration and participation. Any metastudio user can join " -"this group without prior approval

\n" -"
Closed Groups
\n" -"

Closed groups are ideal for projects that require " -"restricted access to content and documents. Users can only join after their " -"membership request is approved or have been invited.

\n" -" " -msgstr "" -"\n" -"

Types of Groups

\n" -"
\n" -"
Open Groups
\n" -"

Open groups are ideal for projects that require a " -"high level of collaboration and participation. Any metastudio user can join " -"this group without prior approval

\n" -"
Closed Groups
\n" -"

Closed groups are ideal for projects that require " -"restricted access to content and documents. Users can only join after their " -"membership request is approved or have been invited.

" +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:35 +#, fuzzy +msgid "Announce Course" +msgstr "कोर्स घोषणा" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:40 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:12 -msgid "Create " -msgstr "सृजित करें" +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:37 +#, fuzzy +msgid "Create Program" +msgstr "कार्यक्रम बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:65 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:64 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:65 msgid "Group Name" msgstr "समूह का नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:69 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:68 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:69 msgid "Enter the unique group name" msgstr "समूह को विशिष्ट नाम दें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:84 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:83 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:76 +msgid "Group Name is required and it must be a string. " +msgstr "समूह का नाम आवश्यक है और यह एक स्ट्रिंग होना चाहिए" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:89 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:84 msgid "Alternate Group Name" msgstr "समूह का वैकल्पिक नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:88 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:87 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:93 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:88 msgid "Provide display/alternate group name" -msgstr "समूह का वैकल्पिक / प्रदर्शन नाम" +msgstr "समूह का वैकल्पिक / प्रदर्शित नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:103 -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:102 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:108 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:103 #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:49 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:107 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:118 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:106 msgid "Group Type" msgstr "समूह प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:130 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:121 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:147 +msgid "Please select group type." +msgstr "कृपया समूह प्रकार चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 +#: gnowsys_ndf/ndf/templates/ndf/header.html:369 +#: gnowsys_ndf/ndf/templates/ndf/header.html:416 +#: gnowsys_ndf/ndf/templates/ndf/header.html:462 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 +msgid "Language" +msgstr "भाषा" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:154 +msgid "Level of moderation" +msgstr "नियंत्रण स्तर" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:160 +msgid "Select Level" +msgstr "स्तर चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:177 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:169 +msgid "Please select moderation level." +msgstr "कृपया नियंत्रण स्तर चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:192 msgid "Start Date" msgstr "आरंभ तिथिः" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:197 +msgid "Please select start date." +msgstr "कृपया आरंभ तिथि चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:210 msgid "End Date" -msgstr "" +msgstr "अंतिम तिथि" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:216 +msgid "Please select end date." +msgstr "कृपया अंतिम तिथि चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:230 msgid "Enrollment Start Date" -msgstr "नामांकन अवधि" +msgstr "नामांकन आरंभ तिथि" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:186 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:235 +msgid "Please select enrollment start date." +msgstr "कृपया नामांकन की आरंभ तिथि चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:248 msgid "Enrollment End Date" -msgstr "नामांकन अवधि" +msgstr "नामांकन अंतिम तिथि" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:298 -#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:133 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:360 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:132 msgid "Upload thumbnail" -msgstr "फ़ाइल अपलोड करें" +msgstr "थंबनेल अपलोड करें" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:441 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:380 +msgid "Group name cannot include " +msgstr "समूह का नाम शामिल नहीं हो सकता" + +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:447 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:386 +msgid "Group name cannot be empty." +msgstr "समूह का नाम रिक्त नहीं हो सकता" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:49 msgid "" @@ -1111,7 +1924,7 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:55 msgid "Create a new discussion thread" -msgstr "एक नई विवरण कड़ी बनायें" +msgstr "चर्चा की एक नई कड़ी बनाएँ" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:63 #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:87 @@ -1120,68 +1933,97 @@ msgstr "फोरम नाम" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:65 msgid "Enter the name of forum here" -msgstr "समूह को विशिष्ट नाम दें" +msgstr "फ़ोरम का नाम यहाँ दर्ज करें" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:89 #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:112 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:173 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:158 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:182 msgid "Description:" msgstr "विवरणः" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:95 -msgid "Some description about forum" -msgstr "" - #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:107 msgid "Create forum" msgstr "फोरम बनाएँ" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:207 msgid "Forum with same name already exist. Please choose another name" -msgstr "" +msgstr "इस नाम का फ़ोरम पहले से मौजूद है कृपया दूसरा नाम चुनें" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:217 -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:306 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:301 msgid "Forum name cannot be empty" -msgstr "" +msgstr "फोरम का नाम रिक्त नहीं हो सकता" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:33 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:15 +#, fuzzy +msgid "" +"\n" +"

Types of Groups

\n" +"
\n" +"
Open Groups
\n" +"

Open groups are ideal for projects that require a " +"high level of collaboration and participation. Any metastudio user can join " +"this group without prior approval

\n" +"
Closed Groups
\n" +"

Closed groups are ideal for projects that require " +"restricted access to content and documents. Users can only join after their " +"membership request is approved or have been invited.

\n" +" " +msgstr "" +"\n" +"

Types of Groups

\n" +"
\n" +"
Open Groups
\n" +"

खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

Closed Groups
\n" +"

बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " + +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:31 +msgid "More Edit options" +msgstr "अधिक संपादन विकल्प" + +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:34 msgid "Create New Sub Group" msgstr "नया समूह बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:35 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:36 msgid "Create New Group" msgstr "नया समूह बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:128 -msgid "Group Editing Policy" -msgstr "समूह संपादन नीति" - -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:153 -msgid "Level of moderation" -msgstr "परिनियमित स्तर" +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:69 +msgid "Group name can not be changed" +msgstr "समूह का नाम बदला नहीं जा सकता" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:159 -msgid "Select Level" -msgstr "स्तर चुनें" +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:71 +msgid "Group Name is required and it must be a string." +msgstr "समूह का नाम आवश्यक है और यह एक स्ट्रिंग होना चाहिए" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:168 -msgid "Please select moderation level." -msgstr "कृपया परिनियमित स्तर चुनें" +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:129 +msgid "Group Editing Policy" +msgstr "समूह संपादन नीति" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:273 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:274 #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:85 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:187 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:186 msgid "Group Agency Types" msgstr "समूह संस्था प्रकार" +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:374 +msgid " already exist. Please choose another name" +msgstr "पहले से ही मौजूद. कृपया दूसरा नाम चुनें" + #: gnowsys_ndf/ndf/templates/ndf/create_partner.html:14 msgid "Existing Partners:" msgstr "मौजूदा पार्टनर" -#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:99 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:98 msgid "Please fill a valid email" -msgstr "कृपया वैध < > भरें" +msgstr "कृपया वैध ईमेल भरें" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:9 msgid "" @@ -1198,44 +2040,44 @@ msgid "" " " msgstr "" "\n" -"

Types of Groups

\n" +"

Types of Groups

\n" +"
\n" "
Open Groups
\n" -"

Open groups are ideal for projects that require a " -"high level of collaboration and participation. Any metastudio user can join " -"this group without prior approval

\n" -"
Closed Groups
\n" -"

Closed groups are ideal for projects that require " -"restricted access to content and documents. Users can only join after their " -"membership request is approved or have been invited.

\n" -" " +"

खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

Closed Groups
\n" +"

बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:20 msgid " Existing Groups:" msgstr "मौजूदा समूह" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:31 -#, fuzzy, python-format +#, python-format msgid " Create a sub group of %(maingroup)s " -msgstr "एक उप-समूह बनायें %" +msgstr "एक उप-समूह बनायें %(maingroup)s" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:40 msgid "Name of the Group" msgstr "समूह का नाम" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:53 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:111 msgid "PUBLIC" msgstr "सार्वजनिक" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:54 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 msgid "PRIVATE" msgstr "निजी" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:55 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:114 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 msgid "ANONYMOUS" -msgstr "नामरहित" +msgstr "अज्ञात" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:66 msgid "EDITABLE_NON_MODERATED" @@ -1243,18 +2085,18 @@ msgstr "संपादन योग्य_अपरिनियमित" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:67 msgid "EDITABLE_MODERATED" -msgstr "संपादन योग्य_परिनियमित" +msgstr "संपादन योग्य_ नियंत्रित " #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:68 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:127 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 msgid "NON_EDITABLE" -msgstr "संपादन निषेद" +msgstr "गैर संपादन योग्य" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:76 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:72 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:139 msgid "OPEN" -msgstr "खोलें" +msgstr "खुला" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:77 msgid "BY_REQUEST" @@ -1265,20 +2107,20 @@ msgid "BY_INVITATION" msgstr "निमंत्रण द्वारा" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:97 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:161 msgid "Group Member Visibility" msgstr "समूह सदस्य दृश्यता" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:101 msgid "DISCLOSED_TO_MEM" -msgstr "DISCLOSED_TO_MEM" +msgstr "सदस्य को सूचित करें" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:102 msgid "NOT_DISCLOSED_TO_MEM" -msgstr "NOT_DISCLOSED_TO_MEM" +msgstr "सदस्यों को सूचित न करें " #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:109 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:173 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:172 msgid "Group Encryption policy" msgstr "समूह एन्क्रिप्शन नीति" @@ -1287,17 +2129,17 @@ msgid "NOT_ENCRYPTED" msgstr "एन्क्रिप्टेड नहीं" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:114 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:179 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 msgid "ENCRYPTED" msgstr "एन्क्रिप्टेड" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:119 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:147 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:146 msgid "Group Existance visibility" msgstr "समूह अस्तित्व दृश्यता" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:123 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:152 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:151 msgid "ANNOUNCED" msgstr "घोषित" @@ -1334,97 +2176,323 @@ msgstr "कड़ी की विषय-वस्तु" msgid "Existing threads of forum" msgstr "फोरम की मौजुदा कडि़याँ" -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:88 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 +#, fuzzy +msgid "Enter Group Name" +msgstr "समूह का वैकल्पिक नाम" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 +#, fuzzy +msgid "Enter Unit Name" +msgstr "बैच का नाम अंकित करें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:28 +#, fuzzy +msgid "Enter alternate Name for Unit" +msgstr "बैच का नाम अंकित करें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:40 +#, fuzzy +msgid "Select Module" +msgstr "समूह चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:42 +#, fuzzy +msgid "Choose Module" +msgstr "फ़ाइल चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:53 +#, fuzzy +msgid "Select Grade" +msgstr "समूह चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:55 +#, fuzzy +msgid "Choose Grade" +msgstr "फ़ाइल चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:68 +#, fuzzy +msgid "Select Subject" +msgstr "संग्रह चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:120 +#, fuzzy +msgid "Choose Subject" +msgstr "उपयोगकर्ता चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:129 +#, fuzzy +msgid "Add Tags" +msgstr "टैग जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:133 +#, fuzzy +msgid "Enter Description" +msgstr "विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 +msgid "Unit with same name exists" +msgstr "समान नाम वाला यूनिट मौजूद है" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 +#, fuzzy +msgid "Please choose another name" +msgstr "कृपया वैध नाम भरें" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:183 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:340 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:183 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:344 msgid "" -"Are you sure you want to delete? All of the following related items also " -"will be deleted:" +"Are you sure you want to delete? All of the related items for the following " +"themes also will be deleted:" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:151 +msgid "Theme" +msgstr "प्रसंग" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 +msgid "Tree" +msgstr "ट्री" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:269 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:269 +msgid "Open" +msgstr "खुला" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:270 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:270 +msgid "Close" +msgstr "बंद" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:377 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:118 #: gnowsys_ndf/ndf/templates/ndf/list_themes.html:30 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:355 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:381 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:14 msgid "Title" msgstr "शीर्षक" +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:378 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:119 #: gnowsys_ndf/ndf/templates/ndf/list_themes.html:31 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:356 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:382 msgid "Created by" msgstr "सृजक" +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:413 #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:142 #: gnowsys_ndf/ndf/templates/ndf/list_themes.html:68 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:391 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:417 msgid "No data to display" msgstr "प्रदर्शन हेतु विषय नहीं हैं" -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:236 -msgid "tags" -msgstr "टैग्स" - -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:249 -msgid "Uploaded File" -msgstr "अपलोड की गई फाइल" - -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:279 -msgid "content:" -msgstr "विषय-वस्तुः" +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:41 +msgid "Editing specific learning objective " +msgstr "विशिष्ट संपादन सीखने के उद्देश्य" -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 -msgid "Content" -msgstr "विषय-वस्तु" +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:43 +msgid "Create a new specific learning objective " +msgstr "एक नया विशिष्ट शिक्षण उद्देश्य बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:90 -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:272 -#: gnowsys_ndf/ndf/templates/ndf/reply_to_reply.html:82 -msgid "Reply" -msgstr "जवाब दें" +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 +msgid "View: " +msgstr "देखें:" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:105 -msgid "Enter your reply text here." -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:77 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 +msgid " Name " +msgstr "नाम" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:188 -msgid "Login to start discussion" -msgstr "परिचर्चा करने की पहल करें" +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:206 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 +msgid "" +"Please give your page a descriptive name. It's helpful for others and for " +"yourself." +msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:227 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 +msgid "Privacy" +msgstr "गोपनीयता" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:154 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 +msgid "Theme Name" +msgstr "प्रसंग नाम" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:169 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 +msgid "+ Add Topic" +msgstr "प्रकरण जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:173 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 +msgid "Topic Name" +msgstr "प्रकरण नाम" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:4 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html:4 +#, fuzzy +msgid "Topic Map" +msgstr "प्रकरण नाम" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:165 +#, fuzzy +msgid "Curriculum Name" +msgstr "फोरम नाम" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:168 +#, fuzzy +msgid "Curriculum Description" +msgstr "विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:168 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 +#, fuzzy +msgid "optional" +msgstr "विकल्प" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:171 +msgid "Save Curriculum" +msgstr "पाठ्यक्रम सहेजें" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:25 +#, fuzzy +msgid "Delete Structure:" +msgstr "पाठ्यक्रम संरचना संपादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:27 +msgid "Are you sure want to delete?" +msgstr "क्या आप वाकई डिलीटकरना चाहते हैं?" + +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:88 +msgid "" +"Are you sure you want to delete? All of the following related items also " +"will be deleted:" +msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" + +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:236 +msgid "tags" +msgstr "टैग्स" + +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:249 +msgid "Uploaded File" +msgstr "अपलोड की गई फाइल" + +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:279 +msgid "content:" +msgstr "विषय-वस्तुः" + +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 +msgid "Content" +msgstr "विषय-वस्तु" + +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:91 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:273 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:121 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:112 +#: gnowsys_ndf/ndf/templates/ndf/reply_to_reply.html:82 +msgid "Reply" +msgstr "जवाब दें" + +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:107 +msgid "Enter text here." +msgstr "यहाँ लिखें" + +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:189 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:193 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:233 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:222 +msgid "Login to start discussion" +msgstr "परिचर्चा करने की पहल करें" + +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:232 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:239 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:280 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:269 msgid "Login to start discussion." msgstr "परिचर्चा करने की पहल करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:239 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:248 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:289 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:278 msgid "Begin Discussion" msgstr "परिचर्चा आरंभ करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:241 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:249 msgid "Comment" msgstr "टिप्पणी" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:244 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:245 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:253 msgid "Join Discussion" msgstr "परिचर्चा से जुड़ें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:333 -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:341 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:334 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:342 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:349 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:391 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:399 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:378 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:386 msgid "Please provide the reply content." -msgstr "" +msgstr "कृपया उत्तर सामग्री प्रदान करें।" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:356 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 msgid "Along with this reply, total of" -msgstr "" +msgstr "इस उत्तर के साथ, कुल मिलाकर" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:356 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 msgid "replies would get deleted.\\nClick " -msgstr "" +msgstr "जवाब हटाए जाएंगे। \\ n क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:360 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:361 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:388 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:430 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:417 msgid "Are you sure to delete this reply ?\\nClick " -msgstr "" +msgstr "क्या आप इस उत्तर को हटाना चाहते हैं? \\ क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:386 -msgid "To delete this reply, you need to be the author and logged in" -msgstr "इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्क है" +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:387 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:414 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:456 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:443 +msgid "To delete this reply, you need to be login and author of this reply." +msgstr "" +"इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्यक है" #: gnowsys_ndf/ndf/templates/ndf/document_detail.html:9 msgid "download" @@ -1445,60 +2513,66 @@ msgstr "" "

समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं, विवरण को संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:25 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:51 msgid "Select from following drawer: " msgstr "निम्नलिखित से चयन करें:" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:29 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:55 msgid "Add selected to following drawer: " msgstr "चयनित को निम्नलिखित में जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:46 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:72 msgid "Type atleast 3 characters to search" -msgstr "" +msgstr "खोज करने के लिए कम से कम 3 वर्ण टाइप करें" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:103 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:129 msgid "No content of selected type !" msgstr "चयनित प्रकार की कोई भी विषय वस्तु उपलब्ध नहीं है।" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:282 -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:173 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:174 #: gnowsys_ndf/ndf/templates/ndf/group.html:120 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:247 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 msgid "by" msgstr "द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:282 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 msgid "on" msgstr "पूर्ण हुआ" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:306 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:334 msgid "Move ALL to Right" -msgstr "" +msgstr "सभी को दाएं पर ले जाएं" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:307 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:335 msgid "Move ALL to Left" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:313 -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 -#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:321 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:268 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:281 -msgid "Save" -msgstr "सहेजें" +msgstr "सभी को बाएं ओर ले जाएं" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:386 -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:419 -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:588 -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:603 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:408 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:434 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:577 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:591 msgid "Nothing to move." msgstr "कुछ भी नहीं मिला" +#: gnowsys_ndf/ndf/templates/ndf/ebook.html:59 +msgid "eBooks" +msgstr "ई-पुस्तकें" + +#: gnowsys_ndf/ndf/templates/ndf/ebook.html:81 +msgid "" +" \n" +"

\n" +"
Each eBook is a collection of " +"chapter files.\n" +"
\n" +" " +msgstr "प्रत्येक ई-पुस्तक अध्याय फ़ाइलों का एक संग्रह है" + #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:53 msgid "Are you sure you want to cancel edit" -msgstr "" +msgstr "क्या आप वाकई संपादन को रद्द करना चाहते हैं?" #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:73 msgid "" @@ -1516,19 +2590,12 @@ msgid "Forum Name" msgstr "फोरम नाम" #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:121 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:136 msgid "Forum" msgstr "फोरम" -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 -msgid "Cancel" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:300 -msgid "Forum with same name already exist. Please choose another name" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:326 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:321 msgid "Please enter forum name" msgstr "कृपया वैध नाम भरें" @@ -1536,79 +2603,81 @@ msgstr "कृपया वैध नाम भरें" msgid "Group Editor" msgstr "समूह संपादक" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:59 -#, fuzzy, python-format +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:58 +#, python-format msgid " Click here to change settings of %(name)s " msgstr "%(name)s के सेटिंग बदलने के लिए यहाँ क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:68 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:67 msgid "Subscription policy" msgstr "सदस्यता नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 msgid "BY REQUEST" msgstr "अनुरोध द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:75 -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:142 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 msgid "BY INVITATION" msgstr "निमंत्रण द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:79 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:78 msgid "User policy" msgstr "उपयोगकर्ता नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:119 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:118 msgid "Group Editing policy" msgstr "समूह संपादन नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:124 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:123 msgid "EDITABLE amd NON_MODERATED" msgstr "संपादन योग्य एवं अपरिनियमित" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:125 msgid "EDITABLE and MODERATED" msgstr "संपादन योग्य_परिनियमित" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:135 msgid "Group Subscription policy" msgstr "समूह सदस्यता नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:153 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:152 msgid "NOT ANNOUNCED" msgstr "अघोषित" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:167 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:166 msgid "DISCLOSED TO MEMBERS" msgstr "सदस्यों को दिखेगा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:167 msgid "NOT DISCLOSED TO MEMBERS" msgstr "सदस्यों को नहीं दिखेगा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:177 msgid "NOT ENCRYPTED" msgstr "एन्क्रिप्टेड नहीं" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:212 -#, fuzzy, python-format +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:211 +#, python-format msgid " Click here to select apps for %(name)s " -msgstr "ऐप्स चयन के लिए क्ल्कि करें" +msgstr "%(name)s ऐप्स चयन के लिए क्ल्कि करें " + +#: gnowsys_ndf/ndf/templates/ndf/edit_mailbox.html:14 +#, fuzzy +msgid "Edit Mailbox" +msgstr "संपादित करें" #: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:68 msgid "Edit Thread " msgstr "कड़ी संपादन करें" -#: gnowsys_ndf/ndf/templates/ndf/event_base.html:5 -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 -msgid "Events" -msgstr "इवेंटस" - #: gnowsys_ndf/ndf/templates/ndf/event_base.html:89 -#: gnowsys_ndf/ndf/templates/ndf/footer.html:9 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:20 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 -#: gnowsys_ndf/ndf/templates/ndf/header.html:349 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:158 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 msgid "About" msgstr "बारे में" @@ -1617,20 +2686,30 @@ msgid "Start" msgstr "आरंभ" #: gnowsys_ndf/ndf/templates/ndf/event_base.html:99 -msgid "Journal" -msgstr "" +#, fuzzy +msgid "NoteBook" +msgstr "ई-पुस्तक" #: gnowsys_ndf/ndf/templates/ndf/event_base.html:103 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:244 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:304 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:55 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:96 msgid "Gallery" -msgstr "" +msgstr "गेलरी" + +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:153 +msgid "Following are the Notes added: " +msgstr "यह नोट्स जोड़े गए हैं:" #: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:181 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:86 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:85 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 #: gnowsys_ndf/ndf/templates/ndf/term.html:36 msgid "Create" msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/event_details.html:72 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:74 #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:119 #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:91 msgid "Read" @@ -1641,61 +2720,105 @@ msgstr "पढ़ें" msgid "" "Are you sure you want to delete? All of the following related items also " "will be deleted!" -msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" +msgstr "क्या आप डिलीट करना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी डिलीट हो जायेंगी" #: gnowsys_ndf/ndf/templates/ndf/event_list.html:98 #: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:153 msgid "This group doesn't have a registered" msgstr "इस समूह में कोई पंजीकृत नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/file.html:76 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:78 +#: gnowsys_ndf/ndf/templates/ndf/explore.html:50 +#, fuzzy +msgid " Create Course" +msgstr "पाठ्यक्रम का नाम" + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:18 +msgid "Courses" +msgstr "कोर्सेस " + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:23 +#: gnowsys_ndf/ndf/templates/ndf/header.html:120 +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:205 +msgid "Workspaces" +msgstr "कार्यक्षेत्र" + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:29 +#, fuzzy +msgid "Draft Courses" +msgstr "पाठ्यक्रम" + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:35 +#, fuzzy +msgid " Actions " +msgstr "एक्शन" + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:52 +msgid "Workspace Display Ordering: " +msgstr "कार्यस्थान प्रदर्शन क्रम" + +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:56 +msgid "SAVE" +msgstr "सेव" + +#: gnowsys_ndf/ndf/templates/ndf/file.html:84 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:77 msgid "Collections" msgstr "संग्रह" -#: gnowsys_ndf/ndf/templates/ndf/file.html:87 +#: gnowsys_ndf/ndf/templates/ndf/file.html:99 msgid "All files" msgstr "सभी फाईल" -#: gnowsys_ndf/ndf/templates/ndf/file.html:98 +#: gnowsys_ndf/ndf/templates/ndf/file.html:114 msgid "Documents" msgstr "प्रलेख" -#: gnowsys_ndf/ndf/templates/ndf/file.html:124 +#: gnowsys_ndf/ndf/templates/ndf/file.html:139 msgid "Interactives" msgstr "इंटरैक्टिवस" -#: gnowsys_ndf/ndf/templates/ndf/file.html:153 +#: gnowsys_ndf/ndf/templates/ndf/file.html:167 msgid "Audios" msgstr "ऑडियो" -#: gnowsys_ndf/ndf/templates/ndf/file.html:163 +#: gnowsys_ndf/ndf/templates/ndf/file.html:177 msgid "Images" -msgstr "चित्र" +msgstr "इमेज" -#: gnowsys_ndf/ndf/templates/ndf/file.html:175 -#: gnowsys_ndf/ndf/templates/ndf/file.html:201 +#: gnowsys_ndf/ndf/templates/ndf/file.html:189 +#: gnowsys_ndf/ndf/templates/ndf/file.html:215 msgid "Videos" msgstr "वीडियो" -#: gnowsys_ndf/ndf/templates/ndf/file.html:215 -#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 -msgid "Actions" -msgstr "क्रिया" +#: gnowsys_ndf/ndf/templates/ndf/file.html:227 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:96 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:124 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:139 +msgid "Pages" +msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/file.html:228 +#: gnowsys_ndf/ndf/templates/ndf/file.html:244 +#, fuzzy +msgid "Upload File in desk" +msgstr " डेस्क पर फ़ाइल अपलोड करें" + +#: gnowsys_ndf/ndf/templates/ndf/file.html:259 msgid "Review" msgstr "अवलोकन" -#: gnowsys_ndf/ndf/templates/ndf/file.html:230 +#: gnowsys_ndf/ndf/templates/ndf/file.html:261 msgid "Data Review" msgstr "विषय अवलोकन" -#: gnowsys_ndf/ndf/templates/ndf/file.html:237 +#: gnowsys_ndf/ndf/templates/ndf/file.html:268 msgid "File Statistics" msgstr "फाईल सांख्यिकी" -#: gnowsys_ndf/ndf/templates/ndf/file.html:278 +#: gnowsys_ndf/ndf/templates/ndf/file.html:297 +msgid "Homogeneous collections of resources" +msgstr "संसाधनों के एकरूप संग्रह, डेस्क में फाइल अपलोड करें" + +#: gnowsys_ndf/ndf/templates/ndf/file.html:319 msgid "this file is already uploaded please choose different file" msgstr "यह फाइल अपलोड की गई है कृपया अन्य फाइल चुने" @@ -1709,29 +2832,24 @@ msgid "Search Results:" msgstr "खोज परिणामः" #: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 -#: gnowsys_ndf/ndf/templates/ndf/forum.html:70 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:80 #: gnowsys_ndf/ndf/templates/ndf/group.html:74 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:128 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:127 msgid "Found" -msgstr "" +msgstr "मिल गया" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:124 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:136 msgid "This group doesn't have any collections." msgstr "इस समूह में कोई संग्रह नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:126 -msgid "Sorry, No resources found with selected filters" -msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:138 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:146 +msgid "Sorry, No such files found." +msgstr "क्षमा करें, ऐसी कोई भी फाइल नहीं मिली है" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:131 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:143 msgid "No files have been uploaded yet." -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:135 -msgid "" -"This group doesn't have any files. Be the first to upload a file!" -msgstr "" -"इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" +msgstr "अभी तक कोई भी फाइल अपलोड नहीं की गई है" #: gnowsys_ndf/ndf/templates/ndf/file_search.html:40 msgid "Posted by:" @@ -1756,11 +2874,11 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:58 msgid "Bar-Chart" -msgstr "दंड चार्ट" +msgstr "बार चार्ट" #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:59 msgid "Pie" -msgstr "निजी" +msgstr "पाई" #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:61 #: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:26 @@ -1771,150 +2889,160 @@ msgstr "क्रियाकलाप रेटिंग" msgid "Total Rating Score" msgstr "कुल क्रियाकलाप रेटिंग" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:123 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:125 msgid "Filter Resources" msgstr "संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:126 -#: gnowsys_ndf/ndf/templates/ndf/filters.html:149 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:299 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:130 +msgid "Add Filter" +msgstr "फ़िल्टर लगाएँ" + +#: gnowsys_ndf/ndf/templates/ndf/filters.html:133 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:160 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:312 #: gnowsys_ndf/ndf/templates/ndf/student_list.html:207 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:687 msgid "Select" msgstr "चुनें" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:154 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:163 msgid "Filter" msgstr "फिल्टर्स" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:250 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:284 msgid "No values for the key" -msgstr "" +msgstr "कुंजी के लिए कोई मान नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:387 -#: gnowsys_ndf/ndf/templates/ndf/filters.html:463 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:426 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:504 msgid "Remove this filter" -msgstr "" +msgstr "इस फिल्टर को हटायें" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:498 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:539 msgid "is already applied" -msgstr "" +msgstr "पहले से ही लागू है" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:548 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:589 msgid "Please select the proper filter first" msgstr "कृपया संस्था चुनें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:10 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:16 +msgid "Quick Links" +msgstr "क्विक लिंक्स " + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:21 msgid "Partners" msgstr "पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:11 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:22 #: gnowsys_ndf/ndf/templates/ndf/group.html:12 msgid "Groups" msgstr "समूह" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:12 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:23 msgid "Terms of Service" msgstr "सेवा की शर्तें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:13 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:24 msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:14 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:25 msgid "Contribute" msgstr "योगदान करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:15 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:26 msgid "Contact" msgstr "संपर्क करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:22 -msgid "View Source Code" -msgstr "सोर्स कोड देखें" +#: gnowsys_ndf/ndf/templates/ndf/footer.html:27 +msgid "Issues" +msgstr "मुद्दे" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:28 +msgid "sitemap" +msgstr "साइटमैप" #: gnowsys_ndf/ndf/templates/ndf/footer.html:29 -msgid "" -"All material is licensed under a Creative Commons Attribution-Share Alike " -"3.0 Unported License unless mentioned otherwise." -msgstr "" -"सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत आती " -"है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" +#: gnowsys_ndf/ndf/templates/ndf/task.html:67 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 +msgid "Feedback" +msgstr "प्रतिक्रिया" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:39 +msgid "Other Links" +msgstr "अन्य विवरण" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:43 +msgid "NCERT" +msgstr "एनसीईआरटी" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:44 +msgid "CIET" +msgstr "सीआईईटी" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:45 +msgid "Epathshala" +msgstr "ई-पाठशाला" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:46 +msgid "ICT Curriculum" +msgstr "आईसीटी पाठ्यक्रम" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:47 +msgid "SWAYAM" +msgstr "स्वयं" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:48 +msgid "Cyber Security" +msgstr "साइबर सुरक्षा" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:58 +msgid "Connect With Us" +msgstr "हमसे जुड़े" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:69 msgid "Powered by" msgstr "पावर्ड बाइ" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:69 msgid "gstudio" msgstr "स्टूडियो" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 -msgid "built at Gnowledge Lab" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:72 msgid "Homi Bhabha Centre for Science Education" msgstr "होमी भाभा विज्ञान शिक्षा केन्द्र (एच.बी.सी.एस.ई.)" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:72 msgid "TIFR" -msgstr "टीआईएफआर" +msgstr "टीआईएफआर में निर्मित जी-स्टुडियो द्वारा संचालित।" #: gnowsys_ndf/ndf/templates/ndf/forum.html:34 -msgid "

Forums

" -msgstr "" +#, fuzzy +msgid "Forums" +msgstr "फोरम" -#: gnowsys_ndf/ndf/templates/ndf/forum.html:41 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:44 #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:64 msgid "Create Forum" msgstr "फोरम बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/forum.html:63 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:65 msgid "All Forums" -msgstr "फोरम्स" +msgstr "सभी फोरम " -#: gnowsys_ndf/ndf/templates/ndf/forum.html:77 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:87 msgid "Search Results" msgstr "खोज परिणामः" -#: gnowsys_ndf/ndf/templates/ndf/forum.html:77 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:87 msgid "matched your search criteria" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/forum.html:120 -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:177 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:252 -#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 -msgid "created" -msgstr "सृजित" - -#: gnowsys_ndf/ndf/templates/ndf/forum.html:120 -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:177 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:252 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:247 -#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 -msgid "ago" -msgstr "टैग" - -#: gnowsys_ndf/ndf/templates/ndf/forum.html:125 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:181 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:256 -msgid "Contributor" -msgstr "योगदानकर्ता" - -#: gnowsys_ndf/ndf/templates/ndf/forum.html:137 -msgid "" -"This group doesn't have any forums. Be the first to create a forum!" -msgstr "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" +msgstr "आपके खोज मानदंडों से मेल खाता !!!" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:52 msgid "Other Forums" -msgstr "फोरम्स" +msgstr "अन्य फोरम" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:82 msgid "

 Add thread to this forum

" @@ -1924,122 +3052,308 @@ msgstr "

 इस फोरम में कड़ी जोड़ें msgid " Create  Thread " msgstr "कड़ी बनायें" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:99 -msgid "Top Contributors" -msgstr "सर्वोच्च योगदानकर्ता" - -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 -msgid "Forum:" -msgstr "फोरम" - -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:155 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:156 msgid "Thread Name" msgstr "कड़ी नाम" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:156 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:157 msgid "Thread Content" msgstr "कड़ी विषय वस्तु" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:157 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:158 msgid "Total Reply" msgstr "पूरा जवाब" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:158 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:159 msgid "Latest Activity" msgstr "नवीनतम क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:207 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:206 msgid "This forum dosen't have any threads. Be the first to create a thread" msgstr "" "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति " "हो सकते हैं" -#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:275 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:274 #, python-format msgid "" " This forum has %(thread_count)s existing threads.Please remove them and " "try again " -msgstr "" +msgstr "इस मंच में%(thread_count)s के मौजूदा थ्रेड हैं। कृपया उन्हें हटा दें और पुन: प्रयास करें" -#: gnowsys_ndf/ndf/templates/ndf/group.html:31 -msgid "" -"

Groups are an easy way to share content and conversation, either " -"privately or with the world. Many times, a group already exist for a " -"specific interest or topic. If you can't find one you like, feel free to " -"start your own.

\n" -"

How do groups work?
\n" -"

Groups can either be public, restricted (users may read a brief " -"description or overview but not view content) or completely private. Every " -"group has a wiki, a pool for resources, and a discussion board for talking." -msgstr "" -"

समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल " -"मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको " -"अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

\n" -"
समूह कैसे कार्य करते हैं?

समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का " -"संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा " -"पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:146 +msgid "You have not added any content to this course yet" +msgstr "आपने अभी तक पाठ्यक्रम में विषय-वस्तु नहीं जोड़ी है" -#: gnowsys_ndf/ndf/templates/ndf/group.html:64 -msgid "All Groups" -msgstr "समूह" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:353 +msgid "Edit " +msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/group.html:80 -#, python-format -msgid "" -" No %(title|lower)s%(group_nodes_count|pluralize)s matched your search " -"criteria " -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +msgid "eCourse" +msgstr "पाठ्यक्रम" -#: gnowsys_ndf/ndf/templates/ndf/group.html:122 -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:52 -msgid "Members" -msgstr "सदस्य" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 +#, fuzzy +msgid "Edit Event Structure" +msgstr "पाठ्यक्रम संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/group.html:124 -msgid "Objects" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:134 +#, fuzzy +msgid "Add Course Structure" +msgstr "पाठ्यक्रम संरचना जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/group.html:142 -msgid "" -"

There are no groups created yet. Be the first to create a Group!
" -msgstr "" -"
अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
" +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:134 +#, fuzzy +msgid "Add Event Structure" +msgstr "पाठ्यक्रम संरचना जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:101 -msgid "" -"\n" -" Group Dashboard Shows the tasks and activities on the site.\n" -" " -msgstr "" -"\n" -" समूह डेशबोर्ड साइट में हो रहे क्रियाकलाप और कार्य को दिखाता है" -" " +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:152 +#, fuzzy +msgid "Manage Students" +msgstr "प्रबंधन" + +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:152 +#, fuzzy +msgid "Manage Members" +msgstr "सदस्य" + +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 +#, fuzzy +msgid "Notebook" +msgstr "ई-पुस्तक" + +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:250 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:364 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:31 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:47 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:126 +msgid "Quiz" +msgstr "प्रश्नोत्तरी" + +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:285 +msgid "Dashboard" +msgstr "डेशबोर्ड" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:9 +msgid "Unit: " +msgstr "इकाई का नाम" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:178 +#, fuzzy +msgid "Manage Users" +msgstr "प्रबंधन" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:61 +msgid "Export to ePub" +msgstr "ePub मैं एक्सपोर्ट करें " + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:99 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:137 +#, fuzzy +msgid "Assets" +msgstr "आकलन" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:102 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:137 +msgid "Assessments" +msgstr "आकलन" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:105 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 +msgid "Discuss" +msgstr "परिचर्चा" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:144 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:203 +#, fuzzy +msgid "Delete Unit:" +msgstr "डिलीट यूनिट " + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:146 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:205 +msgid "Are you sure want to delete this unit?" +msgstr "क्या आप वाकई इस यूनिट को हटाना चाहते हैं?" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:185 +msgid "Epub will be downloaded automatically." +msgstr "ePub स्वयं डाउनलोड हो जायेगा " + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:105 +#: gnowsys_ndf/ndf/templates/ndf/header.html:70 +#: gnowsys_ndf/ndf/templates/ndf/repository.html:19 +msgid "Repository" +msgstr "संसाधन कोष" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:161 +#: gnowsys_ndf/ndf/templates/ndf/header.html:241 +msgid "MY COURSES" +msgstr "मेरे पाठ्यक्रम" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:178 +#: gnowsys_ndf/ndf/templates/ndf/header.html:260 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:96 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:116 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:136 +msgid "EXPLORE" +msgstr "खोजें" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:214 +#: gnowsys_ndf/ndf/templates/ndf/header.html:312 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:140 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:185 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:16 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 +msgid "Change Password" +msgstr "पासवर्ड बदलें" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:217 +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:201 +msgid "Analytics" +msgstr "विश्लेषण" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:221 +msgid "Admin Data" +msgstr "एडमिन डेटा" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:224 +msgid "Admin Designer" +msgstr "एडमिन डिजाइनर" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:228 +msgid "Home Dashboard" +msgstr "हॉम डेशबोर्ड" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 +#: gnowsys_ndf/ndf/templates/ndf/header.html:392 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 +msgid "Logout" +msgstr "लोगआउट" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 +#: gnowsys_ndf/ndf/templates/ndf/header.html:442 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 +#: gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 +#: gnowsys_ndf/ndf/templates/registration/login.html:6 +#: gnowsys_ndf/ndf/templates/registration/login.html:93 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:8 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:91 +msgid "Login" +msgstr "लॉगिन" + +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 +#: gnowsys_ndf/ndf/templates/ndf/header.html:725 +msgid "" +"RSS Feeds may not be displayed properly in this browser. Would you still " +"like to continue?" +msgstr "" +"इस ब्राउज़र में आरएसएस फ़ीड ठीक से प्रदर्शित नहीं की जा सकतीं। क्या आप अभी भी जारी रखना " +"चाहेंगे?" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:31 +msgid "" +"

Groups are an easy way to share content and conversation, either " +"privately or with the world. Many times, a group already exist for a " +"specific interest or topic. If you can't find one you like, feel free to " +"start your own.

\n" +"
How do groups work?
\n" +"

Groups can either be public, restricted (users may read a brief " +"description or overview but not view content) or completely private. Every " +"group has a wiki, a pool for resources, and a discussion board for talking." +msgstr "" +"

समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल " +"मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको " +"अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

\n" +"
समूह कैसे कार्य करते हैं?

समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का " +"संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा " +"पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:64 +msgid "All Groups" +msgstr "सभी समूह" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:80 +#, fuzzy, python-format +msgid "" +" No %(title|lower)s%(group_nodes_count|pluralize)s matched your search " +"criteria " +msgstr "आपके खोज मापदंड से मेल खाती है %(title|lower)s%(TASK_inst.count|pluralize)s" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +msgid "created" +msgstr "सृजित" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +msgid "ago" +msgstr "पूर्व" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:122 +msgid "Members" +msgstr "सदस्य" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:124 +msgid "Objects" +msgstr "ऑब्जेक्ट" + +#: gnowsys_ndf/ndf/templates/ndf/group.html:142 +msgid "" +"

There are no groups created yet. Be the first to create a Group!
" +msgstr "" +"
अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
" + +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:101 +msgid "" +"\n" +" Group Dashboard Shows the tasks and activities on the site.\n" +" " +msgstr "" +"\n" +" समूह डेशबोर्ड साइट में हो रहे क्रियाकलाप और कार्य को दिखाता है " #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:193 msgid "Approval" msgstr "अनुमोदन" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 msgid "Activity" msgstr "क्रियाकलाप" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:203 msgid "Calendar" -msgstr "" +msgstr "कैलेंडर" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:215 msgid "Enrollment Details" msgstr "नामांकन विवरण" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:220 -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:251 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:258 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:522 msgid "S. #" -msgstr "" +msgstr "स. #" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:250 msgid "Approval Details" @@ -2055,7 +3369,7 @@ msgstr "कृपया कार्य प्रकार चुनें" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:424 #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:464 -#: gnowsys_ndf/ndf/templates/ndf/upload_pic_widget.html:183 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:235 msgid "Only image files should be selected for setting your profile picture!" msgstr "प्रोफ़ाइल तस्वीर सेट करने के लिए केवल चित्र फाइल का ही चयन करें" @@ -2071,237 +3385,880 @@ msgstr "आप चयनित छात्रों का अनुमोद msgid "Do you want to continue rejecting the selected students?" msgstr "आप चयनित छात्रों का खारिज जारी रखना चाहते हैं ?" -#: gnowsys_ndf/ndf/templates/ndf/groupdashboard.html:152 -msgid " Group members " -msgstr "समूह सदस्य" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:218 +msgid "Feature" +msgstr "विशेषता" -#: gnowsys_ndf/ndf/templates/ndf/groupdashboard.html:171 -msgid "Create a New Group" -msgstr "नया समूह बनाएं" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:91 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:219 +msgid "Support" +msgstr "मदद" -#: gnowsys_ndf/ndf/templates/ndf/header.html:64 -#: gnowsys_ndf/ndf/templates/ndf/repository.html:74 -msgid "Repository" -msgstr "संसाधन कोष" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task.html:65 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 +msgid "In Progress" +msgstr "प्रगति में" -#: gnowsys_ndf/ndf/templates/ndf/header.html:165 -msgid "See more groups..." -msgstr "और अधिक समूहों को देखें......" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:137 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 +msgid "Low" +msgstr "कम" -#: gnowsys_ndf/ndf/templates/ndf/header.html:238 -#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 -msgid "Change Password" -msgstr "पासवर्ड बदलें" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:266 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 +msgid "High" +msgstr "उच्च" -#: gnowsys_ndf/ndf/templates/ndf/header.html:241 -msgid "Analytics" -msgstr "विश्लेषण" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:139 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 +msgid "Immediate" +msgstr "तुरंत" -#: gnowsys_ndf/ndf/templates/ndf/header.html:245 -msgid "Admin Data" -msgstr "एडमिन डेटा" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:305 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 +msgid "Single Assignee" +msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/header.html:248 -msgid "Admin Designer" -msgstr "एडमिन डिजाइनर" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:178 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:306 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 +msgid "Multiple Assignee" +msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/header.html:252 -msgid "Home Dashboard" -msgstr "हॉम डेशबोर्ड" +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:179 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:307 +msgid "Group Assignee" +msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/header.html:258 -msgid "Logout" -msgstr "लोगआउट" +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:14 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:38 +msgid "New Task" +msgstr "नया कार्य" -#: gnowsys_ndf/ndf/templates/ndf/header.html:278 -#: gnowsys_ndf/ndf/templates/registration/login.html:4 -#: gnowsys_ndf/ndf/templates/registration/login.html:83 -msgid "Login" -msgstr "लॉगिन" +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:49 +msgid "Task" +msgstr "कार्य" -#: gnowsys_ndf/ndf/templates/ndf/header.html:287 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:234 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 -msgid "Language" -msgstr "भाषा" +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:48 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:72 +msgid "Parent task" +msgstr "मूल कार्यः" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:62 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:86 +msgid "Task type:" +msgstr "कार्य प्रकार:" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:73 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:97 +msgid "Status:" +msgstr "स्थिति:" -#: gnowsys_ndf/ndf/templates/ndf/header.html:334 -msgid "APPS" -msgstr "ऐप्स" +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:87 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:111 +msgid "Start Date:" +msgstr "आरंभ तिथिः" -#: gnowsys_ndf/ndf/templates/ndf/header.html:356 -msgid "Updates" -msgstr "अद्यतन सूची" +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:122 +msgid "Priority:" +msgstr "प्राथमिकता:" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:12 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:189 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:197 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:252 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:263 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:296 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:112 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:136 +msgid "Due Date:" +msgstr "नियत तिथि:" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:123 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:147 +msgid "Assignee:" +msgstr "कार्य प्राप्तकर्ता:" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:137 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:161 +msgid "Sub Task:" +msgstr "उप-कार्य:" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +msgid "Edited" +msgstr "संपादित करें" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:237 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:261 +msgid "Versions" +msgstr "सत्र" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:279 +msgid "Editing Name" +msgstr "नाम संपादन" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:257 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:281 +msgid "Enter name" +msgstr "बैच का नाम अंकित करें" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:274 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:298 +msgid "×" +msgstr "×" + +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:291 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:315 +msgid "Nothing is Changed" +msgstr "कुछ भी नहीं मिला" + +#: gnowsys_ndf/ndf/templates/ndf/header.html:125 +msgid "Explore" +msgstr "खोजें " + +#: gnowsys_ndf/ndf/templates/ndf/header.html:130 +msgid "My Desk" +msgstr "मेरी मेज" + +#: gnowsys_ndf/ndf/templates/ndf/header.html:232 +msgid "MY DASHBOARD" +msgstr "मेरा डैशबोर्ड" + +#: gnowsys_ndf/ndf/templates/ndf/header.html:249 +msgid "MY GROUPS" +msgstr "मेरे समूह" + +#: gnowsys_ndf/ndf/templates/ndf/hierarchy_tree.html:253 +#, fuzzy +msgid "No Resources" +msgstr "संसाधन" + +#: gnowsys_ndf/ndf/templates/ndf/horizontal_card.html:31 +msgid "Subject" +msgstr "विषय" + +#: gnowsys_ndf/ndf/templates/ndf/horizontal_card.html:36 +msgid "No. of Units" +msgstr "इकाइयों की संख्या" + +#: gnowsys_ndf/ndf/templates/ndf/horizontal_card.html:41 +msgid "Grade" +msgstr "ग्रेड" + +#: gnowsys_ndf/ndf/templates/ndf/html_editor.html:20 +#, fuzzy, python-format +msgid " %(content)s " +msgstr "विषय-वस्तुः" + +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:14 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:192 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:200 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:269 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:287 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 msgid "Please select" msgstr "कृपया चुनें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:28 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:63 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:120 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:30 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:65 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:122 msgid "Please fill a valid" msgstr "कृपया वैध < > भरें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:163 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:165 msgid "Please fill valid" msgstr "कृपया वैध < > भरें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:176 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:179 msgid "Please set" msgstr "कृपया सेट करें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:202 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:207 msgid "Click here to view " msgstr "देखने के लिए क्ल्कि करें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:223 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:228 msgid "Upload! " msgstr "अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:274 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:285 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:262 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:292 #, fuzzy, python-format msgid " - - - Select %(alt)s - - - " msgstr " - - - चुनें - - - " -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:259 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:264 #, fuzzy, python-format msgid " %(choice)s " msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:276 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:290 -#, fuzzy, python-format -msgid " %(alt)s " -msgstr "%(alt)s" +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:282 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:297 +#, fuzzy, python-format +msgid " %(alt)s " +msgstr "%(alt)s" + +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:52 +msgid "Change" +msgstr "बदलें" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 +msgid "Notification mails sent to newly selected users" +msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 +msgid "Notification mails sent to all users except group owner" +msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 +msgid "Successfully applied modifications and e-mail notifications sent" +msgstr "भेजे गए संशोधनों और ई-मेल सूचनाओं को सफलतापूर्वक लागू किया गया" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 +msgid "Type here and press enter to search users" +msgstr "यहां टाइप करें और उपयोगकर्ताओं को खोजने के लिए एन्टर दबाएं" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:152 +msgid "Subscribe Admins" +msgstr "व्यवस्थापक सदस्यता लें" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:158 +msgid "

Select Admins

" +msgstr "

उपयोगकर्ता चुनें

" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:163 +msgid "" +"" +msgstr "Send notification mails to all except the group owner" + +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:167 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:49 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:211 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:317 +msgid "×" +msgstr "×" + +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:56 +msgid "failed to subscribe" +msgstr "सदस्यता लेने में विफल" + +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:155 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:157 +msgid "Subscribe Users" +msgstr "उपयोगकर्ता सदस्यता लें" + +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:162 +msgid "

Select Users

" +msgstr "

उपयोगकर्ता चुनें

" + +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:167 +msgid "Send notification mails to all except the group owner" +msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp.html:10 +#, fuzzy +msgid "Upload Jhapp" +msgstr "अपलोड करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:9 +msgid "Insert Assessment" +msgstr "आकलन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:14 +#, fuzzy +msgid "Add Assessment" +msgstr "आकलन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:18 +msgid "Insert Tools" +msgstr "साधन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:23 +msgid "Insert Open Story Tool" +msgstr "ओपन स्टोरी साधन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:26 +msgid "Insert PoliceQuad En" +msgstr "पुलिस क्वाड इ एन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:29 +msgid "Insert PoliceQuad Hi" +msgstr "पुलिस क्वाड एच आई सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:32 +msgid "Insert PoliceQuad Te" +msgstr "पुलिस क्वाड टी इ सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:35 +msgid "Insert Geogebra Geometric Reasoning" +msgstr "जियोजेब्रा जियोमेट्रिक तर्क सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:38 +msgid "Insert Run Kitty Run (en)" +msgstr "रन किटी रन (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:41 +msgid "Insert Run Kitty Run (hi)" +msgstr "रन किटी रन (एच आई ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:44 +msgid "Insert Run Kitty Run (te)" +msgstr "रन किटी रन (टी इ ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:47 +msgid "Insert TurtleJS" +msgstr "टर्टल जे एस सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:56 +msgid "Geogebra Proportional Reasoning 1" +msgstr "जियोजेब्रा आनुपातिक तर्क 1" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:59 +msgid "Geogebra Proportional Reasoning 2 A1 Q1" +msgstr "जियोजेब्रा आनुपातिक रीज़निंग 2 ए1 ​​क्यू1" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:62 +msgid "Geogebra Proportional Reasoning 2 A1 Q3" +msgstr "जियोजेब्रा आनुपातिक रीज़निंग 2 ए1 ​​क्यू3" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:65 +msgid "Geogebra Proportional Reasoning 2 A2 Q1" +msgstr "जियोजेब्रा आनुपातिक रीज़निंग 2 ए2 क्यू1" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:70 +msgid "Insert Physics Video Player" +msgstr "भौतिकी वीडियो प्लेयर सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:73 +msgid "Insert PR_U1_L1_A1_FST (en)" +msgstr "PR_U1_L1_A1_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:76 +msgid "Insert PR_U1_L1_A2_FST (en)" +msgstr "PR_U1_L1_A2_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:79 +msgid "Insert PR_U1_L1_A3_FST (en)" +msgstr "PR_U1_L1_A3_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:82 +msgid "Insert PR_U1_L1_A4_FST (en)" +msgstr "PR_U1_L1_A4_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:85 +msgid "Insert PR_U1_L2_A1_FST (en)" +msgstr "PR_U1_L2_A1_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:88 +msgid "Insert PR_U1_L2_A2_FST (en)" +msgstr "PR_U1_L2_A2_FST (इ एन ) सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:91 +msgid "Insert PR_U1_L2_A3_FST (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:94 +msgid "Insert PR_U1_L2_A4_FST (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:97 +msgid "Insert PR_U1_L3_A1_FST (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:100 +msgid "Insert PR_U1_L3_A2_FST (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:103 +msgid "Insert PR_U1_L3_A3_FST (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:106 +msgid "Insert PR_U1_L1_A1_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:109 +msgid "Insert PR_U1_L1_A2_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:112 +msgid "Insert PR_U1_L1_A3_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:115 +msgid "Insert PR_U1_L1_A4_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:118 +msgid "Insert PR_U1_L2_A1_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:121 +msgid "Insert PR_U1_L2_A2_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:124 +msgid "Insert PR_U1_L2_A3_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:127 +msgid "Insert PR_U1_L2_A4_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:130 +msgid "Insert PR_U1_L3_A1_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:133 +msgid "Insert PR_U1_L3_A2_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:136 +msgid "Insert PR_U1_L3_A3_FST (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:139 +msgid "Insert PR_U1_L1_A1_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:142 +msgid "Insert PR_U1_L1_A2_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:145 +msgid "Insert PR_U1_L1_A3_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:148 +msgid "Insert PR_U1_L1_A4_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:151 +msgid "Insert PR_U1_L2_A1_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:154 +msgid "Insert PR_U1_L2_A2_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:157 +msgid "Insert PR_U1_L2_A3_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:160 +msgid "Insert PR_U1_L2_A4_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:163 +msgid "Insert PR_U1_L3_A1_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:166 +msgid "Insert PR_U1_L3_A2_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:169 +msgid "Insert PR_U1_L3_A3_FST (Te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:182 +msgid "Insert PR_U2_L2_A1_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:185 +msgid "Insert PR_U2_L2_A2_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:187 +msgid "Insert PR_U2_L2_A3_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:189 +msgid "Insert PR_U2_L2_A4_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:191 +msgid "Insert PR_U2_L2_A5_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:193 +msgid "Insert PR_U2_L2_A6_RP (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:196 +msgid "Insert PR_U2_L2_A1_RP (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:199 +msgid "Insert PR_U2_L2_A2_RP (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:201 +msgid "Insert PR_U2_L2_A3_RP (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:203 +msgid "Insert PR_U2_L2_A4_RP (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:205 +msgid "Insert PR_U2_L2_A5_RP (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:207 +msgid "Insert PR_U2_L2_A6_RP (hi)s" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:210 +msgid "Insert PR_U2_L2_A1_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:213 +msgid "Insert PR_U2_L2_A2_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:215 +msgid "Insert PR_U2_L2_A3_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:217 +msgid "Insert PR_U2_L2_A4_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:219 +msgid "Insert PR_U2_L2_A5_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:222 +msgid "Insert PR_U2_L2_A6_RP (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:228 +msgid "Insert PR_U3_L4_A1_ICL (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:231 +msgid "Insert PR_U3_L4_A2_ICL (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:234 +msgid "Insert PR_U3_L4_A1_ICL (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:237 +msgid "Insert PR_U3_L4_A2_ICL (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:240 +msgid "Insert PR_U3_L4_A1_ICL (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:243 +msgid "Insert PR_U3_L4_A2_ICL (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:246 +msgid "Insert Find the rate" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:252 +msgid "Insert StarLogoNOVA_Anemia1(en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:255 +msgid "Insert StarLogoNOVA_Anemia2(en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:258 +msgid "Insert StarLogoNOVA_Anemia1(hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:261 +msgid "Insert StarLogoNOVA_Anemia2(hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:264 +msgid "Insert StarLogoNOVA_Anemia1(te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:267 +msgid "Insert StarLogoNOVA_Anemia2(te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:270 +msgid "StarLogoNOVA_FishAlgae(en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:273 +msgid "Insert StarLogoNOVA_FishAlgae(hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:276 +msgid "Insert StarLogoNOVA_FishAlgae(te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:279 +msgid "Insert Build_An_Atom(en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:283 +msgid "Insert Build_An_Atom(hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:287 +msgid "Insert Build_An_Atom(te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:291 +msgid "Insert Build_An_Molecule(en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:295 +msgid "Insert Build_An_Molecule(hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:299 +msgid "Insert Build_An_Molecule(te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:310 +msgid "Insert Rotation_of_Earth_Animation (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:313 +msgid "Insert Rotation_of_Earth_Animation (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:316 +msgid "Insert Rotation_of_Earth_Animation (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:319 +msgid "Insert Astroamer_Element_Hunt_Activity (en)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:322 +msgid "Insert Astroamer_Element_Hunt_Activity (hi)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:325 +msgid "Insert Astroamer_Element_Hunt_Activity (te)" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:328 +msgid "Insert Motion_of_Moon_Animation (en)" +msgstr "चंद्रमा की गति का एनीमेशन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:331 +msgid "Insert Motion_of_Moon_Animation (hi)" +msgstr "चंद्रमा की गति का एनीमेशन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:334 +msgid "Insert Motion_of_Moon_Animation (te)" +msgstr "चंद्रमा की गति का एनीमेशन सम्मिलित करें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:337 +msgid "Insert Astroamer_Moon_Track (en)" +msgstr "खगोल विज्ञानी चंद्रमा ट्रैक डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:340 +msgid "Insert Astroamer_Moon_Track (hi)" +msgstr "खगोल विज्ञानी चंद्रमा ट्रैक डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:343 +msgid "Insert Astroamer_Moon_Track (te)" +msgstr "खगोल विज्ञानी चंद्रमा ट्रैक डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:346 +msgid "Insert Solar_System_Animation (en)" +msgstr "सौर मंडल प्रणाली एनीमेशन डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:349 +msgid "Insert Solar_System_Animation (hi)" +msgstr "सौर मंडल प्रणाली एनीमेशन डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:352 +msgid "Insert Solar_System_Animation (te)" +msgstr "सौर मंडल प्रणाली एनीमेशन डालें" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:355 +msgid "Insert Astroamer_Planet_Trek_Activity (en)" +msgstr "खगोल विज्ञानी प्लैनेट ट्रेक गतिविधि" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:358 +msgid "Insert Astroamer_Planet_Trek_Activity (hi)" +msgstr "खगोल विज्ञानी प्लैनेट ट्रेक गतिविधि" + +#: gnowsys_ndf/ndf/templates/ndf/jhapp_list.html:361 +msgid "Insert Astroamer_Planet_Trek_Activity (te)" +msgstr "एस्ट्रोमर प्लैनेट ट्रेक गतिविधि" + +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:7 +msgid "Welcome" +msgstr "स्वागत है" + +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:219 +msgid "Discussion" +msgstr "चर्चा" + +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:228 +msgid "eResourses" +msgstr "संसाधन" + +#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:236 +#: gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:13 +msgid "Users" +msgstr "उपयोगकर्ता" + +#: gnowsys_ndf/ndf/templates/ndf/lms.html:52 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:93 +msgid "Resources" +msgstr "संसाधन" + +#: gnowsys_ndf/ndf/templates/ndf/lms.html:55 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:96 +#, fuzzy +msgid "E-Library" +msgstr "ई-पुस्तकालय" + +#: gnowsys_ndf/ndf/templates/ndf/lms.html:61 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:100 +msgid "Blog" +msgstr "ब्लॉग" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:299 -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 -#: gnowsys_ndf/notification/templates/notification/notice_settings.html:52 -msgid "Change" -msgstr "बदलें" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:88 +msgid "Lessons" +msgstr "पाठ" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 -msgid "Notification mails sent to newly selected users" -msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:102 +msgid "blog" +msgstr "ब्लॉग " -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 -msgid "Notification mails sent to all users except group owner" -msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:131 +msgid "Asset Collection" +msgstr "संग्रह" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 -msgid "Successfully applied modifications and e-mail notifications sent" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:165 +#, fuzzy +msgid "Stats" +msgstr "स्थिति:" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 -msgid "Type here and press enter to search users" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:165 +msgid "Progress Report" +msgstr "प्रगति रिपोर्ट" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:150 -msgid "Subscribe Admins" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:168 +#, fuzzy +msgid "Edit Structure" +msgstr "पाठ्यक्रम संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:155 -msgid "

Select Admins

" -msgstr "

उपयोगकर्ता चुनें

" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:175 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:41 +#, fuzzy +msgid "Change image" +msgstr "बदलें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:160 -msgid "" -"" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:193 +msgid "Export Content into ePubs" +msgstr "ePub मैं एक्सपोर्ट करें " -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:164 -#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:49 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:211 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:317 -msgid "×" -msgstr "×" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:199 +#, fuzzy +msgid "Edit Profile" +msgstr "कोर्स संपादन" -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:56 -msgid "failed to subscribe" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:38 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:41 +msgid "My Workspaces" +msgstr "मेरे वर्कस्पेस" -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:153 -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:155 -msgid "Subscribe Users" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:41 +#, fuzzy +msgid "My Courses" +msgstr "मेरे पाठ्यक्रम" -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:159 -msgid "

Select Users

" -msgstr "

उपयोगकर्ता चुनें

" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:47 +msgid "My Progress" +msgstr "प्रगति में" -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:164 -msgid "Send notification mails to all except the group owner" -msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:72 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:46 +msgid "My Workspace" +msgstr "मेरे वर्कस्पेस" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:7 -msgid "Welcome" -msgstr "स्वागत है" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:82 +msgid "Joined Workspaces & Enrolled Courses" +msgstr "कार्यस्थलों में सम्मिलित हों और पाठ्यक्रमों में नामांकित हों " + +#: gnowsys_ndf/ndf/templates/ndf/mailbox_create_edit.html:14 +#, fuzzy +msgid "Create Mailbox" +msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:37 -msgid "An initiative of Government of India" -msgstr "भारत सरकार की एक पहल" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:32 +msgid "MailBoxes" +msgstr "मेलबॉक्स" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:43 -msgid "Offering Open Educational Resources" -msgstr "मुक्त शैक्षिक संसाधन प्रदान करने वाला" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:49 +#, fuzzy +msgid "New Mail Box" +msgstr "नई फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:45 -msgid "In all Indian Languages" -msgstr "सभी भारतीय भाषाओं में" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:74 +msgid "<" +msgstr "" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:46 -msgid "Created, adapted, translated and shared" -msgstr "सृजित, अनुकूलित, अनुवादित तथा बाँट लेना" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:75 +msgid ">" +msgstr "" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:51 -msgid "Resources" -msgstr "संसाधन" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:83 +msgid "Unread Mails" +msgstr "अपठित मेल" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:54 -msgid "Let's Join NROER" -msgstr "एन.आर.ओ.इ.आर के साथ जुड़ें" +#: gnowsys_ndf/ndf/templates/ndf/mailclient.html:87 +msgid "Read Mails" +msgstr "पठित मेल" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:68 -msgid "Bridging divides" -msgstr "सभी से जुड़ाव" +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:20 +msgid "State Partners" +msgstr "राज्य पार्टनर्स" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:73 -msgid "Building partnerships" -msgstr "पार्टनर्शिप निर्माण करें" +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:22 +msgid "Teachers" +msgstr "शिक्षक" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:78 -msgid "Nurturing networks and interest groups" -msgstr "पोषित नेटवर्क तथा रूचिकर समूह" +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:24 +msgid "Institutional Partners" +msgstr "संस्थागत पार्टनर्स" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:83 -msgid "Capturing and analyzing data" -msgstr "अभिग्रहित तथा विश्लेषणात्मक आँकड़े" +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:26 +msgid "Individual Partners" +msgstr "व्यक्तिगत साझेदार" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:96 -msgid "Connecting knowledge connecting people..." -msgstr "ज्ञान को लोगों से जोड़ना, लोगों को ज्ञान जोड़ना..." +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:28 +msgid "Interest Groups" +msgstr "अभिरूचि समूह" -#: gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html:103 -msgid "Strengthening school and teacher education" -msgstr "समर्थ स्कूल और अध्यापक शिक्षा" +#: gnowsys_ndf/ndf/templates/ndf/main_simple_card.html:30 +msgid "Schools" +msgstr "विद्यालय" #: gnowsys_ndf/ndf/templates/ndf/meeting.html:11 msgid "Video chat." @@ -2369,37 +4326,11 @@ msgstr "बैच" msgid "Batch Check" msgstr "बैच जाँच" -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:222 -#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 -msgid "Graph" -msgstr "ग्राफ" - -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 -#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 -msgid "Concept Graph" -msgstr "संकल्पना ग्राफ" - -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 -#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 -msgid "Collection Graph" -msgstr "संग्रह ग्राफ" - -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 -#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 -msgid "Dependency Graph" -msgstr "निर्भरता ग्राफ" - -#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 -#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 -msgid "Discuss" -msgstr "परिचर्चा" - #: gnowsys_ndf/ndf/templates/ndf/mis_details.html:409 msgid "Make Module" msgstr "मॉड्यूल बनायें" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:193 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:200 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:427 #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:111 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:498 @@ -2407,34 +4338,34 @@ msgstr "मॉड्यूल बनायें" msgid "College" msgstr "संस्था" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:194 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:201 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:416 msgid "Degree Year" msgstr "उपाधि वर्ष" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:197 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:204 msgid "Total" msgstr "कुल" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:201 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:208 msgid "I" msgstr "I" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:202 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:209 msgid "II" msgstr "II" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:203 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:210 msgid "III" msgstr "III" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:223 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:230 msgid "" "

Are you sure you want to delete? All of the following related data also " "will be deleted:

" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:283 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:290 msgid "

No data to display

" msgstr "प्रदर्शन हेतु विषय नहीं हैं" @@ -2508,13 +4439,18 @@ msgid "" " This group doesn't have any modules. Be the first to create a Module!" msgstr "इस समूह में कोई मॉड्यूल नहीं है। आप मॉड्यूल बनाने वाले प्रथम व्यक्ति हो सकते हैं" -#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:30 -msgid "Modules " -msgstr "मॉड्यूल" +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:22 +msgid "Module Name: " +msgstr "मॉड्यूल का नाम " -#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:60 -msgid "User " -msgstr "उपयोगकर्ता" +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:23 +#, fuzzy +msgid "Module Description: " +msgstr "मॉड्यूल विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/my_dashboard.html:9 +msgid "My Dashboard" +msgstr "मेरा डेशबोर्ड" #: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:135 msgid "Student(s)" @@ -2528,370 +4464,341 @@ msgstr "नाम से छात्र खोजें:" msgid "Accept invite " msgstr "निमंत्रण स्वीकार करें" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:180 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 msgid " awaiting for moderation: " -msgstr "" +msgstr "मॉडरेशन के लिए प्रतीक्षित" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:183 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:98 msgid "Currently, there are no Resources for moderation " -msgstr "" +msgstr "वर्तमान में, मॉडरेशन के लिए कोई संसाधन नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:191 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:106 msgid "Note: Following Resource is Under Moderation -" -msgstr "" +msgstr "नोट: निम्न संसाधन मॉडरेशन के अंतर्गत है -" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:192 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:107 msgid "Check the current status of Moderation" -msgstr "" +msgstr "मॉडरेशन की वर्तमान स्थिति की जांच करें" + +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:241 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:367 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:145 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:149 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:186 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:190 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:42 +#: gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html:41 +msgid "Your browser does not support the audio element" +msgstr "आपका ब्राउज़र वीडियो टैग को सहयोग नहीं कर रहा है" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:326 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:332 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:353 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:361 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:404 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:413 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:423 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:106 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:112 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:133 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:141 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:184 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:193 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:251 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:259 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:321 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:95 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:101 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:122 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:130 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:173 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:182 +#: gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html:51 +#: gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html:59 msgid "Your browser does not support the video tag." msgstr "आपका ब्राउज़र वीडियो टैग को सहयोग नहीं कर रहा है" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:376 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:380 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:427 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:431 -msgid "Your browser does not support the audio element" -msgstr "आपका ब्राउज़र वीडियो टैग को सहयोग नहीं कर रहा है" +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:298 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:311 +msgid "View in Full Screen" +msgstr "पूर्ण स्क्रीन में देखें" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:385 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:436 -msgid "Full screen view" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:329 +msgid "Change Thumbnail" +msgstr "थंबनेल बदलें " -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:463 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:347 +msgid "Add Subtitle(s)" +msgstr "उपशीर्षक जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:375 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:50 +msgid "View in full screen" +msgstr "पूर्ण स्क्रीन में देखें" + +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:406 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:221 msgid "Download" msgstr "डाउनलोड" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:471 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:557 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:414 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:545 msgid "Contributed by" msgstr "योगदानकर्ता द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:725 -msgid "Overview" -msgstr "अवलोकन" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:767 -msgid "Collection Set" -msgstr "संग्रह" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:791 -#, python-format -msgid " No Collections associted with %(node.name)s resource" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:800 -msgid "Attribute Set" -msgstr "विशेषताएँ:" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:824 -#, python-format -msgid " No Attributes associted with %(node.name)s resource " -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:833 -msgid "Relation Set" -msgstr "संबंध:" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:856 -msgid "No Relations associted with" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:856 -msgid "resource." +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:551 +#, fuzzy +msgid "Source" msgstr "संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_view.html:449 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_view.html:465 msgid "Type here to search in the resources" -msgstr "" +msgstr "संसाधनों में खोजने के लिए यहां टाइप करें" -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:85 -msgid "Add resources in this topic " -msgstr "इस विषय में संसाधन जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:90 -msgid "Add Page " -msgstr "पृष्ठ जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:103 -msgid "Separate tags with commas..." -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:112 -msgid "Save Page" -msgstr "पृष्ठ" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:122 -msgid "Add File " -msgstr "फाइल जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:141 -msgid "Save File" -msgstr "नई फ़ाइल" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:152 -msgid "Add Events " -msgstr "इवेंटस जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/node_details_base.html:157 -msgid "Add events feature will be coming soon " -msgstr "इवेंटस जोड़नें की सुविधा शीघ्र आ रही है" - -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:352 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:366 -msgid "Edit " -msgstr "संपादित करें" +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:12 +msgid "Create " +msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:86 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:71 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:41 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:41 msgid "Editing " -msgstr "%(title_var)s: %(node_name)s को संपादित करें" +msgstr " संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 -msgid "Create New Blog" +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:71 +#, fuzzy +msgid "Note" +msgstr "ई-पुस्तक" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:74 +#, fuzzy +msgid "Create New Note" msgstr "नया बनायें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:91 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:76 msgid "Create New " msgstr "नया बनायें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:100 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 -msgid "" -"Please give your page a descriptive name. It's helpful for others and for " -"yourself." -msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:81 +msgid "Create page from existing template" +msgstr "मौजूदा टेम्पलेट से पृष्ठ बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:113 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:103 msgid "Node" msgstr "नोड" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:116 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:106 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:64 msgid "Requires" msgstr "आवश्यक है" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:124 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:114 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:61 msgid "Metadata" msgstr "मेटाडाटा" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:127 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:117 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:70 msgid "Teaches" msgstr "टीचेस्" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:131 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:121 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:67 msgid "Assesses" msgstr "आकलन" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:137 -msgid "Interaction Settings" -msgstr "अधिसूचना सेटिंग" - -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:177 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:202 msgid "Settings" msgstr "सेटिंग" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:183 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:211 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:208 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:236 msgid "Visibility" msgstr "दृश्यता" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:190 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:197 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:218 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:215 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:222 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:243 msgid "Visible" msgstr "दर्शनीय" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:193 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:200 -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:221 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:218 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:225 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:246 msgid "Hidden" msgstr "छुपा हुआ" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:250 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:275 msgid "Location:" msgstr "स्थान:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:263 -msgid "Page Type" -msgstr "फाइल प्रकार" - -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:361 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:341 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:237 msgid "Page" msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:365 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:345 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:242 msgid "File" msgstr "फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:374 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:354 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:254 msgid "Video" msgstr "वीडियो" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:379 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:359 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:260 msgid "Pandora" msgstr "पेंडोरा" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:384 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:53 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:80 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:111 -msgid "Quiz" -msgstr "प्रश्नोत्तरी" - -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:407 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:386 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:6 msgid "Please add or edit Metadata" msgstr "कृपया मेटाडेटा जोड़े अथवा संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:416 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:394 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:15 msgid "Educational Use:" msgstr "शैक्षिक उपयोगिताः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:418 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:396 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:17 msgid "Interactivity Type: " msgstr "इंटरैक्टिविटी प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:420 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:398 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:19 msgid "Educational Level:" msgstr "शैक्षिक स्तरः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:422 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:400 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:21 msgid "Educational Subject:" msgstr "शैक्षिक विषयः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:424 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:402 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:23 msgid "Time Required: " msgstr "आवश्यक समयः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:426 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:404 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:25 msgid "Target Audience:" msgstr "लक्षित गण:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:428 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:406 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:27 msgid "Text Complexity" msgstr "पाठ की जटिलता" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:430 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:408 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:29 msgid "Age Range:" msgstr "आयु वर्ग:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:432 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:410 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:31 msgid "Reading Level:" msgstr "पठन स्तरः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:434 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:412 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:33 msgid "Curricular:" -msgstr "" +msgstr "पाठ्यक्रम:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:436 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:414 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:35 msgid "Educational Alignment:" msgstr "शैक्षिक उपयोगिताः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:458 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:439 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:61 msgid "Based on Url: " msgstr "यूआरएल पर आधारित:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:464 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:445 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:68 msgid "Source: " -msgstr "" +msgstr "स्रोत:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:496 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:451 +msgid "Copyright" +msgstr "कॉपीराइट" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:464 +msgid "Please select resource Subject" +msgstr "कृपया संसाधन विषय चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:476 msgid "Add properties to the discussion feature of this " -msgstr "" +msgstr "विचार-विमर्श भाग में विशेषताएं सम्मिलित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:496 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:476 msgid " node " -msgstr "" +msgstr "नोड" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:500 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:483 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:24 msgid "Interaction : " -msgstr "इंटरैक्टिवस" +msgstr "इंटरेक्शन" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:510 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:499 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:34 msgid "Release Option:" msgstr "संबंध:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:521 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:503 +msgid "Show Replies to All" +msgstr "सभी के उत्तर दिखाएं" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:504 +msgid "Hide Replies from All" +msgstr "सभी के उत्तर छिपाएं" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:510 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:46 msgid "Interaction Type:" -msgstr "इंटरैक्टिविटी प्रकार" +msgstr "इंटरेक्शन प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:538 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:524 msgid "Interaction start date:" -msgstr "इंटरैक्टिविटी प्रकार" +msgstr "इंटरैक्शन प्रारंभ तिथि:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:547 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:533 msgid "Interaction close date:" -msgstr "पंजीकरण बंद" +msgstr "इंटरेक्शन की अंतिम तारीख:" + +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:546 +msgid "Select help page(s) for this resource from following options:" +msgstr "निम्न विकल्पों से इस संसाधन के लिए सहायता पृष्ठ चुनें:" #: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:637 msgid "Save as Draft And Preview" -msgstr "" +msgstr "ड्राफ्ट के रूप मैं सहेजें और पूर्वावलोकन करें " -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:770 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:789 msgid "This will cancel the save" -msgstr "" +msgstr "इससे संचय रद्द हो जाएगा" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:814 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:833 msgid "Successfully switched groups" -msgstr "" +msgstr "सफलतापूर्वक स्विच किये गए समूह " #: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1320 -msgid "Remove this tag" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1408 msgid "already exist. Please choose another name" -msgstr "" +msgstr "पहले से ही मौजूद। कृपया दूसरा नाम चुनें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1414 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1326 msgid "Name cannot include " -msgstr "" +msgstr "नाम में शामिल नहीं कर सकते" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1420 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1332 msgid "Name cannot be empty." -msgstr "" +msgstr "नाम रिक्त नहीं हो सकता" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1437 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1355 msgid "Please fill compulsory metadata fields(marked with a *)" msgstr "कृपया अनिवार्य मेडाडेटा क्षेत्र भरें (* से चिन्हित करें)" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1448 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:1366 msgid "Please fill compulsory fields(marked with a *)" msgstr "कृपया अनिवार्य क्षेत्र भरें(* से चिन्हित करें)" #: gnowsys_ndf/ndf/templates/ndf/node_search_base.html:7 msgid "Please enter a keyword.. " -msgstr "कृपया संकेतशब्द (keyword) भरें" +msgstr "कृपया संकेतशब्द (बीज शब्द) भरें" + +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:28 +msgid "More" +msgstr "अधिक" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:78 #: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:12 @@ -2899,7 +4806,7 @@ msgstr "कृपया संकेतशब्द (keyword) भरें" #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:12 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:99 msgid "Editing" -msgstr "%(title_var)s: %(node_name)s को संपादित करें" +msgstr "संपादित करें" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:80 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:101 @@ -2909,7 +4816,7 @@ msgstr "पंजीकरण" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:242 #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:264 msgid "Qualification" -msgstr "अर्हता" +msgstr "योग्यता" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:243 #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:265 @@ -2920,11 +4827,11 @@ msgstr "क्रिया" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:248 #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:270 msgid "Please set qualification text!" -msgstr "Please set qualification text!" +msgstr "कृपया योग्यता सेट करें!" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:301 msgid "Demo requirement text" -msgstr "Demo requirement text" +msgstr "डेमो के लिए आवश्यक टेक्स्ट" #: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:618 #: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:281 @@ -2937,7 +4844,7 @@ msgstr "पंजीकरण" #: gnowsys_ndf/ndf/templates/ndf/online.html:16 msgid "

Meeting

" -msgstr "

उपयोगकर्ता चुनें

" +msgstr "

Meeting

" #: gnowsys_ndf/ndf/templates/ndf/online.html:32 msgid "  Start" @@ -2945,7 +4852,7 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/online.html:46 msgid "Last Seen" -msgstr "Last Seen" +msgstr "अंतिम बार देखा गया" #: gnowsys_ndf/ndf/templates/ndf/online.html:47 msgid "Online" @@ -2954,6 +4861,7 @@ msgstr "ऑनलाइन" #: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:14 #: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:14 #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:14 +#, fuzzy msgid "Register a " msgstr "पंजीकरण" @@ -3008,19 +4916,15 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:11 msgid "Pages Introduction" -msgstr "निर्देश" +msgstr "पृष्ठ निर्देश" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:12 msgid "Working with Pages" -msgstr "" +msgstr "पृष्ठ के साथ कार्य " #: gnowsys_ndf/ndf/templates/ndf/page_list.html:13 msgid "Page types" -msgstr "पृष्ठ" - -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:19 -msgid "Pages" -msgstr "पृष्ठ" +msgstr "पृष्ठ प्रकार " #: gnowsys_ndf/ndf/templates/ndf/page_list.html:25 msgid "" @@ -3043,46 +4947,38 @@ msgstr "" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:36 msgid "Please Login to create your shelf" -msgstr "" +msgstr "अपना शेल्फ बनाने के लिए कृपया लॉगिन करें" -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:74 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:73 #: gnowsys_ndf/ndf/templates/ndf/term.html:26 msgid "Visit" msgstr "दृश्यता" -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:76 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:75 msgid "All Pages" msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:135 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 msgid "matched your search criteria!!!" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:199 -msgid "" -" This group doesn't have any pages. Be the first to create a Page!" -msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" - -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:237 -msgid "Page Details" -msgstr "विवरण" +msgstr "आपके खोज मानदंडों से मेल खाता है !!!" -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:246 -msgid "Under Moderation" -msgstr "अंडरलाईन मोडरेशन ग्रुप" - -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:264 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:185 msgid " This group doesn't have any collections." msgstr "इस समूह में कोई संग्रह नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:42 +#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:64 msgid "There are no" msgstr "अभी तक नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:42 +#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:64 msgid "created yet." msgstr "अभी तक सृजन" +#: gnowsys_ndf/ndf/templates/ndf/partner_showcase.html:4 +#: gnowsys_ndf/ndf/templates/ndf/repository.html:74 +msgid "Partner Showcase" +msgstr "पार्टनर शोकेस" + #: gnowsys_ndf/ndf/templates/ndf/person_details.html:51 msgid "Graph " msgstr "ग्राफ" @@ -3107,93 +5003,49 @@ msgstr "स्थान" msgid "Discuss " msgstr "परिचर्चा" -#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:15 -msgid "Add Page" -msgstr "पृष्ठ जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:5 -msgid "Quiz Editor" -msgstr "प्रश्नोत्तरी संपादक" - -#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:7 -msgid "" -"

A Quiz is a sequenced collection of quiz " -"items. A quiz-item can be any of the three types: short " -"response, single-choice and multiple-choice. submit response and match the following types will be " -"implemented very soon.

\n" -"

You can build a quiz in two ways:\n" -"

    \n" -"\t
  1. By editing, Quiz node (via collection-list).
  2. \n" -"\t
  3. By using 'Quiz-Item' button corresponding to the Quiz.
  4. \n" -"

\n" -msgstr "" -"

\n" -" एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम " -"तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और " -"मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" -"

\n" -"

आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" -"

    \n" -"
  1. संपादन करके, प्रश्नोत्तरी नोड (संग्रह की सूची के माध्यम से).
  2. \n" -"
  3. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए इसी.
  4. \n" -"

\n" +#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:11 +msgid "All Events" +msgstr "इवेंटस जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:18 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:54 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:38 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 -msgid "+ Add" -msgstr "+जोड़ें" +#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:15 +msgid "Add Page" +msgstr "पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:20 -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:67 -msgid "Item" -msgstr "वस्तु" +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:50 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:47 +#, fuzzy +msgid "Questions" +msgstr "प्रश्न" -#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:7 -msgid "" -"

\n" -" A Quiz is a sequenced collection of quiz items. A quiz-item " -"can be any of the three types: short response, single-choice and multiple-choice. submit response " -"and match the following types will be implemented very soon.\n" -"

\n" -"

You can build a quiz in two ways:\n" -"

    \n" -"
  1. By editing, Quiz node (via collection-list).
  2. \n" -"
  3. By using 'Quiz-Item' button corresponding to the Quiz.
  4. \n" -"

\n" -msgstr "" -"

\n" -" एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम " -"तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और " -"मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" -"

\n" -"

आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" -"

    \n" -"
  1. संपादन करके, प्रश्नोत्तरी नोड (संग्रह की सूची के माध्यम से).
  2. \n" -"
  3. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए इसी.
  4. \n" -"

\n" +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:68 +msgid "Currently there is no Quiz." +msgstr "वर्तमान में कोई प्रश्नोत्तरी नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:20 -msgid "Quiz " -msgstr "प्रश्नोत्तरी" +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:98 +#, fuzzy +msgid "Preview" +msgstr "अवलोकन" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:37 -msgid "Quiz-Item Editor" -msgstr "प्रश्नोत्तरी प्रश्न संपादक" +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:100 +#, fuzzy +msgid "Created by: " +msgstr "सृजक" + +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:108 +msgid "Currently there is no Question." +msgstr "वर्तमान में कोई प्रश्नोत्तरी नहीं है" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:5 +msgid "Quiz Editor" +msgstr "प्रश्नोत्तरी संपादक" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:40 +#: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:7 msgid "" -"

A Quiz is a sequenced collection of " -"quiz items. A quiz-item can be any of the three types: " -"short response, single-choice and " -"multiple-choice. submit response and match " -"the following types will be implemented very soon.

\n" +"

A Quiz is a sequenced collection of quiz " +"items. A quiz-item can be any of the three types: short " +"response, single-choice and multiple-choice. submit response and match the following types will be " +"implemented very soon.

\n" "

You can build a quiz in two ways:\n" "

    \n" "\t
  1. By editing, Quiz node (via collection-list).
  2. \n" @@ -3209,30 +5061,111 @@ msgstr "" "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" "

      \n" "
    1. संपादन करके, प्रश्नोत्तरी नोड (संग्रह की सूची के माध्यम से).
    2. \n" -"
    3. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए इसी.
    4. \n" +"
    5. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए .
    6. \n" "

    \n" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:52 -msgid "+ Add Quiz" -msgstr "+ जोड़ें प्रश्नोत्तरी" +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:57 +#, fuzzy +msgid "Description :" +msgstr "विवरणः" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:82 -msgid "Quiz Item" -msgstr "प्रश्नोत्तरी प्रश्न" +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:66 +#, fuzzy +msgid "Tags :" +msgstr "टैग्स" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:72 +#, fuzzy +msgid "No tags have been added yet!" +msgstr "कोई टैग जोड़ा नहीं गया है" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:88 +#, fuzzy +msgid "Sr. No " +msgstr "क्र. सं. #" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:85 -msgid "Type of Quiz" -msgstr "प्रश्नोत्तरी के प्रकार" +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:89 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:166 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:88 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:163 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:320 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:13 +msgid "Name" +msgstr "नाम" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:111 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:90 #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:53 msgid "Question" msgstr "प्रश्न" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:120 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:91 +#, fuzzy +msgid "Type" +msgstr "प्रकार" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:92 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:75 msgid "Options" msgstr "विकल्प" +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:111 +msgid "Not Applicable" +msgstr "लागू नहीं है" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:131 +#, fuzzy +msgid "No Questions have been added yet!" +msgstr "अभी तक कोई प्रश्न जोड़ा नहीं गया है" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:49 +#, fuzzy +msgid "Select Question Type" +msgstr "संग्रह चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:65 +#, fuzzy +msgid "Enter Question" +msgstr "प्रश्न" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:119 +#, fuzzy +msgid "Correct Answer" +msgstr "उत्तर" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:156 +msgid "Show Correct Answer " +msgstr "सही उत्तर दिखाएं" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:170 +msgid "Check Answer " +msgstr "उत्तर जांचें" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:184 +msgid "Problem Weight " +msgstr "समस्या भार" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:195 +msgid "Maximum Attempts " +msgstr "अधिकतम प्रयास" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:210 +msgid "Add properties to the discussion feature " +msgstr "विचार-विमर्श भाग में विशेषताए सम्मलित करें " + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:216 +#, fuzzy +msgid "Release Option " +msgstr "रिलीज विकल्प" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:232 +msgid "Interaction start date " +msgstr "इंटरेक्शन आरंभ करने की तिथि" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:244 +#, fuzzy +msgid "Interaction close date " +msgstr "इंटरेक्शन अंतिम तिथि" + #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 msgid "is a sequenced collection of" msgstr "एक क्रमबद्ध संग्रह है" @@ -3275,7 +5208,16 @@ msgstr "संपादन द्वारा, प्रश्नोत्तर #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:31 msgid "By using 'Quiz-Item' button corresponding to the Quiz." -msgstr "प्रश्नोत्तरी प्रश्न बटन का उपयोग करके प्रश्नोत्तरी की" +msgstr "प्रश्नोत्तरी प्रश्न बटन का उपयोग करके प्रश्नोत्तरी का जवाब दें" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:38 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 +msgid "+ Add" +msgstr "+जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 +msgid "Item" +msgstr "वस्तु" #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:55 msgid "Edit this Question" @@ -3286,6 +5228,7 @@ msgid "posted on" msgstr "भेजा गया" #: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:59 +#, fuzzy msgid "by " msgstr "द्वारा" @@ -3301,43 +5244,46 @@ msgstr "अंतिम तिथिः" msgid "Answer" msgstr "उत्तर" -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:9 -msgid "About Quiz/QuizItem" -msgstr "प्रश्नोत्तरी के बारे में/प्रश्नोत्तरी प्रश्न" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:24 +msgid "5" +msgstr "५" -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:23 -msgid "Quizzes" -msgstr "प्रश्नोत्तरी" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:26 +msgid "4" +msgstr "४" -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:125 -msgid "This group doesn't have any quiz. Be the first to create a Quiz!" -msgstr "" -"इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:28 +msgid "3" +msgstr "३" -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:137 -msgid "Quiz Items" -msgstr "प्रश्नोत्तरी प्रश्न" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:30 +msgid "2" +msgstr "२" -#: gnowsys_ndf/ndf/templates/ndf/quiz_list.html:150 -msgid "" -"This group doesn't have any quiz-items. Be the first to create a Quiz-Item!" -msgstr "" -"इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति " -"हो सकते हैं" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:32 +msgid "1" +msgstr "१" -#: gnowsys_ndf/ndf/templates/ndf/rating.html:29 -#: gnowsys_ndf/ndf/templates/ndf/rating.html:79 -msgid " by " -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:34 +msgid "0" +msgstr "०" -#: gnowsys_ndf/ndf/templates/ndf/rating.html:31 -msgid "Not rated yet!" -msgstr "अभी तक सृजन" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:40 +msgid "Average Rating" +msgstr "औसत रेटिंग" -#: gnowsys_ndf/ndf/templates/ndf/rating.html:98 -msgid "Please login to rate this resource" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/rating.html:40 +#, fuzzy +msgid "No. of Users rated" +msgstr "पाठ्यक्रम संरचना जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/rating.html:41 +msgid "Avg" +msgstr "औसत" + +#: gnowsys_ndf/ndf/templates/ndf/rating.html:41 +msgid " by " +msgstr "द्वारा" #: gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:3 msgid "List Of Members. " @@ -3347,10 +5293,6 @@ msgstr "सदस्यों की सूची" msgid "For the course: " msgstr "पाठ्यक्रम के लिए:" -#: gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:13 -msgid "Users" -msgstr "उपयोगकर्ता" - #: gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:22 msgid "Remove" msgstr "हटाएँ" @@ -3375,21 +5317,63 @@ msgstr "कड़ी नाम" msgid "Please enter description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/repository.html:76 -msgid "Digital" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/repository.html:20 +msgid "Digital resource grouped in multiple ways" +msgstr "डिजि़टल संसाधन बहु-माध्यम समूहों में उपलब्ध हैं" -#: gnowsys_ndf/ndf/templates/ndf/repository.html:76 -msgid "resources" -msgstr "संसाधन" +#: gnowsys_ndf/ndf/templates/ndf/repository.html:44 +msgid "eLibrary" +msgstr "ई-पुस्तकालय" -#: gnowsys_ndf/ndf/templates/ndf/repository.html:76 -msgid "grouped in multiple ways" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/repository.html:46 +msgid "Themes" +msgstr "प्रसंग" -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:352 -msgid "eCourse" -msgstr "पाठ्यक्रम" +#: gnowsys_ndf/ndf/templates/ndf/repository.html:48 +msgid "eCourses" +msgstr "ई-पाठ्यक्रम" + +#: gnowsys_ndf/ndf/templates/ndf/repository.html:77 +msgid "Contributions from institutions and individuals" +msgstr "व्यक्तिगत तथा संस्थाओं से योगदान" + +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:75 +msgid "Resource Type" +msgstr "पाठ्यक्रम के प्रकार" + +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:154 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:195 +msgid "Full screen view" +msgstr "पूर्ण स्क्रीन दृश्य" + +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:274 +#, fuzzy +msgid "Event duration" +msgstr "नामांकन अवधि" + +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:275 +#, fuzzy +msgid "Fromw" +msgstr "से" + +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:278 +#, fuzzy +msgid "Enrollment duration" +msgstr "नामांकन अवधि" + +#: gnowsys_ndf/ndf/templates/ndf/scrolldata.html:36 +#, fuzzy +msgid "commented" +msgstr "टिप्पणी" + +#: gnowsys_ndf/ndf/templates/ndf/scrolldata.html:42 +msgid " on " +msgstr "पर" + +#: gnowsys_ndf/ndf/templates/ndf/scrolldata.html:49 +#, fuzzy +msgid "uploaded" +msgstr "फ़ाइल अपलोडेड" #: gnowsys_ndf/ndf/templates/ndf/shelf.html:4 msgid "Shelf" @@ -3401,15 +5385,15 @@ msgstr "टैग जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:164 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:239 -#, fuzzy, python-format +#, python-format msgid " %(label_val)s (Max. Size Limit 40kb) " -msgstr "%(label_val)s (Max. Size Limit 40kb)" +msgstr "%(label_val)s (अधिकतम आकार सीमा 40kb)" #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:177 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:252 -#, fuzzy, python-format +#, python-format msgid " %(label_val)s (Max. Size Limit 200kb) " -msgstr "%(label_val)s (Max. Size Limit 200kb)" +msgstr "%(label_val)s (अधिकतम आकार सीमा 200kb)" #: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:365 msgid "Passing Year" @@ -3480,83 +5464,71 @@ msgstr "फिल्टर चुनें" #: gnowsys_ndf/ndf/templates/ndf/student_list.html:650 msgid " - - - Select University - - - " -msgstr "संस्था चुनें" +msgstr "विश्वविद्यालय चुनें" #: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:124 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:477 msgid "University" -msgstr "संस्था" - -#: gnowsys_ndf/ndf/templates/ndf/tag_browser.html:7 -msgid "" -"Tag is like a keyword or category label.

    Tags helps you to " -"find photos, videos, files and pages which have something in common.

    " -msgstr "" -"टैग कूटसंकेत के समान है.

    टैग का प्रयोग करके खोजा जा सकता है.

    " +msgstr "विश्वविद्यालय" #: gnowsys_ndf/ndf/templates/ndf/task.html:14 msgid "Tasks" msgstr "कार्य" -#: gnowsys_ndf/ndf/templates/ndf/task.html:41 +#: gnowsys_ndf/ndf/templates/ndf/task.html:31 +msgid "New " +msgstr "नया" + +#: gnowsys_ndf/ndf/templates/ndf/task.html:43 msgid "All Task" msgstr "कार्य" -#: gnowsys_ndf/ndf/templates/ndf/task.html:42 +#: gnowsys_ndf/ndf/templates/ndf/task.html:44 msgid "Completed" -msgstr "तुलना करें" +msgstr "पूरा कर लिया है" -#: gnowsys_ndf/ndf/templates/ndf/task.html:43 +#: gnowsys_ndf/ndf/templates/ndf/task.html:45 msgid "Created by me" msgstr "सृजक" -#: gnowsys_ndf/ndf/templates/ndf/task.html:44 +#: gnowsys_ndf/ndf/templates/ndf/task.html:46 msgid "Assigned to me" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/task.html:45 +#: gnowsys_ndf/ndf/templates/ndf/task.html:47 msgid "pending" msgstr "अपलोड हो रहा है" -#: gnowsys_ndf/ndf/templates/ndf/task.html:46 +#: gnowsys_ndf/ndf/templates/ndf/task.html:48 msgid "Status Wise" msgstr "उपयोगकर्ता की स्थिति" -#: gnowsys_ndf/ndf/templates/ndf/task.html:63 -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 -msgid "In Progress" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/task.html:64 +#: gnowsys_ndf/ndf/templates/ndf/task.html:66 #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:189 msgid "Resolved" -msgstr "" +msgstr "हल" -#: gnowsys_ndf/ndf/templates/ndf/task.html:65 -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 -msgid "Feedback" -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/task.html:68 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:191 +msgid "Closed" +msgstr "संवृत" -#: gnowsys_ndf/ndf/templates/ndf/task.html:67 +#: gnowsys_ndf/ndf/templates/ndf/task.html:69 #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:192 msgid "Rejected" -msgstr "" +msgstr "अस्वीकृत" -#: gnowsys_ndf/ndf/templates/ndf/task.html:330 +#: gnowsys_ndf/ndf/templates/ndf/task.html:332 #, python-format msgid "" "Search Results: No %(title|lower)s" "%(TASK_inst.count|pluralize)s matched your search criteria " -msgstr "" +msgstr "आपके खोज मापदंड से मेल खाती है %(title|lower)s%(TASK_inst.count|pluralize)s" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:104 msgid "Task Editor" msgstr "कार्य संपादक" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 -msgid "Please wait till file is Uploading..." -msgstr "" - #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:114 msgid "Assignees" msgstr "कार्य प्राप्तकर्ता:" @@ -3582,30 +5554,14 @@ msgstr "%(alt)s" msgid "Please select Task Type." msgstr "कृपया कार्य प्रकार चुनें" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:166 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:88 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:163 -msgid "Name" -msgstr "नाम" - -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:267 -msgid "Enter name" -msgstr "बैच का नाम अंकित करें" - #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:168 msgid "Please give your Task a descriptive name" -msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" +msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 msgid "Parent" msgstr "मूल कार्यः" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:23 -msgid "Task" -msgstr "कार्य" - #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:185 msgid "Status" msgstr "स्थिति:" @@ -3618,25 +5574,13 @@ msgstr "आरंभ तिथिः" msgid "Priority" msgstr "प्राथमिकता:" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 -msgid "Low" -msgstr "अब" - #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:210 msgid "Normal" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 -msgid "High" -msgstr "" +msgstr "सामान्य" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:212 msgid "Urgent" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 -msgid "Immediate" -msgstr "" +msgstr "अति आवश्यक" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:218 msgid "Due date" @@ -3644,24 +5588,16 @@ msgstr "नियत तिथि:" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:227 msgid "Estimated time" -msgstr "" +msgstr "अनुमानित समय" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:228 msgid "Enter Hours" -msgstr "" +msgstr "समय दर्ज करें" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:229 msgid "Please give Time in" msgstr "कृपया शीर्षक दें" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 -msgid "Single Assignee" -msgstr "कार्य प्राप्तकर्ता:" - -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 -msgid "Multiple Assignee" -msgstr "कार्य प्राप्तकर्ता:" - #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:238 msgid "Group Assignees" msgstr "कार्य प्राप्तकर्ता:" @@ -3672,166 +5608,59 @@ msgstr "कार्य प्राप्तकर्ता को चुने #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:254 msgid "Assignees Assigned for task" -msgstr "" +msgstr "कार्य के लिए नियत लोग" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:277 msgid "Describe" msgstr "विवरण दें" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:357 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:358 msgid "Assignees not selected" -msgstr "" +msgstr "कार्य के लिए कार्यकर्त्ता नियत नहीं हैं" -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:419 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:420 msgid "Click to remove" -msgstr "देखने के लिए क्ल्कि करें" - -#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:643 -msgid "No Assignees Assigned" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:38 -msgid "New Task" -msgstr "नया कार्य" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:63 -msgid "Parent task" -msgstr "मूल कार्यः" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:77 -msgid "Task type:" -msgstr "कार्य प्रकार:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:88 -msgid "Status:" -msgstr "स्थिति:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:102 -msgid "Start Date:" -msgstr "आरंभ तिथिः" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:113 -msgid "Priority:" -msgstr "प्राथमिकता:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:127 -msgid "Due Date:" -msgstr "नियत तिथि:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:138 -msgid "Assignee:" -msgstr "कार्य प्राप्तकर्ता:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:152 -msgid "Sub Task:" -msgstr "उप-कार्य:" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:199 -msgid "Attachment(s):" -msgstr "संलगन" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:217 -msgid "History:" -msgstr "इतिहासः" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:247 -msgid "Edited" -msgstr "संपादित करें" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:249 -msgid "Versions" -msgstr "सत्र" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:265 -msgid "Editing Name" -msgstr "नाम संपादन" - -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:284 -msgid "×" -msgstr "×" +msgstr "हटाने के लिए क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:297 -msgid "Nothing is Changed" -msgstr "कुछ भी नहीं मिला" +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:644 +msgid "No Assignees Assigned" +msgstr "कार्य के लिए कार्यकर्त्ता नियत नहीं हैं " + +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:185 +#, fuzzy +msgid "sEdit" +msgstr "संपादित करें" #: gnowsys_ndf/ndf/templates/ndf/task_list_view.html:38 msgid "Group Task" -msgstr "समूह" +msgstr "समूह कार्य" + +#: gnowsys_ndf/ndf/templates/ndf/templates_list.html:25 +#, fuzzy +msgid "Select Template" +msgstr "टेमपलेट चुनें" #: gnowsys_ndf/ndf/templates/ndf/term.html:11 msgid "Topics" -msgstr "प्रकरण" +msgstr "टॉपिक" #: gnowsys_ndf/ndf/templates/ndf/term.html:59 msgid "Show Topics" -msgstr "प्रकरण दिखाएँ" +msgstr "टॉपिक दिखाएँ" #: gnowsys_ndf/ndf/templates/ndf/term_create_edit.html:6 msgid "Topic Editor" -msgstr "प्रकरण संपादक" +msgstr "टॉपिक संपादक" #: gnowsys_ndf/ndf/templates/ndf/terms_list.html:21 msgid "" " This group doesn't have any Terms. Be the first to create a Term!" msgstr "इस समूह की कोई शर्त नहीं है। आप शर्त बनाने वाले प्रथम व्यक्ति हो सकते हैं" -#: gnowsys_ndf/ndf/templates/ndf/theme.html:173 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:318 -msgid "" -"Are you sure you want to delete? All of the related items for the following " -"themes also will be deleted:" -msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" - -#: gnowsys_ndf/ndf/templates/ndf/theme.html:222 -#: gnowsys_ndf/ndf/templates/ndf/theme.html:226 -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:151 -msgid "Theme" -msgstr "प्रसंग" - -#: gnowsys_ndf/ndf/templates/ndf/theme.html:226 -msgid "Tree" -msgstr "ट्री" - -#: gnowsys_ndf/ndf/templates/ndf/theme.html:230 -msgid "Open" -msgstr "" - -#: gnowsys_ndf/ndf/templates/ndf/theme.html:231 -msgid "Close" -msgstr "" - #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:43 msgid "Create a new " msgstr "एक नया बनायें" -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 -msgid "View: " -msgstr "देखें:" - -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 -msgid " Name " -msgstr "नाम" - -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 -msgid "Privacy" -msgstr "गोपनीयता" - -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 -msgid "Theme Name" -msgstr "प्रसंग नाम" - -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 -msgid "+ Add Topic" -msgstr "प्रकरण जोड़ें" - -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 -msgid "Topic Name" -msgstr "प्रकरण नाम" - #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:261 #: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:210 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:122 @@ -3842,7 +5671,7 @@ msgstr "टैग" msgid "Other Threads" msgstr "अन्य विवरण" -#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:94 +#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:95 msgid "Edit now" msgstr "संपादित करें" @@ -3870,19 +5699,13 @@ msgstr "वर्गीकरण करें" msgid "Add or edit Teaches: " msgstr "टीचेस् जोड़ें या संपादित करें:*" -#: gnowsys_ndf/ndf/templates/ndf/topic_resources_listing.html:31 -#: gnowsys_ndf/ndf/templates/ndf/topic_resources_listing.html:76 -#: gnowsys_ndf/ndf/templates/ndf/topic_resources_listing.html:102 -#: gnowsys_ndf/ndf/templates/ndf/topic_resources_listing.html:126 -msgid "In other languages" -msgstr "अन्य भाषा में" - #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:440 msgid "Course Enrollment Details" msgstr "पाठ्यक्रम नामांकन विवरण" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:459 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:524 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 msgid "Course" msgstr "पाठ्यक्रम" @@ -3896,15 +5719,15 @@ msgstr "कृपया पाठ्यक्रम चुनें" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:485 msgid "Please select university" -msgstr "कृपया संस्था चुनें" +msgstr "कृपया कॉलेज चुनें" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:504 msgid "- - - Select College - - -" -msgstr "संस्था चुनें" +msgstr "कॉलेज चुनें" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:507 msgid "Please select college" -msgstr "कृपया संस्था चुनें" +msgstr "कृपया कॉलेज चुनें" #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:562 msgid "Course Requirements" @@ -3926,6 +5749,22 @@ msgstr "अनिवार्य" msgid "Qualifications" msgstr "अर्हता" +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:28 +msgid "Other Translations:" +msgstr "अन्य अनुवाद:" + +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:36 +msgid "Original Resource:" +msgstr "मूल संसाधन:" + +#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:20 +msgid "Translations:" +msgstr "अनुवाद:" + +#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:22 +msgid "Translation Languages" +msgstr "अनुवाद की भाषाएँ" + #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:67 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:100 msgid "Page Name" @@ -3935,6 +5774,20 @@ msgstr "पृष्ठ नाम" msgid "Tags: " msgstr "टैग्स" +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 +#, fuzzy +msgid "Please give your page a descriptive name" +msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" + +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 +#, fuzzy +msgid "It's helpful for others and for yourself" +msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" + #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:157 msgid "Theme Item" msgstr "प्रसंग वस्तु" @@ -3953,72 +5806,200 @@ msgstr "कोई समूह नहीं है" #: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:213 msgid "Show More.." -msgstr "" +msgstr "और दिखाएँ" -#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:262 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:263 msgid "No Assinged Task" msgstr "कोई कार्य नहीं दिया गया है" -#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:284 -msgid "Dashboard" -msgstr "डेशबोर्ड" - -#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:312 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:313 msgid "image is already selected, choose different image !!!" msgstr "यह चित्र पहले से चुना गया है कृपया अन्य चित्र चुनें" -#: gnowsys_ndf/ndf/templates/ndf/upload_pic_widget.html:69 -msgid "Your profile photo is uploading. Please wait.." -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:58 +msgid " Edit Settings" +msgstr "सेटिंग्स बदलें" -#: gnowsys_ndf/ndf/templates/ndf/upload_pic_widget.html:211 -msgid "Please wait while your profile photo is updating.." -msgstr "" +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:106 +msgid "View related contents" +msgstr "संबंधित सामग्री देखें" + +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:116 +msgid "Related Help Topic" +msgstr "संबंधित सहायता विषय" + +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:119 +msgid "Go back to activity" +msgstr "गतिविधि पर वापस जाएं" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 +#, fuzzy +msgid "Add Section" +msgstr "स्थान जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 +#, fuzzy +msgid "Add Lesson" +msgstr "एक नया जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:303 +#, fuzzy +msgid "Language Selection" +msgstr "भाषा" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:325 +msgid "Lesson Name" +msgstr "पाठ का नाम Last Seen" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 +msgid "Lesson Description" +msgstr "पाठ विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 +msgid "Save Section" +msgstr "अनुभाग सहेजें" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 +msgid "Save Lesson" +msgstr "पाठ सहेजें" + +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:360 +msgid "Choose Activity" +msgstr "गतिविधि चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:94 +msgid "Select JHAPP Type" +msgstr "जेएचएपीपी प्रकार चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:204 +msgid "Total Questions" +msgstr "कुल प्रश्न" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:213 +msgid "Incorrect answers" +msgstr "गलत उत्तर" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:217 +msgid "Not Attempted" +msgstr "प्रयास नहीं किया" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:229 +#, fuzzy +msgid "Note Making" +msgstr "नोट मेकिंग" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:232 +msgid "Notes Written" +msgstr "लिखित नोट्स" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:235 +msgid "Views Gained" +msgstr "प्राप्त दृश्य" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:238 +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:306 +msgid "Comments recieved" +msgstr "प्राप्त टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:241 +msgid "Visits on Other Notes" +msgstr "अन्य नोट्स पर विज़िट" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:244 +msgid "Comments on other notes" +msgstr "अन्य नोट्स पर टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:247 +msgid "Avg. Rating Awarded" +msgstr "अर्जित औसत रेटिंग्स" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:23 +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:262 +#: gnowsys_ndf/ndf/templates/ndf/user_interactions.html:5 +#, fuzzy +msgid "Interactions" +msgstr "इंटरैक्टिवस" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:265 +msgid "Comments By me" +msgstr "मेरे द्वारा टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:268 +msgid "Comments for me" +msgstr "मेरे लिए टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:286 +msgid "Gallery uploads" +msgstr "गैलरी अपलोड" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:289 +#, fuzzy +msgid "Files Uploaded" +msgstr "फ़ाइल अपलोडेड" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:291 +msgid "Avg. Rating awarded" +msgstr "अर्जित औसत रेटिंग्स" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:298 +msgid "Comments on other Files" +msgstr "अन्य फाइलों पर टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:302 +msgid "Comments by unique users" +msgstr "अद्वितीय उपयोगकर्ताओं की टिप्पणियाँ" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:304 +msgid "Visits gained" +msgstr "विज़िट प्राप्त हुए" + +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:308 +msgid "Visits on Other Files" +msgstr "अन्य फाइलों पर विज़िट" + +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:26 msgid "First Name" -msgstr "फ़ाइल नाम" +msgstr "प्रथम नाम" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:38 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:42 msgid "Last Name" -msgstr "Last Seen" +msgstr "उपनाम" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:48 -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:156 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:54 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:171 msgid "Language proficiency" -msgstr "" +msgstr "भाषा प्रवीणता" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:62 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:70 msgid "Subject Proficiency" -msgstr "" +msgstr "विषय प्रवीणता" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:72 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:82 msgid "Joined on" -msgstr "भेजा गया" +msgstr "शामिल हुए" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:86 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:98 msgid " Groups" msgstr "समूह" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:92 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:106 msgid "Files uploaded" msgstr "फ़ाइल अपलोडेड" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:102 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:117 msgid "Pages created" msgstr "सृजित पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:135 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:150 msgid "First name" msgstr "फोरम नाम" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:146 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:161 msgid "Last name" -msgstr "Last Seen" +msgstr "उपनाम" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:176 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:191 msgid "Subject proficiency" -msgstr "" +msgstr "विषय प्रवीणता" #: gnowsys_ndf/ndf/templates/ndf/userpreferences.html:3 msgid "Preferences" @@ -4044,31 +6025,19 @@ msgstr "ऑफ" msgid "Select Groups:" msgstr "चयनित समूह:" +#: gnowsys_ndf/ndf/templates/ndf/users_mgmt.html:6 +msgid "User Management" +msgstr "उपयोगकर्ता प्रबंधन" + #: gnowsys_ndf/ndf/templates/ndf/version_page.html:37 #: gnowsys_ndf/ndf/templates/ndf/version_page.html:52 msgid "Compare" msgstr "तुलना करें" -#: gnowsys_ndf/ndf/templates/ndf/version_page.html:39 -msgid "History" -msgstr "इतिहास" - #: gnowsys_ndf/ndf/templates/ndf/version_page.html:64 msgid "with" msgstr "सहित" -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:63 -msgid "previous" -msgstr "पिछला" - -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:64 -msgid "more details" -msgstr "अधिक जानकारी" - -#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:65 -msgid "next" -msgstr "आगे" - #: gnowsys_ndf/ndf/templates/ndf/video_detail.html:8 msgid "Media" msgstr "मीडिया" @@ -4141,11 +6110,18 @@ msgid "" "\"Cities\" or something similar and not be a data value like \"Mumbai\".\n" "\t\t
    \n" msgstr "" +"
  3. वर्तमान में ग्राफिंग एप्लिकेशन केवल 2 कॉलम के साथ सीएसवी फ़ाइलों का समर्थन करता है। " +"इसलिए, आपकी स्प्रेड शीट में केवल दो कॉलम होने चाहिए। \n" +"
  4. प्रत्येक कॉलम में पहली पंक्ति को कॉलम शीर्षक होना चाहिए और कोई भी डेटा मान नहीं " +"होना चाहिए। \n" +"
  5. उदाहरण के लिए - यदि आप शहर बनाम वर्षा प्लाट करना चाहते हैं, तो आपकी शीट में " +"पहली पंक्ति \"सिटी का नाम\" या \"शहर\" या ऐसा कुछ होना चाहिए न की \"मुंबई\" जैसी " +"कोई वैल्यू ।\n" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:165 msgid "" "Almost there! Just click on the button below to create the visualization." -msgstr "" +msgstr "लगभग हो गया! दृश्य बनाने के लिए बस नीचे दिए गए बटन पर क्लिक करें।" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:166 msgid "Create Graph!" @@ -4153,11 +6129,88 @@ msgstr "ग्राफ बनाएँ!" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:166 msgid "Awesome. I have it." -msgstr "" +msgstr "बहुत बढ़िया. मेरे पास है।" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:169 msgid "100" -msgstr "100" +msgstr "१००" + +#: gnowsys_ndf/ndf/templates/ndf/widget_admin_page.html:8 +#: gnowsys_ndf/ndf/templates/ndf/widget_help_page.html:8 +msgid "Select admin page(s) for this resource from following options:" +msgstr "निम्न विकल्पों से इस संसाधन के लिए व्यवस्थापक पृष्ठ का चयन करें:" + +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:7 +#, fuzzy +msgid "Select from the following: " +msgstr "निम्नलिखित से चयन करें:" + +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:8 +msgid "* Use Ctrl + Click to select multiple options" +msgstr "* एकाधिक विकल्पों का चयन करने के लिए Ctrl + क्लिक करें" + +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:10 +msgid "Selections: " +msgstr "चयनित:" + +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:13 +msgid "Remove from " +msgstr "हटाएँ" + +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:22 +#, fuzzy +msgid "Join Status:" +msgstr "स्थिति:" + +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:22 +#, fuzzy +msgid "Enrollment Status:" +msgstr "नामांकन विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 +msgid "Enrolled" +msgstr "नामांकित" + +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 +msgid "Enroll" +msgstr "नामांकन" + +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:20 +#, fuzzy +msgid "Do you want to enable Comments/Discussion on this Activity ? " +msgstr "" +"क्या आप विद्यार्थियों के लिए इस गतिविधि पर टिप्पणी / चर्चा को सक्षम करना चाहते हैं?" + +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:20 +#, fuzzy +msgid "Please enter Name" +msgstr "कृपया नाम भरें" + +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:26 +msgid "Display Name" +msgstr "प्रदर्शित होने वाला नाम" + +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:62 +msgid "Choose" +msgstr "चुनें" + +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:107 +msgid "Your profile photo is uploading. Please wait.." +msgstr "आपकी प्रोफ़ाइल फ़ोटो अपलोड हो रही है कृपया प्रतीक्षा करें.." + +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:262 +msgid "Please wait while your profile picture is updated.." +msgstr "कृपया प्रतीक्षा करें, प्रोफ़ाइल तस्वीर अपलोड हो रही है" + +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:109 +msgid "Tag already exists." +msgstr "टैग पहले से मौजूद है" + +#: gnowsys_ndf/ndf/templates/ndf/widget_user_search.html:14 +msgid "Search User by name : " +msgstr "नाम के आधार पर उपयोगकर्ता खोजें :" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:12 msgid "items found " @@ -4165,7 +6218,7 @@ msgstr "वस्तुएँ पाई गईं हैं" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:31 msgid "Sorry, no topics are available." -msgstr "क्षमा करें, प्रकरण उपलब्ध नहीं है" +msgstr "क्षमा करें, कोई विषय उपलब्ध नहीं हैं" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:58 #, python-format @@ -4177,6 +6230,8 @@ msgid "" "topic. The knowledge graph for that particular topic is also available on " "the same page.\n" msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:75 msgid "" @@ -4184,6 +6239,8 @@ msgid "" "topic. The knowledge graph for that particular topic is also available on " "the same page." msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:201 msgid "Wikipedia Page Link:" @@ -4225,6 +6282,10 @@ msgid "" "may apply. By using this site, you agree to the Terms of Use and Privacy " "Policy." msgstr "" +"मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध " +"है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। " +"अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता " +"नीति से सहमत हैं।" #: gnowsys_ndf/ndf/templates/notification/base.html:4 msgid "notices" @@ -4317,6 +6378,8 @@ msgid "" "Oops! It seems that your activation key is invalid. Please check the url or " "try to reset your password again. " msgstr "" +"ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना " +"पासवर्ड रीसेट करने का प्रयास करें।" #: gnowsys_ndf/ndf/templates/registration/activation_complete.html:13 msgid "Account successfully activated." @@ -4343,31 +6406,30 @@ msgstr "खाता पजीकृकरण" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:16 msgid "" -"You (or someone pretending to be you) have asked to register an account at " -"our site." -msgstr "" -"लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड रीसेट करें" +"You (or someone pretending to be you) have asked to register an account at: " +msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया है:" -#: gnowsys_ndf/ndf/templates/registration/activation_email.html:18 +#: gnowsys_ndf/ndf/templates/registration/activation_email.html:17 msgid "" "If this wasn't you, please ignore this email and your address will be " "removed from our records." msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" -#: gnowsys_ndf/ndf/templates/registration/activation_email.html:22 +#: gnowsys_ndf/ndf/templates/registration/activation_email.html:21 msgid "" "To activate this account, please click the following link within the next " "two days." msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" -#: gnowsys_ndf/ndf/templates/registration/activation_email.html:27 +#: gnowsys_ndf/ndf/templates/registration/activation_email.html:26 #: gnowsys_ndf/ndf/templates/registration/activation_email.txt:11 msgid "Sincerely" msgstr "भवदीय" -#: gnowsys_ndf/ndf/templates/registration/activation_email.html:28 -msgid "Management Team" -msgstr "प्रबंधन टीम" +#: gnowsys_ndf/ndf/templates/registration/activation_email.html:27 +#, python-format +msgid " \"%(site.name|capfirst)s Team\" " +msgstr "" #: gnowsys_ndf/ndf/templates/registration/activation_email.txt:5 msgid "" @@ -4390,30 +6452,52 @@ msgid "days" msgstr "दिन" #: gnowsys_ndf/ndf/templates/registration/activation_email.txt:12 -#: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:15 -msgid "Management" -msgstr "प्रबंधन" +msgid "Team" +msgstr "टीम" #: gnowsys_ndf/ndf/templates/registration/activation_email_subject.txt:3 msgid "Account registration for" msgstr "खाता पजीकृकरण" -#: gnowsys_ndf/ndf/templates/registration/login.html:28 +#: gnowsys_ndf/ndf/templates/registration/login.html:30 msgid "Log In" msgstr "लॉग-इन" -#: gnowsys_ndf/ndf/templates/registration/login.html:36 -msgid "Either your email or password is incorrect !!!" +#: gnowsys_ndf/ndf/templates/registration/login.html:37 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:39 +msgid "Either your email or password is incorrect !" msgstr "ईमेल अथवा पासवर्ड गलत है" -#: gnowsys_ndf/ndf/templates/registration/login.html:73 +#: gnowsys_ndf/ndf/templates/registration/login.html:80 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#, fuzzy +msgid "Recover your password" +msgstr "पासवर्ड भूल गए?" + +#: gnowsys_ndf/ndf/templates/registration/login.html:80 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 msgid "Forgot your password?" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:94 +#: gnowsys_ndf/ndf/templates/registration/login.html:103 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:111 +#, fuzzy +msgid "Click here to register" +msgstr "देखने के लिए क्ल्कि करें" + +#: gnowsys_ndf/ndf/templates/registration/login.html:104 msgid "Don't have an account? Register yourself now." msgstr "खाता नहीं है? कृपया पंजीकरण करें" +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:34 +msgid "LogIn" +msgstr "लॉग-इन " + +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:112 +#, fuzzy +msgid "Don't have an account?" +msgstr "खाता नहीं है? कृपया पंजीकरण करें" + #: gnowsys_ndf/ndf/templates/registration/logout.html:4 msgid "Logged out" msgstr "लॉग-आउट" @@ -4426,7 +6510,7 @@ msgstr "सफलतापूर्वक लॉग-आउट हो गया msgid "" "Thank you for visiting our website. Please return often to take advantage of " "this platform." -msgstr "" +msgstr "हमारी वेबसाइट देखने के लिए धन्यवाद। कृपया इस मंच का लाभ उठाने के लिए अक्सर लौटें।" #: gnowsys_ndf/ndf/templates/registration/password_change_done.html:7 msgid "Password successfully changed" @@ -4434,7 +6518,7 @@ msgstr "खाता सफलतापूर्वक सक्रिय हो #: gnowsys_ndf/ndf/templates/registration/password_change_form.html:26 msgid "Submit" -msgstr "" +msgstr "जमा करें" #: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:5 msgid "Password reset complete" @@ -4466,7 +6550,7 @@ msgstr "पासवर्ड में कम-से-कम 8 कैरेक #: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 #: gnowsys_ndf/ndf/templates/registration/registration_form.html:113 msgid "One uppercase letter, and" -msgstr "कम-से-कम एक अपरकेस अक्षर और" +msgstr "कम-से-कम एक अपरकेस अक्षर और" #: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 #: gnowsys_ndf/ndf/templates/registration/registration_form.html:114 @@ -4496,6 +6580,9 @@ msgid "" "that the email that you entered is correct and to check your junk or spam " "folder or filter if you do not receive this email." msgstr "" +"कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने " +"जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या " +"स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:4 msgid "Greetings " @@ -4505,17 +6592,19 @@ msgstr "अभिनंदन" msgid "" "You are receiving this email because you requested that your password be " "reset on" -msgstr "" +msgstr "आप यह ईमेल प्राप्त कर रहे हैं क्योंकि आपने अनुरोध किया है कि आपका पासवर्ड रीसेट हो" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:7 msgid "If you do not wish to reset your password, please ignore this message." -msgstr "" +msgstr "यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो कृपया इस संदेश को अनदेखा करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:9 msgid "" "To reset your password, please click the following link, or copy and paste " "it into your web browser:" msgstr "" +"अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में " +"कॉपी और पेस्ट करें:" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:12 msgid "Your username, in case you've forgotten:" @@ -4525,6 +6614,10 @@ msgstr "उपयोगकर्ता का नाम, यदि आप भू msgid "Best regards," msgstr "आदर सहित" +#: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:15 +msgid "Management" +msgstr "प्रबंधन" + #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 #: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 @@ -4539,7 +6632,9 @@ msgstr "पासवर्ड भूल गये हैं? चिंता न #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 #: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 -msgid "Password reset instructions will be sent to the email address associated with your account." +msgid "" +"Password reset instructions will be sent to the email address associated " +"with your account." msgstr "पासवर्ड रीसेट निर्देश अापके खाते से जुडे ईमेल पर भेजे जाएंगे।" #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:44 @@ -4584,7 +6679,7 @@ msgstr "खाता सफलतापूर्वक सृजित हो msgid "" "Please activate your account by clicking on the link provided in the email " "you will receive." -msgstr "" +msgstr "कृपया प्राप्त ईमेल में दिए गए लिंक पर क्लिक करके अपना खाता सक्रिय करें।" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:5 msgid "Register for an account" @@ -4604,11 +6699,11 @@ msgstr "व्यवसाय चुनें" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:157 msgid "Organization" -msgstr "संगठन" +msgstr "संस्था" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:172 msgid "I agree to the terms and conditions" -msgstr "" +msgstr "मैं नियमों और शर्तों से सहमत हूँ" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:185 msgid "Send activation email" @@ -4616,7 +6711,7 @@ msgstr "सक्रियता ईमेल भेजें" #: gnowsys_ndf/ndf/views/email_registration.py:26 msgid "User with same username exists. Please provide another username!" -msgstr "" +msgstr "दर्ज किये गए नाम से उपयोगकर्ता मौजूद है। कृपया एक अन्य नाम दर्ज करें!" #: gnowsys_ndf/ndf/views/email_registration.py:43 msgid "Email" @@ -4696,6 +6791,11 @@ msgid "" "To see other notices or change how you receive notifications, please go to " "%(default_http_protocol)s://%(current_site)s%(notices_url)s\n" msgstr "" +"आपको निम्नलिखित नोटिस प्राप्त हुआ है %(current_site)s:\n" +"\n" +" %(message)s\n" +"अन्य नोटिस देखने के लिए या आपको सूचनाएं कैसे प्राप्त होती हैं, इसका चुनाव करने के लिए यहाँ " +"जाएँ %(default_http_protocol)s://%(current_site)s%(notices_url)s\n" #: gnowsys_ndf/notification/templates/notification/full.html:1 #: gnowsys_ndf/notification/templates/notification/full.txt:1 @@ -4706,7 +6806,7 @@ msgid "%(notice)s" msgstr "सूचना" #: gnowsys_ndf/notification/templates/notification/notice_settings.html:15 -#, python-format +#, fuzzy, python-format msgid "" "\n" "

    \n" @@ -4715,224 +6815,451 @@ msgid "" "sent. Add one now.\n" "

    \n" " " -msgstr "" +msgstr "%(email_url)s आपके पास एक सत्यापित ईमेल नहीं है जिसमें सूचनाएं भेजी जा सकती हैं।" -msgid " Delete" -msgstr "मिटाएं" +#~ msgid " New Course" +#~ msgstr "नया कोर्स " -msgid "Graphs" -msgstr "ग्राफ" +#~ msgid " New Event" +#~ msgstr "नया इवेंट" -msgid "Group Analytics" -msgstr "समूह संस्था प्रकार" +#~ msgid "All eCourses" +#~ msgstr "सभी ई-कोर्स" -msgid "All {{title}}" -msgstr "सभी फाईल" +#~ msgid "All" +#~ msgstr "सभी" -msgid "Not Enrolled to Any Courses!" -msgstr "पाठ्यक्रमों कें छात्रों का नामांकन करें" +#~ msgid "My eCourses" +#~ msgstr "मेरे ई-कोर्सेस" -msgid " No Course Created!" -msgstr "पाठ्यक्रम संरचना जोड़ें" +#~ msgid "My Events" +#~ msgstr "मेरे इवेंटस" -msgid "Create a new partner" -msgstr "नया पार्टनर बनायें" +#~ msgid "APPS" +#~ msgstr "ऐप्स" -msgid "Filter based on" -msgstr "फिल्टर" +#~ msgid "Updates" +#~ msgstr "अद्यतन सूची" -msgid "Resource Type" -msgstr "पाठ्यक्रम के प्रकार" +#~ msgid "BACK" +#~ msgstr "पीछे" -msgid "Target Group" -msgstr "नया समूह" +#~ msgid "Recent News" +#~ msgstr "नवीनतम समाचार" -msgid "All" -msgstr "सभी" +#~ msgid "Mark as Raw Material" +#~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" -msgid "" -"\n" -"
    There are no %(grps_category)s created yet.Be the first to " -"create a %(grps_category)s!
    \n" -"\t" -msgstr "" -"\n" -"
    अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम व्यक्ति " -"हो सकते हैं
    " +#, fuzzy +#~ msgid " Options " +#~ msgstr "विकल्प" -msgid "Be the first to create a" -msgstr "सृजन करने वाले आप प्रथम हो" +#~ msgid "My Performance" +#~ msgstr "मेरा प्रदर्शन" -msgid " %(each_gapp.content|safe)s " -msgstr "विषय-वस्तुः" +#~ msgid "List Members" +#~ msgstr "सदस्यों की सूची" -msgid " Partner Resources " -msgstr "संसाधन" +#~ msgid "Sorry, No resources found with selected filters" +#~ msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" -msgid "Note Book" -msgstr "ई-पुस्तक" +#~ msgid "" +#~ "This group doesn't have any files. Be the first to upload a file!" +#~ msgstr "" +#~ "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" -msgid "Click here to view Group Analytics" -msgstr "देखने के लिए क्ल्कि करें" +#~ msgid "View Source Code" +#~ msgstr "सोर्स कोड देखें" -msgid "Click here to view My Analytics" -msgstr "देखने के लिए क्ल्कि करें" +#~ msgid "" +#~ "All material is licensed under a Creative Commons Attribution-Share Alike " +#~ "3.0 Unported License unless mentioned otherwise." +#~ msgstr "" +#~ "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत " +#~ "आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" -msgid "Announced Courses" -msgstr "घोषित पाठ्यक्रम" +#~ msgid "Contributor" +#~ msgstr "योगदानकर्ता" -msgid "" -"This group doesn't have any courses. Be the first to create a course!" -msgstr "" -"इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any forums. Be the first to create a forum!" +#~ msgstr "" +#~ "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" -msgid "You are not enrolled to any course yet." -msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" +#~ msgid "Top Contributors" +#~ msgstr "सर्वोच्च योगदानकर्ता" -msgid "" -"This group doesn't have any Announced courses. Be the first to " -"Announce a course!" -msgstr "" -"इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "Forum:" +#~ msgstr "फोरम" -msgid "This group doesn't have any Announced courses." -msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" +#~ msgid " Group members " +#~ msgstr "समूह सदस्य" -msgid "Announced Course for :" -msgstr "घोषित पाठ्यक्रम" +#~ msgid "Create a New Group" +#~ msgstr "नया समूह बनाएं" -msgid "delete" -msgstr "मिटाएं" +#~ msgid "See more groups..." +#~ msgstr "और अधिक समूहों को देखें......" -msgid "reply" -msgstr "जवाब दें" +#~ msgid "An initiative of Government of India" +#~ msgstr "भारत सरकार की एक पहल" -msgid "Gnowsys-Studio" -msgstr "Gnowsys-Studio" +#~ msgid "Offering Open Educational Resources" +#~ msgstr "मुक्त शैक्षिक संसाधन प्रदान करने वाला" -msgid "at the" -msgstr "पर" +#~ msgid "Created, adapted, translated and shared" +#~ msgstr "सृजित, अनुकूलित, अनुवादित तथा बाँट लेना" -msgid "Preferred language" -msgstr "भाषा की वरीयता" +#~ msgid "Let's Join NROER" +#~ msgstr "एन.आर.ओ.इ.आर के साथ जुड़ें" -msgid "Set Language" -msgstr "भाषा चुनें" +#~ msgid "Bridging divides" +#~ msgstr "सभी से जुड़ाव" -msgid "[About Module...] [coming soon]" -msgstr "

    मॉडयूल के बारे में... शीघ्र आ रहा है

    " +#~ msgid "Building partnerships" +#~ msgstr "पार्टनर्शिप निर्माण करें" -msgid "Educational Level" -msgstr "शैक्षिक स्तर" +#~ msgid "Nurturing networks and interest groups" +#~ msgstr "पोषित नेटवर्क तथा रूचिकर समूह" -msgid "Educational Subject" -msgstr "शैक्षिक विषय" +#~ msgid "Capturing and analyzing data" +#~ msgstr "अभिग्रहित तथा विश्लेषणात्मक आँकड़े" -msgid "Educational Use" -msgstr "शैक्षिक उपयोगिता" +#~ msgid "Connecting knowledge connecting people..." +#~ msgstr "ज्ञान को लोगों से जोड़ना, लोगों को ज्ञान जोड़ना..." -msgid "Interactivity Type" -msgstr "इंटरैक्टिविटी प्रकार" +#~ msgid "Strengthening school and teacher education" +#~ msgstr "समर्थ स्कूल और अध्यापक शिक्षा" + +#~ msgid "Modules " +#~ msgstr "मॉड्यूल" + +#~ msgid "User " +#~ msgstr "उपयोगकर्ता" + +#~ msgid "Collection Set" +#~ msgstr "संग्रह" + +#~ msgid "Attribute Set" +#~ msgstr "विशेषताएँ:" + +#~ msgid "Relation Set" +#~ msgstr "संबंध:" + +#~ msgid "resource." +#~ msgstr "संसाधन" + +#~ msgid "Add resources in this topic " +#~ msgstr "इस विषय में संसाधन जोड़ें" + +#~ msgid "Add Page " +#~ msgstr "पृष्ठ जोड़ें" + +#~ msgid "Save File" +#~ msgstr "नई फ़ाइल" + +#~ msgid "Add Events " +#~ msgstr "इवेंटस जोड़ें" + +#~ msgid "Add events feature will be coming soon " +#~ msgstr "इवेंटस जोड़नें की सुविधा शीघ्र आ रही है" + +#~ msgid "Create New Blog" +#~ msgstr "नया बनायें" + +#~ msgid "" +#~ " This group doesn't have any pages. Be the first to create a Page!" +#~ msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" + +#~ msgid "Page Details" +#~ msgstr "विवरण" + +#~ msgid "Under Moderation" +#~ msgstr "अंडरलाईन मोडरेशन ग्रुप" + +#~ msgid "" +#~ "

    \n" +#~ " A Quiz is a sequenced collection of quiz items. A quiz-" +#~ "item can be any of the three types: short response, single-" +#~ "choice and multiple-choice. " +#~ "submit response and match the following types will be " +#~ "implemented very soon.\n" +#~ "

    \n" +#~ "

    You can build a quiz in two ways:\n" +#~ "

      \n" +#~ "
    1. By editing, Quiz node (via collection-list).
    2. \n" +#~ "
    3. By using 'Quiz-Item' button corresponding to the Quiz.
    4. \n" +#~ "

    \n" +#~ msgstr "" +#~ "

    \n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ "

    \n" +#~ "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" +#~ "

      \n" +#~ "
    1. संपादन करके, प्रश्नोत्तरी नोड (संग्रह की सूची के माध्यम से).
    2. \n" +#~ "
    3. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए इसी.
    4. \n" +#~ "

    \n" + +#~ msgid "Quiz " +#~ msgstr "प्रश्नोत्तरी" + +#~ msgid "Quiz-Item Editor" +#~ msgstr "प्रश्नोत्तरी प्रश्न संपादक" + +#~ msgid "" +#~ "

    A Quiz is a sequenced collection of " +#~ "quiz items. A quiz-item can be any of the three types: " +#~ "short response, single-choice and " +#~ "multiple-choice. submit response and " +#~ "match the following types will be implemented very soon.

    \n" +#~ "

    You can build a quiz in two ways:\n" +#~ "

      \n" +#~ "\t
    1. By editing, Quiz node (via collection-list).
    2. \n" +#~ "\t
    3. By using 'Quiz-Item' button corresponding to the Quiz.
    4. \n" +#~ "

    \n" +#~ msgstr "" +#~ "

    \n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ "

    \n" +#~ "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" +#~ "

      \n" +#~ "
    1. संपादन करके, प्रश्नोत्तरी नोड (संग्रह की सूची के माध्यम से).
    2. \n" +#~ "
    3. 'क्विज आइटम' का उपयोग करके बटन प्रश्नोत्तरी के लिए इसी.
    4. \n" +#~ "

    \n" + +#~ msgid "+ Add Quiz" +#~ msgstr "+ जोड़ें प्रश्नोत्तरी" + +#~ msgid "Quiz Item" +#~ msgstr "प्रश्नोत्तरी प्रश्न" + +#~ msgid "Type of Quiz" +#~ msgstr "प्रश्नोत्तरी के प्रकार" + +#~ msgid "About Quiz/QuizItem" +#~ msgstr "प्रश्नोत्तरी के बारे में/प्रश्नोत्तरी प्रश्न" + +#~ msgid "Quizzes" +#~ msgstr "प्रश्नोत्तरी" + +#~ msgid "This group doesn't have any quiz. Be the first to create a Quiz!" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते " +#~ "हैं" + +#~ msgid "Quiz Items" +#~ msgstr "प्रश्नोत्तरी प्रश्न" + +#~ msgid "" +#~ "This group doesn't have any quiz-items. Be the first to create a Quiz-" +#~ "Item!" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं" + +#~ msgid "Not rated yet!" +#~ msgstr "अभी तक सृजन" + +#~ msgid "resources" +#~ msgstr "संसाधन" + +#~ msgid "" +#~ "Tag is like a keyword or category label.

    Tags helps you " +#~ "to find photos, videos, files and pages which have something in common." +#~ msgstr "" +#~ "टैग कूटसंकेत के समान है.

    टैग का प्रयोग करके खोजा जा सकता है.

    " + +#~ msgid "Attachment(s):" +#~ msgstr "संलगन" + +#~ msgid "History:" +#~ msgstr "इतिहासः" + +#~ msgid "In other languages" +#~ msgstr "अन्य भाषा में" + +#~ msgid "previous" +#~ msgstr "पिछला" + +#~ msgid "more details" +#~ msgstr "अधिक जानकारी" + +#~ msgid "next" +#~ msgstr "आगे" + +#~ msgid "" +#~ "You (or someone pretending to be you) have asked to register an account " +#~ "at our site." +#~ msgstr "" +#~ "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड " +#~ "रीसेट करें" -msgid "Audience" -msgstr "दर्शक" +#~ msgid "Management Team" +#~ msgstr "प्रबंधन टीम" -msgid "Info Box" -msgstr "सूचना बक्सा" +#~ msgid " Delete" +#~ msgstr "मिटाएं" -msgid "Annotate" -msgstr "व्याख्या करना" +#~ msgid "Group Analytics" +#~ msgstr "समूह संस्था प्रकार" -msgid "Publish this resource in other group/s" -msgstr "इस संसाधन को अन्य समूह में प्रकाशित करें" +#~ msgid "All {{title}}" +#~ msgstr "सभी फाईल" -msgid "Thread Name:" -msgstr "कड़ी नाम:" +#~ msgid "Not Enrolled to Any Courses!" +#~ msgstr "पाठ्यक्रमों कें छात्रों का नामांकन करें" -msgid "Themes" -msgstr "प्रसंग" +#~ msgid "Create a new partner" +#~ msgstr "नया पार्टनर बनायें" -msgid "Tree Browser" -msgstr "ट्री ब्राउज़र" +#~ msgid "Filter based on" +#~ msgstr "फिल्टर" -msgid "Fold" -msgstr "मोडि़ये" +#~ msgid "Target Group" +#~ msgstr "नया समूह" -msgid "Unfold" -msgstr "खोलिये" +#~ msgid "" +#~ "\n" +#~ "
    There are no %(grps_category)s created yet.Be the first to " +#~ "create a %(grps_category)s!
    \n" +#~ "\t" +#~ msgstr "" +#~ "\n" +#~ "
    अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं
    " -msgid "Collapsible Tree" -msgstr "सिमटने वाला ट्री ब्राउज़र" +#~ msgid "Be the first to create a" +#~ msgstr "सृजन करने वाले आप प्रथम हो" -msgid "Dashboard shows users' own activities on the site." -msgstr "डेशबोर्ड साइट पर उपयोगकर्ता के क्रियाकलापों को दिखाता है" +#~ msgid " %(each_gapp.content|safe)s " +#~ msgstr "विषय-वस्तुः" -msgid "Registered on" -msgstr "पंजीकरण तिथि" +#~ msgid " Partner Resources " +#~ msgstr "संसाधन" -msgid "Pages modified" -msgstr "संशोधित पृष्ठ" +#~ msgid "Click here to view Group Analytics" +#~ msgstr "देखने के लिए क्ल्कि करें" -msgid "Please wait while file is Uploading..." -msgstr "कृपया प्रतीक्षा करें फाईल अपलोड हो रही है" +#~ msgid "Click here to view My Analytics" +#~ msgstr "देखने के लिए क्ल्कि करें" -msgid "States" -msgstr "राज्य" +#~ msgid "Announced Courses" +#~ msgstr "घोषित पाठ्यक्रम" -msgid "Institutions" -msgstr "संस्थाएँ" +#~ msgid "" +#~ "This group doesn't have any courses. Be the first to create a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" -msgid "Individuals" -msgstr "व्यक्तिगत" +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:116 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:115 + msgid "You are not enrolled to any course !" + msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" -msgid "Teachers" -msgstr "शिक्षक" +#~ msgid "" +#~ "This group doesn't have any Announced courses. Be the first to " +#~ "Announce a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" -msgid "Interest Groups" -msgstr "अभिरूचि समूह" +#~ msgid "This group doesn't have any Announced courses." +#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" -msgid "Schools" -msgstr "विद्यालय" +#~ msgid "Announced Course for :" +#~ msgstr "घोषित पाठ्यक्रम" -msgid "Digital resource grouped in multiple ways" -msgstr "डिजि़टल संसाधन बहु-माध्यम समूहों में उपलब्ध हैं" +#~ msgid "delete" +#~ msgstr "मिटाएं" -msgid "Open Educational Resources mapped to school curricular" -msgstr "विद्यालय पाठ्यचर्या से संबद्ध मुक्त शैक्षिक संसाधन" +#~ msgid "reply" +#~ msgstr "जवाब दें" -msgid "Open Educational Resources mapped to schoo..." -msgstr "विद्यालय पाठ्यचर्या से संबद्ध मुक्त शैक्षिक संसाधन" +#~ msgid "Gnowsys-Studio" +#~ msgstr "Gnowsys-Studio" -msgid "eLibrary" -msgstr "ई-पुस्तकालय" +#~ msgid "at the" +#~ msgstr "पर" -msgid "Homogeneous collections of resources" -msgstr "संसाधनों का सजातीय संग्रह" +#~ msgid "Preferred language" +#~ msgstr "भाषा की वरीयता" -msgid "eBooks" -msgstr "ई-पुस्तकें" +#~ msgid "[About Module...] [coming soon]" +#~ msgstr "

    मॉडयूल के बारे में... शीघ्र आ रहा है

    " -msgid "Device independent digital books" -msgstr "स्वतंत्र डिजि़टल पुस्तकों की युक्ति" +#~ msgid "Educational Level" +#~ msgstr "शैक्षिक स्तर" -msgid "eCourses" -msgstr "ई-पाठ्यक्रम" +#~ msgid "Educational Subject" +#~ msgstr "शैक्षिक विषय" -msgid "Online and blended courses" -msgstr "आॅनलाइन और मिश्रित पाठ्यक्रम" +#~ msgid "Educational Use" +#~ msgstr "शैक्षिक उपयोगिता" -msgid "Community showcases and celebrations" -msgstr "समुदाय प्रदर्शन तथा महोत्सव" +#~ msgid "Interactivity Type" +#~ msgstr "इंटरैक्टिविटी प्रकार" -msgid "Partner Showcase" -msgstr "पार्टनर शोकेस" +#~ msgid "Audience" +#~ msgstr "दर्शक" -msgid "Contributions from institutions and individuals" -msgstr "व्यक्तिगत तथा संस्थाओं से योगदान" +#~ msgid "Info Box" +#~ msgstr "सूचना बक्सा" + +#~ msgid "Annotate" +#~ msgstr "व्याख्या करना" + +#~ msgid "Thread Name:" +#~ msgstr "कड़ी नाम:" + +#~ msgid "Tree Browser" +#~ msgstr "ट्री ब्राउज़र" + +#~ msgid "Unfold" +#~ msgstr "खोलिये" + +#~ msgid "Collapsible Tree" +#~ msgstr "सिमटने वाला ट्री ब्राउज़र" + +#~ msgid "Dashboard shows users' own activities on the site." +#~ msgstr "डेशबोर्ड साइट पर उपयोगकर्ता के क्रियाकलापों को दिखाता है" + +#~ msgid "Registered on" +#~ msgstr "पंजीकरण तिथि" + +#~ msgid "Pages modified" +#~ msgstr "संशोधित पृष्ठ" + +#~ msgid "States" +#~ msgstr "राज्य" + +#~ msgid "Institutions" +#~ msgstr "संस्थाएँ" + +#~ msgid "Individuals" +#~ msgstr "व्यक्तिगत" + +#~ msgid "Open Educational Resources mapped to school curricular" +#~ msgstr "विद्यालय पाठ्यचर्या से संबद्ध मुक्त शैक्षिक संसाधन" + +#~ msgid "Open Educational Resources mapped to schoo..." +#~ msgstr "विद्यालय पाठ्यचर्या से संबद्ध मुक्त शैक्षिक संसाधन" + +#~ msgid "Device independent digital books" +#~ msgstr "स्वतंत्र डिजि़टल पुस्तकों की युक्ति" + +#~ msgid "Online and blended courses" +#~ msgstr "आॅनलाइन और मिश्रित पाठ्यक्रम" -msgid "BACK" -msgstr "पीछे" +#~ msgid "Community showcases and celebrations" +#~ msgstr "समुदाय प्रदर्शन तथा महोत्सव" -msgid "New password" -msgstr "नया शब्दकूट" \ No newline at end of file +#~ msgid "New password" +#~ msgstr "नया पासवर्ड " diff --git a/gnowsys-ndf/gnowsys_ndf/__init__.py b/gnowsys-ndf/gnowsys_ndf/__init__.py index e69de29bb2..d9fa778360 100644 --- a/gnowsys-ndf/gnowsys_ndf/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/__init__.py @@ -0,0 +1,6 @@ +from __future__ import absolute_import, unicode_literals + +# This will make sure the app is always imported when +# Django starts so that shared_task will use this app. +import celery +from gnowsys_ndf.celery import app as celery_app diff --git a/gnowsys-ndf/gnowsys_ndf/celery.py b/gnowsys-ndf/gnowsys_ndf/celery.py index e13fa012eb..7c4b6b4f0d 100644 --- a/gnowsys-ndf/gnowsys_ndf/celery.py +++ b/gnowsys-ndf/gnowsys_ndf/celery.py @@ -1,13 +1,24 @@ from __future__ import absolute_import from celery import Celery - +import os #os.environ.setdefault('DJANGO_MAILBOX', 'Local') -app = Celery('gnowsys_ndf', - include=['gnowsys_ndf.tasks']) - -app.config_from_object('gnowsys_ndf.celeryconfig') +#app = Celery('gnowsys_ndf', +# include=['gnowsys_ndf.tasks']) +#app.config_from_object('gnowsys_ndf.celeryconfig') +app = Celery('gnowsys_ndf', + broker='amqp://nroer_user:nroer_user123@127.0.0.1:5672/nroer_user_vhost', + backend='rpc://', + # include=['gnowsys_ndf.ndf.views.tasks'] + ) +app.conf.update( + CELERY_ACCEPT_CONTENT = ['json'], + CELERY_TASK_SERIALIZER = 'json', + CELERY_RESULT_SERIALIZER = 'json', +) +from django.conf import settings +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gnowsys_ndf.settings') +app.config_from_object('django.conf:settings') +app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) -if __name__ == '__main__': - app.start() diff --git a/gnowsys-ndf/gnowsys_ndf/celeryconfig.py b/gnowsys-ndf/gnowsys_ndf/celeryconfig.py index 7c0daea49d..ebd3e3d0aa 100644 --- a/gnowsys-ndf/gnowsys_ndf/celeryconfig.py +++ b/gnowsys-ndf/gnowsys_ndf/celeryconfig.py @@ -1,5 +1,5 @@ -BROKER_URL = 'amqp://' - +#BROKER_URL = 'amqp://' +#BROKER_URL= 'amqp://siddhu:siddhu@172.17.0.3:5672/siddhu_vhost' # from datetime import timedelta # from gnowsys_ndf.local_settings import SYNCDATA_DURATION @@ -11,5 +11,6 @@ # }, # } -CELERY_TIMEZONE = 'UTC' - +#CELERY_TIMEZONE = 'UTC' +#result_backend = 'rpc://' +#result_persistent = True diff --git a/gnowsys-ndf/gnowsys_ndf/factory_type.py b/gnowsys-ndf/gnowsys_ndf/factory_type.py index fd97df8243..09ea3e2b6f 100644 --- a/gnowsys-ndf/gnowsys_ndf/factory_type.py +++ b/gnowsys-ndf/gnowsys_ndf/factory_type.py @@ -269,7 +269,7 @@ }, {'has_thumbnail': { - 'subject_type': ['Page', 'File','Jsmol'], + 'subject_type': ['Page', 'File','Jsmol','interactive_page'], 'object_type': ['File'], 'inverse_name': 'thumbnail_of', 'meta_type': 'factory_types', @@ -298,6 +298,15 @@ } }, + {'has_prerequisite': { + 'subject_type':['Topic'], + 'object_type':['Topic'], + 'inverse_name':'prerequisite_of', + 'meta_type':'factory_types', + 'object_cardinality': 100 + } + }, + ] diff --git a/gnowsys-ndf/gnowsys_ndf/gstudio_configs/benchmarks.json b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/benchmarks.json new file mode 100644 index 0000000000..476e94d5ea --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/benchmarks.json @@ -0,0 +1,94 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 5, + "number_of_replicas": 2, + "index.mapping.ignore_malformed": true, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings" : { + "benchmark" : { + "properties" : { + "action" : { + "type" : "text", + "fielddata" : true + }, + "function_output_length" : { + "type" : "text", + "fielddata" : true + }, + "group" : { + "type" : "text", + "fielddata" : true + }, + "last_update" : { + "type" : "text", + "fielddata" : true + }, + "name" : { + "type" : "text", + "fielddata" : true + }, + "parameters" : { + "type" : "text", + "fielddata" : true + }, + "size_of_parameters" : { + "type" : "text", + "fielddata" : true + }, + "time_taken" : { + "type" : "text", + "fielddata" : true + }, + "type" : { + "type" : "text", + "fielddata" : true + }, + "user" : { + "type": "string", + "index": "not_analyzed" + }, + "calling_url":{ + "type": "string", + "index": "not_analyzed" + }, + "has_data" : { + "properties" : { + "GET" : { + "type" : "text", + "fielddata" : true + }, + "POST" : { + "type" : "text", + "fielddata" : true + } + } + } + + } + } + } + } + diff --git a/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json new file mode 100644 index 0000000000..ec168e8cfc --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json @@ -0,0 +1,753 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 5, + "number_of_replicas": 2, + "index.mapping.ignore_malformed": true, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings": { + "filehive": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gattribute": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "grelation": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "buddy": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "benchmark": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "metatype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gsystemtype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "relationtype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "attributetype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gsystem": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "group": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "toreducedocs": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "author": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "counter": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "image": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "audio": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "video": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "application": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + } + + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json new file mode 100644 index 0000000000..e4736aa4a3 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json @@ -0,0 +1,83 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 5, + "number_of_replicas": 2, + "index.mapping.ignore_malformed": true, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings": { + "_default_": { + "dynamic": "false" + }, + "gattribute": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "grelation": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + } + + + + + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/_models.py b/gnowsys-ndf/gnowsys_ndf/ndf/_models.py index f4d6854d31..c00b6cc7cd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/_models.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/_models.py @@ -1953,27 +1953,37 @@ def get_file(self, md5_or_relurl=None): # static query methods @staticmethod - def query_list(group_id, member_of_name, user_id=None): - + def query_list(group_id, member_of_name, user_id=None,if_gstaff=False,**kwargs): group_name, group_id = Group.get_group_name_id(group_id) - gst_name, gst_id = GSystemType.get_gst_name_id(member_of_name) - - return node_collection.find({ - '_type': 'GSystem', - 'status': 'PUBLISHED', - 'group_set': {'$in': [group_id]}, - 'member_of': {'$in': [gst_id]}, - '$or':[ - {'access_policy': {'$in': [u'Public', u'PUBLIC']}}, - # {'$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': user_id} - # ] - # }, - {'created_by': user_id} + gst_name, gst_id = GSystemType.get_gst_name_id(member_of_name) + if if_gstaff: + query = { + '_type': 'GSystem', + 'status': 'PUBLISHED', + 'group_set': {'$in': [group_id]}, + 'member_of': {'$in': [gst_id]}, + 'access_policy': {'$in': [u'Public', u'PUBLIC',u'PRIVATE']} + } + else: + query = { + '_type': 'GSystem', + 'status': 'PUBLISHED', + 'group_set': {'$in': [group_id]}, + 'member_of': {'$in': [gst_id]}, + '$or':[ + {'access_policy': {'$in': [u'Public', u'PUBLIC']}}, + {'$and': [ + {'access_policy': u"PRIVATE"}, + {'created_by': user_id} ] - }).sort('last_update', -1) - + }, + {'created_by': user_id} + ] + } + for each in kwargs: + query.update({each : kwargs[each]}) + return node_collection.find(query).sort('last_update', -1) + @staticmethod def child_class_names(): ''' diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 97f8181d3e..9b12ef3fbf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -1,8 +1,9 @@ import datetime - +import json from django import forms from django_mongokit.forms import DocumentForm from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm +#from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING from models import Node from models import GSystemType @@ -10,6 +11,32 @@ from registration.forms import RegistrationForm from passwords.fields import PasswordField +# CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("application",'Application'),("text",'Text'),("audio","Audio"),("Page",'Page'),("Group",'Courses')] +# SEARCH_CHOICE = [(0,'Search for data'),(1,'Contributions of Author')] +# GROUP_CHOICES=[] +# NODE_TYPE_CHOICES = [] +# ATTRIBUTE_CHOICES = {} +# RELATION_CHOICES = {} + +# GROUP_CHOICES.append(("all","All")) +# SEARCH_CHOICE = [(0,'Search for Data'),(1,'Contributions of an Author')] +# group_map = {} +# mapping_directory = GSTUDIO_DOCUMENT_MAPPING +# #group_map for letting users search for data in some group +# with open(mapping_directory+"/groupmap.json", 'r') as gm: +# group_map = json.load(gm) + +# for name,gid in group_map.iteritems(): +# tup = (gid, name) +# tup = tuple(tup) +# GROUP_CHOICES.append(tup) + + +# class SearchForm(forms.Form): +# query = forms.CharField(label = '', widget = forms.TextInput(attrs={'placeholder': 'Search for'})) +# group = forms.ChoiceField(label = "Group", widget = forms.Select, choices = GROUP_CHOICES) +# search_select = forms.ChoiceField(label = "Search for", widget= forms.Select, choices= SEARCH_CHOICE) + class NodeForm(DocumentForm): tags = forms.CharField(max_length=250) @@ -30,3 +57,9 @@ class UserChangeform(PasswordChangeForm): class UserResetform(SetPasswordForm): new_password1 = PasswordField(label="New password") + + +class mform(forms.Form): + Username = forms.CharField(label='username', max_length=100) + Password = forms.CharField(label='password', max_length=100,widget=forms.PasswordInput) + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py new file mode 100644 index 0000000000..874dd390c7 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py @@ -0,0 +1,204 @@ +from elasticsearch import Elasticsearch +from elasticsearch_dsl import * +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH ,GSTUDIO_ELASTIC_SEARCH_PROTOCOL,GSTUDIO_ELASTIC_SEARCH_SUPERUSER,GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD,GSTUDIO_ELASTIC_SEARCH_ALIAS,GSTUDIO_ELASTIC_SEARCH_PORT,GLITE_RCS_REPO_DIRNAME,GSTUDIO_ELASTIC_SEARCH_INDEX,TESTING_VARIABLE_FOR_ES +from gnowsys_ndf.ndf.models.base_imports import * +from gnowsys_ndf.ndf.models.history_manager import HistoryManager +#from gnowsys_ndf.ndf.models.node import * +#from .node import Node +from bson.json_util import loads, dumps +from gnowsys_ndf.ndf.models.models_utils import NodeJSONEncoder + +#es = Elasticsearch("http://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT, timeout=100, retry_on_timeout=True) +#GSTUDIO_ELASTIC_SEARCH_ALIAS = "localhost" +es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) + +class esearch: + + #objects = models.Manager() + + #def __init__(self,fp): + # self.fp = fp + @staticmethod + def inject(fp): + + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json") as req_body: + request_body = json.load(req_body) + + if not os.path.exists(GLITE_RCS_REPO_DIRNAME): + os.makedirs(GLITE_RCS_REPO_DIRNAME) + + #fp = history_manager.get_file_path(self) + + rcs_obj = RCS() + rcs_obj.checkout(fp, otherflags="-f") + + temp1 = fp[:-29] + temp2 = temp1[14:] + + glite_fp = "/data/"+GLITE_RCS_REPO_DIRNAME+ temp2 + + try: + os.makedirs(glite_fp) + except OSError as exc: # Python >2.5 + if os.path.isdir(glite_fp): + pass + else: + raise + + temp = "cp " +fp+" "+glite_fp + os.system(temp) + #temp = "rm -rf"+" "+fp + #os.system(temp) + + #glite_fp = glite_fp + self._id + ".json" + + #with open(fp, 'r') as f: + # document = json.load(f) + + read_file_data = open(fp,'r').read() + + convert_oid_to_object_id = loads(read_file_data) + + doc = json.dumps(convert_oid_to_object_id,cls=NodeJSONEncoder) + + document = json.loads(doc) + + + document["id"] = document.pop("_id") + document["type"] = document.pop("_type") + + document_type = document["type"] + + index = None + + for k in GSTUDIO_ELASTIC_SEARCH_INDEX: + for v in GSTUDIO_ELASTIC_SEARCH_INDEX[k]: + if document_type in v: + index = k + index = index.lower() + + break + + if document_type == "GSystem": + es.index(index=index, doc_type="gsystem", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + if document["type"]=="GSystem": + if('if_file' in document.keys()): + if(document["if_file"]["mime_type"] is not None): + data = document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "notmedia" + else: + doc_type = "notmedia" + + else: + doc_type = "dontcare" + + if (not es.indices.exists("gsystem")): + res = es.indices.create(index="gsystem", body=request_body) + es.index(index="gsystem", doc_type=doc_type, id=document["id"], body=document) + + else: + es.index(index=index, doc_type=document_type.lower(), id=document["id"], body=document) + + + @staticmethod + def es_filters(query_dict): + i=-1 + strconcat="" + endstring="" + temp_dict={} + lists = [] + + for each in list(query_dict): + for temp in each.values(): + for a in temp: + for key,value in a.items(): + if isinstance(value, dict): + + if value["$in"]: + key = list(key) + key[13]='__' + t="".join(key) + temp_dict[t]=value["$in"][0] + lists.append("Q('match',"+t+"=dict(query='"+value["$in"][0]+"',type='phrase'))") + elif value["$or"]: + key = list(key) + key[13]='__' + t="".join(key) + temp_dict[t]=value["$or"][0] + lists.append("Q('match',"+t+"=dict(query='"+value["$or"][0]+"',type='phrase'))") + elif isinstance(value, tuple): + temp_dict["language"]= value[1] + #strconcat=strconcat+"Q('match',"+key+"='"+value[1]+"') " + strconcat=strconcat+"Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))$$" + lists.append("Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))") + else: + if key != "source": + key = list(key) + key[13]='__' + t="".join(key) + temp_dict[t]=value + lists.append("Q('match',"+t+"=dict(query='"+value+"',type='phrase'))") + else: + temp_dict[key]=value + lists.append("Q('match',"+key+"=dict(query='"+value+"',type='phrase'))") + return lists + + @staticmethod + def save_to_es(django_document): + try: + print "called to save_to_es method" + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json") as req_body: + request_body = json.load(req_body) + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/gstudio_configs/benchmarks.json") as benchmarks_body: + benchmarks_body = json.load(benchmarks_body) + doc = json.dumps(django_document,cls=NodeJSONEncoder) + + django_document = json.loads(doc) + print django_document + + django_document["id"] = django_document.pop("_id") + django_document["type"] = django_document.pop("_type") + + index = None + + for k in GSTUDIO_ELASTIC_SEARCH_INDEX: + for v in GSTUDIO_ELASTIC_SEARCH_INDEX[k]: + if django_document["type"] in v: + index = k + index = index.lower() + break + + print django_document["type"] + if django_document["type"] == "GSystem": + print django_document["id"] + es.index(index=index, doc_type="gsystem", id=django_document["id"], body=django_document) + #file_name.write(document["id"] + '\n') + if django_document["type"]=="GSystem": + if('if_file' in django_document.keys()): + if(django_document["if_file"]["mime_type"] is not None): + data = django_document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "notmedia" + else: + doc_type = "notmedia" + + else: + doc_type = "dontcare" + + if (not es.indices.exists("gsystem")): + res = es.indices.create(index="gsystem", body=request_body) + es.index(index="gsystem", doc_type=doc_type, id=django_document["id"], body=django_document) + + else: + print django_document["id"] + if (not es.indices.exists("benchmarks")): + res = es.indices.create(index="benchmarks", body=benchmarks_body) + + es.index(index=index, doc_type=django_document["type"].lower(), id=django_document["id"], body=django_document) + + except Exception as e: + print "Error while saving data to ES: "+str(e) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py new file mode 100644 index 0000000000..bfba6d5a44 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py @@ -0,0 +1,220 @@ +import collections +import warnings +from math import ceil + +from django.utils.functional import cached_property +from django.utils.translation import gettext_lazy as _ + +from django.utils import six + +class UnorderedObjectListWarning(RuntimeWarning): + pass +class InvalidPage(Exception): + pass +class PageNotAnInteger(InvalidPage): + pass +class EmptyPage(InvalidPage): + pass + +class Paginator: + + def __init__(self, object_list, per_page, orphans=0, + allow_empty_first_page=True): + self.object_list = object_list + self._check_object_list_is_ordered() + self.per_page = int(per_page) + self.orphans = int(orphans) + self.allow_empty_first_page = allow_empty_first_page + + def validate_number(self, number): + """Validate the given 1-based page number.""" + try: + number = int(number) + except (TypeError, ValueError): + raise PageNotAnInteger(_('That page number is not an integer')) + if number < 1: + raise EmptyPage(_('That page number is less than 1')) + if number > self.num_pages: + if number == 1 and self.allow_empty_first_page: + pass + else: + raise EmptyPage(_('That page contains no results')) + return number + + def get_page(self, number): + """ + Return a valid page, even if the page argument isn't a number or isn't + in range. + """ + try: + number = self.validate_number(number) + except PageNotAnInteger: + number = 1 + except EmptyPage: + number = self.num_pages + return self.page(number) + + + def page(self, number): + """Return a Page object for the given 1-based page number.""" + number = self.validate_number(number) + bottom = (number - 1) * self.per_page + top = bottom + self.per_page + if top + self.orphans >= self.count: + top = self.count + return self._get_page(self.object_list[bottom:top], number, self) + + + def _get_page(self, *args, **kwargs): + """ + Return an instance of a single page. + + This hook can be used by subclasses to use an alternative to the + standard :cls:`Page` object. + """ + return Page(*args, **kwargs) + + @cached_property + def count(self): + """Return the total number of objects, across all pages.""" + try: + return self.object_list.count() + except (AttributeError, TypeError): + # AttributeError if object_list has no count() method. + # TypeError if object_list.count() requires arguments + # (i.e. is of type list). + return len(self.object_list) + + @cached_property + def num_pages(self): + """Return the total number of pages.""" + if self.count == 0 and not self.allow_empty_first_page: + return 0 + hits = max(1, self.count - self.orphans) + return int(ceil(hits / float(self.per_page))) + + @property + def page_range(self): + """ + Return a 1-based range of pages for iterating through within + a template for loop. + """ + return range(1, self.num_pages + 1) + + def _check_object_list_is_ordered(self): + """ + Warn if self.object_list is unordered (typically a QuerySet). + """ + ordered = getattr(self.object_list, 'ordered', None) + if ordered is not None and not ordered: + obj_list_repr = ( + '{} {}'.format(self.object_list.model, self.object_list.__class__.__name__) + if hasattr(self.object_list, 'model') + else '{!r}'.format(self.object_list) + ) + warnings.warn( + 'Pagination may yield inconsistent results with an unordered ' + 'object_list: {}.'.format(obj_list_repr), + UnorderedObjectListWarning, + stacklevel=3 + ) + + + +QuerySetPaginator = Paginator # For backwards-compatibility. + + +class Page(collections.Sequence): + + def __init__(self, object_list, number, paginator): + self.object_list = object_list + self.number = number + self.current_page = number + self.paginator = paginator + self.allow_empty_first_page = paginator.allow_empty_first_page + self.orphans = paginator.orphans + self.per_page = paginator.per_page + + + def __repr__(self): + return '' % (self.number, self.paginator.num_pages) + + def __len__(self): + return len(self.object_list) + + def __getitem__(self, index): + if not isinstance(index, (int, slice)): + raise TypeError + # The object_list is converted to a list so that if it was a QuerySet + # it won't be a database hit per __getitem__. + if not isinstance(self.object_list, list): + self.object_list = list(self.object_list) + return self.object_list[index] + + def has_next(self): + return self.number < self.paginator.num_pages + + + def has_previous(self): + return self.number > 1 + + + def has_other_pages(self): + return self.has_previous() or self.has_next() + + + def next_page(self): + return self.paginator.validate_number(self.number + 1) + + + def previous_page(self): + return self.paginator.validate_number(self.number - 1) + + + def start_index(self): + """ + Return the 1-based index of the first object on this page, + relative to total objects in the paginator. + """ + # Special case, return zero if no items. + if self.paginator.count == 0: + return 0 + return (self.paginator.per_page * (self.number - 1)) + 1 + + + def end_index(self): + """ + Return the 1-based index of the last object on this page, + relative to total objects found (hits). + """ + # Special case for the last page because there can be orphans. + if self.number == self.paginator.num_pages: + return self.paginator.count + return self.number * self.paginator.per_page + + @cached_property + def num_pages(self): + """Return the total number of pages.""" + if self.count == 0 and not self.allow_empty_first_page: + return 0 + hits = max(1, self.count - self.orphans) + return int(ceil(hits / float(self.per_page))) + + @property + def page_range(self): + """ + Return a 1-based range of pages for iterating through within + a template for loop. + """ + return range(1, self.num_pages + 1) + + @cached_property + def count(self): + """Return the total number of objects, across all pages.""" + try: + return self.object_list.count() + except (AttributeError, TypeError): + # AttributeError if object_list has no count() method. + # TypeError if object_list.count() requires arguments + # (i.e. is of type list). + return len(self.object_list) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/sync_existing_documents.py b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/sync_existing_documents.py index 4c5499f724..df67bb2c79 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/sync_existing_documents.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/sync_existing_documents.py @@ -16,6 +16,11 @@ from gnowsys_ndf.ndf.views.methods import create_gattribute, create_grelation from gnowsys_ndf.ndf.templatetags.ndf_tags import get_relation_value, get_attribute_value +############################################## +from gnowsys_ndf.ndf.middleware.oauth_middleware import test +from gnowsys_ndf.ndf.models import * +############################################## + class Command(BaseCommand): @@ -979,3 +984,9 @@ def handle(self, *args, **options): {'$set': {'member_of': [page_gst._id], 'type_of': [wiki_page_gst._id]}} ,upsert=False, multi=True) if activity_gs_mem_update_res['updatedExisting']: # and res['nModified']: print "\n Replaced member_of field from 'activity' to'Page' in " + activity_gs_mem_update_res['n'].__str__() + " instances." + +####Add 'access_token' field to existing auth objects############## + author_object = node_collection.find({'_type':'Author'}) + if author_object: + author_object=node_collection.collection.update({'_type':'Author','access_token':{'$exists':False}},{'$set':{'access_token':None}},upsert=False, multi=True) + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py b/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py new file mode 100644 index 0000000000..5b51885193 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py @@ -0,0 +1,158 @@ +from django.http import HttpResponseRedirect +from django.core.urlresolvers import reverse + +###############Mastodon OAUTH Dependancy########## +import mastodon +from django.contrib.auth import authenticate, login +from mastodon import Mastodon +from django.template.response import TemplateResponse,loader +from gnowsys_ndf.ndf.models import * +from django.contrib.auth.models import User +from django.shortcuts import render +from django.contrib import messages +######################################## + +class mastodon_login(object): + def moauth(self,request): + + if request.method == 'POST': + #form = mform(request.POST) + ###GET username and password from user##### + Username = request.POST.get('username') + Password = request.POST.get('password') + + ###CHECKING CLIENT CREDENTIALS USING MASTODON API########## + mastodon_var = mastodon.Mastodon( + + client_id='gnowsys_ndf/gstudio_configs/NROER-client_cred.secret', + api_base_url='https://member.metastudio.org' + ) + + access_token = None + + ####GET ACCESS FROM MASTODON HERE####### + try: + access_token = mastodon_var.log_in( + Username, + Password, + to_file='gnowsys_ndf/gstudio_configs/NROER-access_token.secret', + ) + mastodon_var2 = Mastodon( + client_id = 'gnowsys_ndf/gstudio_configs/NROER-client_cred.secret', + access_token = access_token, + api_base_url = 'https://member.metastudio.org' + ) + except Exception as e: + pass + + name = Username + email = Username + password = Password + + if access_token: + + ###check whether given email is present in user table or not#### + user_email = User.objects.filter(email=name).exists() + if user_email: + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + if(nodes!=None): + + ####SECOND AND BY-DEFAULT CUSTOMIZE LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + + if user is not None: + if user.is_active: + user.is_active=True + login(request,user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Invalid Credentials") + else: + ##Creating auth object for user + member = User.objects.get(email=name) + Author.create_author(member.id,agency_type='Other') + + ##Fetch auth object using email + author = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + author.save() + + #By default layer and customise layer of authentication + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Invalid Credentials") + + else: + ##Creating user in django user table + member = User.objects.create_user(name,email,password) + member.save() + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + if(nodes!=None): + + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Invalid Credentials") + + + else: + + ##GET EMAIL TO CREATE AUTH OBJECT FOR USER + member = User.objects.get(email=name) + Author.create_author(member.id,agency_type='Other') + author = node_collection.one({"created_by":int(member.id),"_type":unicode("Author")}) + author.save() + + ####SECOND AND BY-DEFAULT LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Invalid Credentials") + return HttpResponseRedirect( reverse('landing_page') ) + + else: + error_msg_flag = "You entered wrong credentials" + template = loader.get_template('registration/login.html') + context = {'error_msg_flag':error_msg_flag} + return render(request,'registration/login.html',context) + + else: + + return HttpResponse("Invalid Credentials.") + +# Below class used for overriding defualt authenticate method of django +class CustomBackendAuthenticationForDjango: + + # Create an authentication method + # This is called by the standard Django login procedure + def authenticate(self, username=None, password=None): + + try: + # Try to find a user matching your username + return User.objects.get(email=username) + + except User.DoesNotExist: + # No user was found, return None - triggers default login failed + return None + + # Required for your backend to work properly - unchanged in most scenarios + def get_user(self, user_id): + try: + return User.objects.get(pk=user_id) + except User.DoesNotExist: + return None \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/__init__.py index c62166482a..c3135db47b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/__init__.py @@ -19,7 +19,7 @@ from .analytics import * from .models_utils import * from .db_utils import * - +from gnowsys_ndf.tasks import * node_collection = db["Nodes"].Node triple_collection = db["Triples"].Triple diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/author.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/author.py index d2f72f90d6..3ecff0c613 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/author.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/author.py @@ -13,7 +13,8 @@ class Author(Group): 'preferred_languages': dict, # preferred languages for users like preferred lang. , fall back lang. etc. 'group_affiliation': basestring, 'language_proficiency':list, - 'subject_proficiency':list + 'subject_proficiency':list, + 'access_token':unicode } use_dot_notation = True diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/benchmark.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/benchmark.py index ddc99be699..09eefe130a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/benchmark.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/benchmark.py @@ -1,5 +1,6 @@ from base_imports import * - +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH_IN_BENCHMARK_CLASS +from gnowsys_ndf.ndf.gstudio_es.es import * @connection.register class Benchmark(DjangoDocument): @@ -32,5 +33,9 @@ def __unicode__(self): def identity(self): return self.__unicode__() + def save(self, *args, **kwargs): + super(Benchmark, self).save(*args, **kwargs) + if GSTUDIO_ELASTIC_SEARCH_IN_BENCHMARK_CLASS: + esearch.save_to_es(self) benchmark_collection= db["Benchmarks"] \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/counter.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/counter.py index 15220efb94..d52474eaf3 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/counter.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/counter.py @@ -456,6 +456,10 @@ def save(self, *args, **kwargs): super(Counter, self).save(*args, **kwargs) + self.rcs_function(self,is_new,*args,**kwargs) + + #@task + def rcs_function(self,is_new,*args,**kwargs): # storing Filehive JSON in RSC system: history_manager = HistoryManager() rcs_obj = RCS() @@ -496,7 +500,6 @@ def save(self, *args, **kwargs): print "\n DocumentError: This document (", self._id, ") can't be updated!!!\n" raise RuntimeError(err) - counter_collection = db[Counter.collection_name].Counter diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py index 49aa547bb0..128500234f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py @@ -1,5 +1,8 @@ from base_imports import * from history_manager import HistoryManager +from gnowsys_ndf.ndf.gstudio_es.es import esearch +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH,GSTUDIO_ELASTIC_SEARCH_IN_FILEHIVE_CLASS + @connection.register class Filehive(DjangoDocument): @@ -356,6 +359,14 @@ def save(self, *args, **kwargs): super(Filehive, self).save(*args, **kwargs) + self.rcs_function(self,is_new,*args,**kwargs) + # data save into ES... + if GSTUDIO_ELASTIC_SEARCH_IN_FILEHIVE_CLASS == True: + esearch.save_to_es(self) + + # --- END of storing Filehive JSON in RSC system --- + # @task + def rcs_function(self,is_new,*args,**kwargs): # storing Filehive JSON in RSC system: history_manager = HistoryManager() rcs_obj = RCS() @@ -365,8 +376,11 @@ def save(self, *args, **kwargs): # Create history-version-file if history_manager.create_or_replace_json_file(self): fp = history_manager.get_file_path(self) - message = "This document (" + str(self.md5) + ") is created on " + self.uploaded_at.strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + if self.uploaded_at: + message = "This document (" + str(self.md5) + ") is created on " + self.uploaded_at.strftime("%d %B %Y") + rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + else: + pass else: # Update history-version-file @@ -379,9 +393,11 @@ def save(self, *args, **kwargs): try: if history_manager.create_or_replace_json_file(self): fp = history_manager.get_file_path(self) - message = "This document (" + str(self.md5) + ") is re-created on " + self.uploaded_at.strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") - + if self.uploaded_at: + message = "This document (" + str(self.md5) + ") is re-created on " + self.uploaded_at.strftime("%d %B %Y") + rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + else: + pass except Exception as err: print "\n DocumentError: This document (", self._id, ":", str(self.md5), ") can't be re-created!!!\n" node_collection.collection.remove({'_id': self._id}) @@ -396,7 +412,5 @@ def save(self, *args, **kwargs): print "\n DocumentError: This document (", self._id, ":", str(self.md5), ") can't be updated!!!\n" raise RuntimeError(err) - # --- END of storing Filehive JSON in RSC system --- - filehive_collection = db["Filehives"].Filehive diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/history_manager.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/history_manager.py index cca1a51509..bc36b863d1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/history_manager.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/history_manager.py @@ -129,7 +129,7 @@ def create_rcs_repo_collections(self, *versioning_collections): # "created @ following path:\n {1}\n"\ # .format(collection, rcs_repo_collection)) - def create_or_replace_json_file(self, document_object=None): + def create_or_replace_json_file(self, document_object=None,data_save_into_file=None): """Creates/Overwrites a json-file for passed document object in its respective hashed-directory structure. @@ -150,17 +150,25 @@ def create_or_replace_json_file(self, document_object=None): # from Filehive import Filehive # from Buddy import Buddy # Counter - + if data_save_into_file: + model_name = document_object.model_name + else: + model_name = document_object._meta.model_name # collection_list = ('MetaType', 'GSystemType', 'GSystem', 'AttributeType', 'GAttribute', 'RelationType', 'GRelation', 'Filehive', 'Buddy', 'Counter') collection_list = get_all_collection_child_names() file_res = False # True, if no error/exception occurred if document_object is not None and \ - (document_object._meta.model_name in collection_list): + (model_name in collection_list): # isinstance(document_object, collection_list): - file_path = self.get_file_path(document_object) - - json_data = document_object.to_json_type() + if data_save_into_file: + json_data = json.loads(data_save_into_file) + if json_data.get("model_name"): + del json_data["model_name"] + if json_data.get("collection_name"): + del json_data["collection_name"] + else: + json_data = document_object.to_json_type() #------------------------------------------------------------------ # Creating/Overwriting data into json-file and rcs-file #------------------------------------------------------------------ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/models_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/models_utils.py index 5b2f15e0b2..78e9dc0aae 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/models_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/models_utils.py @@ -1,12 +1,12 @@ from base_imports import * - +from bson import json_util class NodeJSONEncoder(json.JSONEncoder): def default(self, o): if isinstance(o, ObjectId): return str(o) if isinstance(o, datetime.datetime): - return o.strftime("%d/%m/%Y %H:%M:%S") + return o.strftime("%d/%m/%Y %H:%M:%S:%f") return json.JSONEncoder.default(self, o) @@ -169,3 +169,16 @@ class node_holder(DjangoDocument): # @classmethod # def get_all_user_set_ids_list(cls): # return cls.active_loggedin_and_buddy_users_group.user_set.values_list('id', flat=True) + +class CustomNodeJSONEncoder(json.JSONEncoder): + def default(self, o): + if isinstance(o, ObjectId): + return json_util.default(o) + + if isinstance(o, datetime.datetime): + + temp = json_util.dumps(o) + temp = json.loads(temp) + return temp["$date"] + + return json.JSONEncoder.default(self, o) \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py index 51704b7198..2e81a1f36d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py @@ -1,6 +1,12 @@ from base_imports import * from history_manager import HistoryManager - +from gnowsys_ndf.ndf.gstudio_es.es import esearch +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH,GSTUDIO_ELASTIC_SEARCH_IN_NODE_CLASS +from gnowsys_ndf.celery import app +from celery.contrib.methods import task_method +from celery.contrib.methods import task +from gnowsys_ndf.ndf.models.models_utils import NodeJSONEncoder,CustomNodeJSONEncoder +from gnowsys_ndf.tasks import * @connection.register class Node(DjangoDocument): '''Everything is a Node. Other classes should inherit this Node class. @@ -506,7 +512,7 @@ def __unicode__(self): def identity(self): return self.__unicode__() - + def save(self, *args, **kwargs): if "is_changed" in kwargs: if not kwargs["is_changed"]: @@ -650,63 +656,82 @@ def save(self, *args, **kwargs): z.save() #If you create/edit anything then this code shall add it in the URL - - history_manager = HistoryManager() - rcs_obj = RCS() - - if is_new: - # Create history-version-file - try: - if history_manager.create_or_replace_json_file(self): - fp = history_manager.get_file_path(self) - user_list = User.objects.filter(pk=self.created_by) - user = user_list[0].username if user_list else 'user' - # user = User.objects.get(pk=self.created_by).username - message = "This document (" + self.name + ") is created by " + user + " on " + self.created_at.strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") - except Exception as err: - print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be created!!!\n" - node_collection.collection.remove({'_id': self._id}) - raise RuntimeError(err) - - else: - # Update history-version-file - fp = history_manager.get_file_path(self) - - try: - rcs_obj.checkout(fp, otherflags="-f") - except Exception as err: - try: - if history_manager.create_or_replace_json_file(self): - fp = history_manager.get_file_path(self) - # user = User.objects.get(pk=self.created_by).username - user_list = User.objects.filter(pk=self.created_by) - user = user_list[0].username if user_list else 'user' - message = "This document (" + self.name + ") is re-created by " + user + " on " + self.created_at.strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") - - except Exception as err: - print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be re-created!!!\n" - node_collection.collection.remove({'_id': self._id}) - raise RuntimeError(err) - - try: - if history_manager.create_or_replace_json_file(self): - # user = User.objects.get(pk=self.modified_by).username - user_list = User.objects.filter(pk=self.created_by) - user = user_list[0].username if user_list else 'user' - message = "This document (" + self.name + ") is lastly updated by " + user + " status:" + self.status + " on " + self.last_update.strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8')) - - except Exception as err: - print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be updated!!!\n" - raise RuntimeError(err) - - #update the snapshot feild - if kwargs.get('groupid'): - # gets the last version no. - rcsno = history_manager.get_current_version(self) - node_collection.collection.update({'_id':self._id}, {'$set': {'snapshot'+"."+str(kwargs['groupid']):rcsno }}, upsert=False, multi=True) + # print "longtime_add method not called" + # longtime_add.apply_async((2, 2), countdown=3) + temp = self + temp.update({"collection_name":"Nodes"}) + model_name = self._meta.model_name + temp.update({"model_name":model_name}) + from bson import json_util + data_save_into_file = json.dumps(temp,cls=CustomNodeJSONEncoder) + json_data = json.dumps(temp,cls=NodeJSONEncoder) + kwargs = json.dumps(kwargs,cls=NodeJSONEncoder) + # kwargs1 = json.loads(kwargs) + # print kwargs1 + # kwargs1 = False + # print temp + # kew_args = **kwargs + # kew_args = False + # print kwargs + rcs_function.apply_async((is_new,data_save_into_file,json_data,kwargs), countdown=1) + # print is_new + # rcs_function.apply_async((is_new,), countdown=3) + # print "longtime_add method completed" + # history_manager = HistoryManager() + # rcs_obj = RCS() + # print self + # if is_new: + # # Create history-version-file + # try: + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # # user = User.objects.get(pk=self.created_by).username + # message = "This document (" + self.name + ") is created by " + user + " on " + self.created_at.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be created!!!\n" + # node_collection.collection.remove({'_id': self._id}) + # raise RuntimeError(err) + + # else: + # # Update history-version-file + # fp = history_manager.get_file_path(self) + + # try: + # rcs_obj.checkout(fp, otherflags="-f") + # except Exception as err: + # try: + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # # user = User.objects.get(pk=self.created_by).username + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # message = "This document (" + self.name + ") is re-created by " + user + " on " + self.created_at.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be re-created!!!\n" + # node_collection.collection.remove({'_id': self._id}) + # raise RuntimeError(err) + + # try: + # if history_manager.create_or_replace_json_file(self): + # # user = User.objects.get(pk=self.modified_by).username + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # message = "This document (" + self.name + ") is lastly updated by " + user + " status:" + self.status + " on " + self.last_update.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8')) + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be updated!!!\n" + # raise RuntimeError(err) + + + ########################## ES ################################## + if GSTUDIO_ELASTIC_SEARCH_IN_NODE_CLASS == True: + esearch.save_to_es(self) # User-Defined Functions @@ -971,6 +996,73 @@ def get_neighbourhood(self, member_of): self.structure[key] = value['subject_or_object_type'] self[key] = value['subject_or_right_subject_list'] + # @task() + # def rcs_function(self,is_new,**kwargs): + # history_manager = HistoryManager() + # rcs_obj = RCS() + # if True: + # print "-------------===================--------------Node------------------" + # if is_new: + # # Create history-version-file + # try: + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # # user = User.objects.get(pk=self.created_by).username + # if self.created_at: + # message = "This document (" + self.name + ") is created by " + user + " on " + self.created_at.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + # else: + # pass + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be created!!!\n" + # node_collection.collection.remove({'_id': self._id}) + # raise RuntimeError(err) + + # else: + # # Update history-version-file + # fp = history_manager.get_file_path(self) + + # try: + # rcs_obj.checkout(fp, otherflags="-f") + # except Exception as err: + # try: + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # # user = User.objects.get(pk=self.created_by).username + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # if self.created_at: + # message = "This document (" + self.name + ") is re-created by " + user + " on " + self.created_at.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + # else: + # pass + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be re-created!!!\n" + # node_collection.collection.remove({'_id': self._id}) + # raise RuntimeError(err) + + # try: + # if history_manager.create_or_replace_json_file(self): + # # user = User.objects.get(pk=self.modified_by).username + # user_list = User.objects.filter(pk=self.created_by) + # user = user_list[0].username if user_list else 'user' + # if self.last_update: + # message = "This document (" + self.name + ") is lastly updated by " + user + " status:" + self.status + " on " + self.last_update.strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8')) + # else: + # pass + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be updated!!!\n" + # raise RuntimeError(err) + # #update the snapshot feild + # if kwargs.get('groupid'): + # # gets the last version no. + # rcsno = history_manager.get_current_version(self) + # node_collection.collection.update({'_id':self._id}, {'$set': {'snapshot'+"."+str(kwargs['groupid']):rcsno }}, upsert=False, multi=True) # DATABASE Variables node_collection = db[Node.collection_name].Node diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/triple.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/triple.py index 53725ff1f1..fee3164bde 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/triple.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/triple.py @@ -1,6 +1,7 @@ from base_imports import * from node import * from db_utils import get_model_name +#from gnowsys_ndf.celery import app # TRIPLE CLASS DEFINITIONS @connection.register @@ -259,42 +260,58 @@ def save(self, *args, **kwargs): #end of data_type_check super(Triple, self).save(*args, **kwargs) - - history_manager = HistoryManager() - rcs_obj = RCS() - if is_new: - # Create history-version-file - if history_manager.create_or_replace_json_file(self): - fp = history_manager.get_file_path(self) - message = "This document (" + self.name + ") is created on " + datetime.datetime.now().strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") - - else: - # Update history-version-file - fp = history_manager.get_file_path(self) - - try: - rcs_obj.checkout(fp, otherflags="-f") - except Exception as err: - try: - if history_manager.create_or_replace_json_file(self): - fp = history_manager.get_file_path(self) - message = "This document (" + self.name + ") is re-created on " + datetime.datetime.now().strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") - - except Exception as err: - print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be re-created!!!\n" - node_collection.collection.remove({'_id': self._id}) - raise RuntimeError(err) - - try: - if history_manager.create_or_replace_json_file(self): - message = "This document (" + self.name + ") is lastly updated on " + datetime.datetime.now().strftime("%d %B %Y") - rcs_obj.checkin(fp, 1, message.encode('utf-8')) - - except Exception as err: - print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be updated!!!\n" - raise RuntimeError(err) - - -triple_collection = db["Triples"].Triple \ No newline at end of file + temp = self + temp.update({"collection_name":"Triples"}) + model_name = self._meta.model_name + temp.update({"model_name":model_name}) + # print dir_path + # temp.update({"model_name":model_name}}) + from bson import json_util + data_save_into_file = json.dumps(temp,cls=CustomNodeJSONEncoder) + json_data = json.dumps(temp,cls=NodeJSONEncoder) + kwargs = json.dumps(kwargs,cls=NodeJSONEncoder) + rcs_function.apply_async((is_new,data_save_into_file,json_data,kwargs), countdown=1) + # self.rcs_function(self,is_new,*args,**kwargs) + + # def rcs_function(self,is_new,*args,**kwargs): + # print args + # print kwargs + # history_manager = HistoryManager() + # rcs_obj = RCS() + # if True: + # if is_new: + # # Create history-version-file + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # message = "This document (" + self.name + ") is created on " + datetime.datetime.now().strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + + # else: + # # Update history-version-file + # fp = history_manager.get_file_path(self) + + # try: + # rcs_obj.checkout(fp, otherflags="-f") + # except Exception as err: + # try: + # if history_manager.create_or_replace_json_file(self): + # fp = history_manager.get_file_path(self) + # message = "This document (" + self.name + ") is re-created on " + datetime.datetime.now().strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8'), "-i") + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be re-created!!!\n" + # node_collection.collection.remove({'_id': self._id}) + # raise RuntimeError(err) + + # try: + # if history_manager.create_or_replace_json_file(self): + # message = "This document (" + self.name + ") is lastly updated on " + datetime.datetime.now().strftime("%d %B %Y") + # rcs_obj.checkin(fp, 1, message.encode('utf-8')) + + # except Exception as err: + # print "\n DocumentError: This document (", self._id, ":", self.name, ") can't be updated!!!\n" + # raise RuntimeError(err) + + +triple_collection = db["Triples"].Triple diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/oauth_middleware.py b/gnowsys-ndf/gnowsys_ndf/ndf/oauth_middleware.py new file mode 100644 index 0000000000..727e35da0a --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/oauth_middleware.py @@ -0,0 +1,196 @@ +from django.shortcuts import render_to_response, render +from django.http import HttpResponseRedirect +from django.core.urlresolvers import reverse +from django.template import RequestContext +from django.views.generic import RedirectView +from gnowsys_ndf.ndf.views.methods import get_execution_time +from gnowsys_ndf.ndf.views.analytics import * + + + +###############Mastodon OAUTH Dependancy########## +from gnowsys_ndf.ndf.forms import mform +import mastodon +from django.contrib.auth import authenticate, login +from mastodon import Mastodon +from django.template.response import TemplateResponse +from gnowsys_ndf.ndf.models import * +from django.contrib.auth.models import User +######################################## + + +class test(object): + def moauth(self,request): + + if request.method == 'POST': + # from mastodon import Mastodon + + form = mform(request.POST) + + ###GET username and password from user##### + Username = request.POST.get('username') + Password = request.POST.get('password') + + + ###CHECKING CLIENT CREDENTIALS USING MASTODON API########## + mastodon_var = mastodon.Mastodon( + + client_id='gnowsys_ndf/ndf/NROER-client_cred.secret', + api_base_url='https://member.metastudio.org' + ) + + access_token = None + + ####GET ACCESS FROM MASTODON HERE####### + try: + access_token = mastodon_var.log_in( + Username, + Password, + to_file='gnowsys_ndf/ndf/NROER-access_token.secret', + + + ) + mastodon_var2 = Mastodon( + client_id = 'gnowsys_ndf/ndf/NROER-client_cred.secret', + access_token = access_token, + api_base_url = 'https://member.metastudio.org' + ) + except Exception as e: + print e + pass + + name = Username + email = Username + password = None + + + + if access_token: + + ###check whether given email is present in user table or not#### + user_email = User.objects.filter(email=name).exists() + + if (user_email==True): + + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + #nodes.access_token = access_token + + if(nodes!=None): + nodes.access_token = access_token + + + ####SECOND AND BY-DEFAULT CUSTOMIZE LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + + print "+++++++++++++++++++++++++" + if user is not None: + + if user.is_active: + user.is_active=True + + login(request,user) + + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error1") + else: + ##Creating auth object for user + execfile("/home/docker/code/gstudio/doc/deployer/create_auth_objs.py") + + ##Fetch auth object using email + author = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + ##Assign access token for auth object + author.access_token = access_token + + author.save() + + #By default layer and customise layer of authentication + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error1") + + else: + ##Creating user in django user table + member = User.objects.create_user(name,email,password) + member.save() + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + if(nodes!=None): + + + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error2") + + + + else: + + execfile("/home/docker/code/gstudio/doc/deployer/create_auth_objs.py") + + author = node_collection.one({"created_by":int(member.id),"_type":unicode("Author")}) + author.access_token = access_token + author.save() + ####SECOND AND BY-DEFAULT LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error2") + return HttpResponseRedirect( reverse('landing_page') ) + + else: + + return HttpResponseRedirect(reverse('login') ) + + else: + + return HttpResponse("Invalid Credentials.") + + + + +# Below class used for overriding defualt authenticate method of django +class MyCustomBackend: + + # Create an authentication method + # This is called by the standard Django login procedure + def authenticate(self, username=None, password=None): + + try: + # Try to find a user matching your username + user = User.objects.get(email=username) + + + if(user): + # return the Django user object + return user + else: + # return None - triggers default login failed + return None + except User.DoesNotExist: + # No user was found, return None - triggers default login failed + return None + + # Required for your backend to work properly - unchanged in most scenarios + def get_user(self, user_id): + try: + return User.objects.get(pk=user_id) + except User.DoesNotExist: + return None \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/rcslib.py b/gnowsys-ndf/gnowsys_ndf/ndf/rcslib.py index 5a700e696f..c27bf341b8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/rcslib.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/rcslib.py @@ -161,6 +161,7 @@ def checkout(self, name_rev, withlock=1, otherflags=""): Any output from co goes to directly to stdout. """ + # print "checkout" name, rev = self.checkfile(name_rev) lockflag = "-q" @@ -187,6 +188,8 @@ def checkin(self, name_rev, delworkfile=1, message=None, otherflags=""): Any output from ci goes to directly to stdout. """ + # print "called checkin method======================================================" + # print name_rev name, rev = self._unmangle(name_rev) new = not self.isvalid(name) @@ -275,8 +278,12 @@ def _unmangle(self, name_rev): (a) string: _unmangle('5252648f5a40920c160bc774.json') (b) tuple : _unmangle(('5252648f5a40920c160bc774.json', '1.3')) """ + # print "_unmangle method called" + # print name_rev if type(name_rev) == type(''): name_rev = name, rev = name_rev, '' + elif isinstance(name_rev,basestring): + name_rev = name, rev = name_rev, '' else: name, rev = name_rev diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/clix-activity-styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/clix-activity-styles.css index be46ddfe5b..408fd7ec2c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/clix-activity-styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/clix-activity-styles.css @@ -188,10 +188,10 @@ color: var(--greyish-brown); } - +/* #scstyle header, footer { margin: 50px auto 0px; -} +}*/ #scstyle main { margin: 0px auto; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index 42705c8313..12403d7aff 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -61,6 +61,15 @@ h5 { } /* line 80, ../../../scss/_clix2017.scss */ +.symbol-wid { + cursor: pointer; + font-size: 29px; + color: #a2b1be; + margin-right: 0px; + margin-top: 40px; +} + +/* line 88, ../../../scss/_clix2017.scss */ .buddy-wid { font-size: 34px; color: #a2b1be; @@ -69,46 +78,46 @@ h5 { } /* Landing page */ -/* line 91, ../../../scss/_clix2017.scss */ +/* line 99, ../../../scss/_clix2017.scss */ .landing_page { position: relative; text-align: center; } -/* line 96, ../../../scss/_clix2017.scss */ +/* line 104, ../../../scss/_clix2017.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 101, ../../../scss/_clix2017.scss */ +/* line 109, ../../../scss/_clix2017.scss */ .landing_page .landing_page_background { height: 100vh; width: 100%; position: absolute; z-index: -1; } -/* line 109, ../../../scss/_clix2017.scss */ +/* line 117, ../../../scss/_clix2017.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 113, ../../../scss/_clix2017.scss */ +/* line 121, ../../../scss/_clix2017.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 113, ../../../scss/_clix2017.scss */ + /* line 121, ../../../scss/_clix2017.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 121, ../../../scss/_clix2017.scss */ +/* line 129, ../../../scss/_clix2017.scss */ .landing_page .clix_brief p { color: #fff; font-weight: 300; } -/* line 134, ../../../scss/_clix2017.scss */ +/* line 142, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -118,12 +127,12 @@ h5 { padding: 30px 40px 21px; } @media screen and (min-width: 1025px) { - /* line 134, ../../../scss/_clix2017.scss */ + /* line 142, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix { margin: 30px; } } -/* line 146, ../../../scss/_clix2017.scss */ +/* line 154, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix > span { color: #6658af; font-weight: bold; @@ -132,26 +141,26 @@ h5 { display: inline-block; vertical-align: middle; } -/* line 156, ../../../scss/_clix2017.scss */ +/* line 164, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix p { color: #b0108d; padding: 25px 0px 30px; font-weight: 300; } -/* line 164, ../../../scss/_clix2017.scss */ +/* line 172, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 167, ../../../scss/_clix2017.scss */ +/* line 175, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 170, ../../../scss/_clix2017.scss */ +/* line 178, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix form input { height: 45px; margin: 5px 0px 24px; } -/* line 176, ../../../scss/_clix2017.scss */ +/* line 184, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .flowers { left: 50px; height: 200px; @@ -160,18 +169,18 @@ h5 { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 176, ../../../scss/_clix2017.scss */ + /* line 184, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .flowers { width: 100%; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 176, ../../../scss/_clix2017.scss */ + /* line 184, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .flowers { width: 100%; } } -/* line 191, ../../../scss/_clix2017.scss */ +/* line 199, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .bees { position: absolute; top: 5px; @@ -180,17 +189,17 @@ h5 { float: left; } @media screen and (max-width: 450px) { - /* line 191, ../../../scss/_clix2017.scss */ + /* line 199, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .bees { right: 15px; height: 50px; } } -/* line 205, ../../../scss/_clix2017.scss */ +/* line 213, ../../../scss/_clix2017.scss */ .landing_page .invitation_to_clix .landing-page-text { color: #6153ae; } -/* line 213, ../../../scss/_clix2017.scss */ +/* line 221, ../../../scss/_clix2017.scss */ .landing_page input.button { border-radius: 10px; text-transform: uppercase; @@ -198,7 +207,7 @@ h5 { margin-top: 80px; background-color: rgba(255, 193, 78, 0.3); } -/* line 223, ../../../scss/_clix2017.scss */ +/* line 231, ../../../scss/_clix2017.scss */ .landing_page a.grey { color: #999; /*display: inline-block; @@ -211,21 +220,21 @@ h5 { } /* Login Page */ -/* line 239, ../../../scss/_clix2017.scss */ +/* line 247, ../../../scss/_clix2017.scss */ .login-page { position: relative; /*background: url(/static/ndf/images/login-background.png);*/ background-size: 100% 100%; min-height: 100vh; } -/* line 245, ../../../scss/_clix2017.scss */ +/* line 253, ../../../scss/_clix2017.scss */ .login-page .login-page-opacity { height: 100%; width: 100%; position: absolute; opacity: 0.6; } -/* line 257, ../../../scss/_clix2017.scss */ +/* line 265, ../../../scss/_clix2017.scss */ .login-page .login-page-form { background-color: #fff; border-radius: 10px; @@ -236,12 +245,12 @@ h5 { margin: 100px auto; box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); } -/* line 268, ../../../scss/_clix2017.scss */ +/* line 276, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-page-header img { height: 80px; width: 280px; } -/* line 272, ../../../scss/_clix2017.scss */ +/* line 280, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-page-header span { display: block; text-transform: uppercase; @@ -249,41 +258,45 @@ h5 { font-weight: 600; letter-spacing: 1px; } -/* line 280, ../../../scss/_clix2017.scss */ +/* line 288, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha { margin: 10px 0; } -/* line 283, ../../../scss/_clix2017.scss */ +/* line 291, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha > div { display: inline-block; vertical-align: top; } -/* line 287, ../../../scss/_clix2017.scss */ +/* line 295, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha .fi-refresh { color: #A0148E; } -/* line 292, ../../../scss/_clix2017.scss */ +/* line 300, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha #captcha-content th { display: none; } -/* line 295, ../../../scss/_clix2017.scss */ +/* line 303, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha #captcha-content td > input { display: inline-block; } -/* line 298, ../../../scss/_clix2017.scss */ +/* line 306, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-captcha #captcha-content td > input#id_captcha_1 { width: 130px; } -/* line 305, ../../../scss/_clix2017.scss */ +/* line 313, ../../../scss/_clix2017.scss */ .login-page .login-page-form .login-button .button { + background-color: #B1B1B1; font-weight: 600; border-bottom: 3.5px solid #DADADA; border-radius: 5px; padding: 9px; - background-color: #a75692; +} +/* line 321, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-button .button:hover { + background-color: #CC1AB5; border-color: #881378; } -/* line 316, ../../../scss/_clix2017.scss */ +/* line 329, ../../../scss/_clix2017.scss */ .login-page .login-page-form .explore-button .button { background-color: #B1B1B1; font-weight: 600; @@ -292,26 +305,26 @@ h5 { padding: 9px; margin-top: 160px; } -/* line 325, ../../../scss/_clix2017.scss */ +/* line 338, ../../../scss/_clix2017.scss */ .login-page .login-page-form .explore-button .button:hover { background-color: #CC1AB5; border-color: #881378; } -/* line 335, ../../../scss/_clix2017.scss */ +/* line 348, ../../../scss/_clix2017.scss */ .login-page .login-page-form .forgot-password label { text-align: center; text-decoration: underline; } -/* line 342, ../../../scss/_clix2017.scss */ +/* line 355, ../../../scss/_clix2017.scss */ .login-page .login-page-form .register-user label { margin: 10px 0px 0px; } -/* line 346, ../../../scss/_clix2017.scss */ +/* line 359, ../../../scss/_clix2017.scss */ .login-page .login-page-form .register-user span { color: #A0148E; } -/* line 355, ../../../scss/_clix2017.scss */ +/* line 368, ../../../scss/_clix2017.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -323,31 +336,32 @@ h5 { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 366, ../../../scss/_clix2017.scss */ +/* line 379, ../../../scss/_clix2017.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; color: #6a0054; } -/* line 374, ../../../scss/_clix2017.scss */ +/* line 387, ../../../scss/_clix2017.scss */ .login-home-button { border-radius: 5px; text-transform: uppercase; margin-left: 70px; + color: #ffc14e; padding: 6px 17px; font-family: "OpenSans-Semibold", sans-serif; margin-top: 50px; border: 2px solid #ffc14e; - color: white; - background-color: #a75692; } -/* line 385, ../../../scss/_clix2017.scss */ +/* line 397, ../../../scss/_clix2017.scss */ .login-home-button:hover { + background-color: rgba(255, 193, 78, 0.3); cursor: pointer; + color: white; } -/* line 393, ../../../scss/_clix2017.scss */ +/* line 407, ../../../scss/_clix2017.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -355,34 +369,34 @@ h5 { margin-bottom: 30px; } -/* line 403, ../../../scss/_clix2017.scss */ +/* line 417, ../../../scss/_clix2017.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 408, ../../../scss/_clix2017.scss */ +/* line 422, ../../../scss/_clix2017.scss */ .top-bar-second .name { text-align: center; } -/* line 411, ../../../scss/_clix2017.scss */ +/* line 425, ../../../scss/_clix2017.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 421, ../../../scss/_clix2017.scss */ +/* line 435, ../../../scss/_clix2017.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 429, ../../../scss/_clix2017.scss */ +/* line 443, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 431, ../../../scss/_clix2017.scss */ +/* line 445, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -391,31 +405,31 @@ h5 { font-weight: bold; letter-spacing: 0.5px; } -/* line 442, ../../../scss/_clix2017.scss */ +/* line 456, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 450, ../../../scss/_clix2017.scss */ +/* line 464, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 456, ../../../scss/_clix2017.scss */ +/* line 470, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 467, ../../../scss/_clix2017.scss */ + /* line 481, ../../../scss/_clix2017.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 469, ../../../scss/_clix2017.scss */ + /* line 483, ../../../scss/_clix2017.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 476, ../../../scss/_clix2017.scss */ + /* line 490, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -423,32 +437,32 @@ h5 { line-height: 52px; border-left-width: 0px; } - /* line 483, ../../../scss/_clix2017.scss */ + /* line 497, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 489, ../../../scss/_clix2017.scss */ + /* line 503, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 497, ../../../scss/_clix2017.scss */ + /* line 511, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 507, ../../../scss/_clix2017.scss */ + /* line 521, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 516, ../../../scss/_clix2017.scss */ + /* line 530, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 523, ../../../scss/_clix2017.scss */ + /* line 537, ../../../scss/_clix2017.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -461,43 +475,44 @@ h5 { } } /*Overridding foundation css*/ -/* line 546, ../../../scss/_clix2017.scss */ +/* line 560, ../../../scss/_clix2017.scss */ .top-bar, .top-bar .name { height: 52px; background: #164A7B; } -/* line 553, ../../../scss/_clix2017.scss */ +/* line 567, ../../../scss/_clix2017.scss */ .top-bar .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; } -/* line 557, ../../../scss/_clix2017.scss */ +/* line 571, ../../../scss/_clix2017.scss */ .top-bar .name { text-align: center; } -/* line 560, ../../../scss/_clix2017.scss */ +/* line 574, ../../../scss/_clix2017.scss */ .top-bar .name .close-dropdown, .top-bar .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 569, ../../../scss/_clix2017.scss */ +/* line 583, ../../../scss/_clix2017.scss */ .top-bar li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 577, ../../../scss/_clix2017.scss */ +/* line 591, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul.left li { border-right: 2px solid #16539f; } -/* line 580, ../../../scss/_clix2017.scss */ +/* line 596, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li { - background: #164A7B; + /* background: $primary-blue; */ + background: rgba(22, 74, 123, 0.04); } -/* line 584, ../../../scss/_clix2017.scss */ +/* line 601, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li > a { color: #ffffff; line-height: 40px; @@ -508,11 +523,11 @@ h5 { font-family: "OpenSans-Regular"; font-size: 16px; } -/* line 596, ../../../scss/_clix2017.scss */ +/* line 613, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li:hover > a { color: #fff; } -/* line 606, ../../../scss/_clix2017.scss */ +/* line 623, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li input { color: #74b3dc; background: #164A7B; @@ -520,49 +535,49 @@ h5 { font-size: 15px; letter-spacing: 1.4px; } -/* line 614, ../../../scss/_clix2017.scss */ +/* line 631, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li input:hover { color: white; border-left: 4px solid #ffc14e; background: #164A7B; } -/* line 621, ../../../scss/_clix2017.scss */ +/* line 638, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li .lang-font { font-family: "OpenSans-Light"; font-size: 14px; } -/* line 628, ../../../scss/_clix2017.scss */ +/* line 645, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li.active { color: #fff; } -/* line 633, ../../../scss/_clix2017.scss */ +/* line 650, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul li.active > a { color: #fff; } -/* line 641, ../../../scss/_clix2017.scss */ +/* line 658, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section .dropdown li.parent-link a { display: none; } -/* line 648, ../../../scss/_clix2017.scss */ +/* line 665, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 659, ../../../scss/_clix2017.scss */ + /* line 676, ../../../scss/_clix2017.scss */ .top-bar .title-area { box-shadow: none; } - /* line 661, ../../../scss/_clix2017.scss */ + /* line 678, ../../../scss/_clix2017.scss */ .top-bar .title-area .name { text-align: right; } - /* line 666, ../../../scss/_clix2017.scss */ + /* line 683, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul.left li > a { - padding: 0px 20px; + padding: 0px 30px; } - /* line 668, ../../../scss/_clix2017.scss */ + /* line 685, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section ul.left li > a.active { color: #fff; font-size: 17px; @@ -570,33 +585,33 @@ h5 { margin-top: -3px; border-bottom: 3px solid #ffc14e; } - /* line 678, ../../../scss/_clix2017.scss */ + /* line 698, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; border-bottom: 0px; - line-height: 50px; + line-height: 52px; border-left-width: 0px; font-family: OpenSans-Regular; } - /* line 688, ../../../scss/_clix2017.scss */ + /* line 708, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section li:not(.has-form).active a:not(.button) { color: #fff; font-family: OpenSans-Bold; font-size: 18px; } - /* line 699, ../../../scss/_clix2017.scss */ - .top-bar .top-bar-section li:not(.has-form).has-dropdown a:not(.button) a:not(.not-click):hover { + /* line 719, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form).has-dropdown a:not(.button) .logout:hover { color: #74b3dc; border-bottom: 0px; border-left: 3px solid #ffc14e; } - /* line 711, ../../../scss/_clix2017.scss */ - .top-bar .top-bar-section li.active:not(.has-form) a:not(.button):hover { + /* line 728, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form).active:not(.has-form) a:not(.button):hover { background: transparent; color: #fff; } - /* line 719, ../../../scss/_clix2017.scss */ + /* line 737, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section .profile-menu > a svg { height: 52px; width: 52px; @@ -604,13 +619,13 @@ h5 { background: #fff; margin-right: 15px; } - /* line 730, ../../../scss/_clix2017.scss */ + /* line 748, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 738, ../../../scss/_clix2017.scss */ + /* line 756, ../../../scss/_clix2017.scss */ .top-bar .top-bar-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar .top-bar-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #50c2fa; @@ -623,35 +638,35 @@ h5 { } } /*Custom css*/ -/* line 759, ../../../scss/_clix2017.scss */ +/* line 779, ../../../scss/_clix2017.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 763, ../../../scss/_clix2017.scss */ +/* line 783, ../../../scss/_clix2017.scss */ .icons-medium { line-height: 23px; vertical-align: sub; } -/* line 768, ../../../scss/_clix2017.scss */ +/* line 788, ../../../scss/_clix2017.scss */ .icons-large { line-height: 45px; } -/* line 773, ../../../scss/_clix2017.scss */ +/* line 793, ../../../scss/_clix2017.scss */ .round-icon { border-radius: 100%; height: 20px; padding: 2px 5px; } -/* line 780, ../../../scss/_clix2017.scss */ +/* line 800, ../../../scss/_clix2017.scss */ .hide { display: none !important; } -/* line 783, ../../../scss/_clix2017.scss */ +/* line 803, ../../../scss/_clix2017.scss */ .badge { display: inline-block; height: 21px; @@ -660,19 +675,19 @@ h5 { line-height: 21px; text-align: center; } -/* line 792, ../../../scss/_clix2017.scss */ +/* line 812, ../../../scss/_clix2017.scss */ .badge.badge-blue { background-color: #74b3dc; color: #fff; } -/* line 800, ../../../scss/_clix2017.scss */ +/* line 820, ../../../scss/_clix2017.scss */ #menu_bar_gstudio .user-profile-pic-small { height: 46px; width: 46px; margin: 0px 10px; } -/* line 806, ../../../scss/_clix2017.scss */ +/* line 826, ../../../scss/_clix2017.scss */ #menu_bar_gstudio .loggedin-user { # background: #505e6c; border-radius: 100%; @@ -682,18 +697,18 @@ h5 { margin: 5px 5px 0px 5px; overflow: hidden; } -/* line 816, ../../../scss/_clix2017.scss */ +/* line 836, ../../../scss/_clix2017.scss */ #menu_bar_gstudio .loggedin-user img { height: 100%; width: 100%; } /* group_list */ -/* line 823, ../../../scss/_clix2017.scss */ +/* line 843, ../../../scss/_clix2017.scss */ .group_breadcumbs { color: #6e8ba6; } -/* line 825, ../../../scss/_clix2017.scss */ +/* line 845, ../../../scss/_clix2017.scss */ .group_breadcumbs a { display: inline-block; margin: 15px auto; @@ -701,7 +716,7 @@ h5 { letter-spacing: 1px; } -/* line 833, ../../../scss/_clix2017.scss */ +/* line 853, ../../../scss/_clix2017.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -712,34 +727,34 @@ h5 { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 842, ../../../scss/_clix2017.scss */ +/* line 862, ../../../scss/_clix2017.scss */ .group_tile:hover { opacity: 0.7; } -/* line 845, ../../../scss/_clix2017.scss */ +/* line 865, ../../../scss/_clix2017.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 852, ../../../scss/_clix2017.scss */ +/* line 872, ../../../scss/_clix2017.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 859, ../../../scss/_clix2017.scss */ +/* line 879, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 862, ../../../scss/_clix2017.scss */ +/* line 882, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 865, ../../../scss/_clix2017.scss */ +/* line 885, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -747,15 +762,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 873, ../../../scss/_clix2017.scss */ +/* line 893, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 877, ../../../scss/_clix2017.scss */ +/* line 897, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 879, ../../../scss/_clix2017.scss */ +/* line 899, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -766,27 +781,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 889, ../../../scss/_clix2017.scss */ +/* line 909, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 894, ../../../scss/_clix2017.scss */ +/* line 914, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 900, ../../../scss/_clix2017.scss */ +/* line 920, ../../../scss/_clix2017.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 907, ../../../scss/_clix2017.scss */ +/* line 927, ../../../scss/_clix2017.scss */ .max-width { max-width: 100%; } -/* line 912, ../../../scss/_clix2017.scss */ +/* line 932, ../../../scss/_clix2017.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -797,7 +812,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 921, ../../../scss/_clix2017.scss */ +/* line 941, ../../../scss/_clix2017.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -814,7 +829,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 934, ../../../scss/_clix2017.scss */ +/* line 954, ../../../scss/_clix2017.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -824,18 +839,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 943, ../../../scss/_clix2017.scss */ +/* line 963, ../../../scss/_clix2017.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 948, ../../../scss/_clix2017.scss */ +/* line 968, ../../../scss/_clix2017.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 953, ../../../scss/_clix2017.scss */ +/* line 973, ../../../scss/_clix2017.scss */ .group_content .group_sections_content { min-height: 400px; background-color: #fff; @@ -843,11 +858,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: -1px; border: 1px solid #80808014; } -/* line 960, ../../../scss/_clix2017.scss */ +/* line 980, ../../../scss/_clix2017.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 964, ../../../scss/_clix2017.scss */ +/* line 984, ../../../scss/_clix2017.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -858,9 +873,8 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px 0px 0px; cursor: pointer; border-radius: 3px; - margin-left: 130px; } -/* line 977, ../../../scss/_clix2017.scss */ +/* line 996, ../../../scss/_clix2017.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -874,7 +888,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 992, ../../../scss/_clix2017.scss */ +/* line 1010, ../../../scss/_clix2017.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -883,22 +897,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 1001, ../../../scss/_clix2017.scss */ +/* line 1019, ../../../scss/_clix2017.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 1008, ../../../scss/_clix2017.scss */ +/* line 1026, ../../../scss/_clix2017.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 1014, ../../../scss/_clix2017.scss */ +/* line 1032, ../../../scss/_clix2017.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 1016, ../../../scss/_clix2017.scss */ +/* line 1034, ../../../scss/_clix2017.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -907,15 +921,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 1023, ../../../scss/_clix2017.scss */ +/* line 1041, ../../../scss/_clix2017.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 1027, ../../../scss/_clix2017.scss */ +/* line 1045, ../../../scss/_clix2017.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 1033, ../../../scss/_clix2017.scss */ +/* line 1051, ../../../scss/_clix2017.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -924,7 +938,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 1044, ../../../scss/_clix2017.scss */ +/* line 1062, ../../../scss/_clix2017.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -933,24 +947,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 1053, ../../../scss/_clix2017.scss */ +/* line 1071, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview { height: 200px; width: 99.9%; border-width: 5px; } -/* line 1060, ../../../scss/_clix2017.scss */ +/* line 1078, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 1065, ../../../scss/_clix2017.scss */ +/* line 1083, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 1069, ../../../scss/_clix2017.scss */ +/* line 1087, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -961,14 +975,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 1079, ../../../scss/_clix2017.scss */ +/* line 1097, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 1086, ../../../scss/_clix2017.scss */ + /* line 1104, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -976,7 +990,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 1095, ../../../scss/_clix2017.scss */ + /* line 1113, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -984,7 +998,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 1102, ../../../scss/_clix2017.scss */ + /* line 1120, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -992,14 +1006,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 1109, ../../../scss/_clix2017.scss */ + /* line 1127, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 1117, ../../../scss/_clix2017.scss */ +/* line 1135, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -1014,14 +1028,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 1133, ../../../scss/_clix2017.scss */ +/* line 1151, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 1140, ../../../scss/_clix2017.scss */ + /* line 1158, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -1032,7 +1046,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 1151, ../../../scss/_clix2017.scss */ + /* line 1169, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -1043,7 +1057,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 1162, ../../../scss/_clix2017.scss */ + /* line 1180, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -1054,7 +1068,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 1173, ../../../scss/_clix2017.scss */ + /* line 1191, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -1064,7 +1078,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 1184, ../../../scss/_clix2017.scss */ +/* line 1202, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -1079,14 +1093,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 1200, ../../../scss/_clix2017.scss */ +/* line 1218, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 1207, ../../../scss/_clix2017.scss */ + /* line 1225, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -1097,7 +1111,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 1218, ../../../scss/_clix2017.scss */ + /* line 1236, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -1108,7 +1122,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 1229, ../../../scss/_clix2017.scss */ + /* line 1247, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -1119,7 +1133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 1240, ../../../scss/_clix2017.scss */ + /* line 1258, ../../../scss/_clix2017.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -1129,11 +1143,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 1251, ../../../scss/_clix2017.scss */ +/* line 1269, ../../../scss/_clix2017.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 1253, ../../../scss/_clix2017.scss */ +/* line 1271, ../../../scss/_clix2017.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -1142,11 +1156,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 1261, ../../../scss/_clix2017.scss */ +/* line 1279, ../../../scss/_clix2017.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 1267, ../../../scss/_clix2017.scss */ +/* line 1285, ../../../scss/_clix2017.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -1155,7 +1169,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 1278, ../../../scss/_clix2017.scss */ +/* line 1296, ../../../scss/_clix2017.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -1166,22 +1180,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 1288, ../../../scss/_clix2017.scss */ +/* line 1306, ../../../scss/_clix2017.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 1291, ../../../scss/_clix2017.scss */ +/* line 1309, ../../../scss/_clix2017.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 1296, ../../../scss/_clix2017.scss */ +/* line 1314, ../../../scss/_clix2017.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 1306, ../../../scss/_clix2017.scss */ +/* line 1324, ../../../scss/_clix2017.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -1192,26 +1206,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 1316, ../../../scss/_clix2017.scss */ +/* line 1334, ../../../scss/_clix2017.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 1319, ../../../scss/_clix2017.scss */ +/* line 1337, ../../../scss/_clix2017.scss */ .template_tile .template_preview img { width: 100%; } -/* line 1323, ../../../scss/_clix2017.scss */ +/* line 1341, ../../../scss/_clix2017.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 1329, ../../../scss/_clix2017.scss */ +/* line 1347, ../../../scss/_clix2017.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 1331, ../../../scss/_clix2017.scss */ +/* line 1349, ../../../scss/_clix2017.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -1220,7 +1234,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 1340, ../../../scss/_clix2017.scss */ +/* line 1358, ../../../scss/_clix2017.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -1229,7 +1243,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 1354, ../../../scss/_clix2017.scss */ +/* line 1370, ../../../scss/_clix2017.scss */ +.preview_asset_page { + word-wrap: break-word; + width: 200%; + min-height: 350px; + margin-left: 14px; +} + +/* line 1379, ../../../scss/_clix2017.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -1238,31 +1260,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 14px; } -/* line 1362, ../../../scss/_clix2017.scss */ +/* line 1387, ../../../scss/_clix2017.scss */ h6 { margin-left: 15px; } /*Custom css*/ -/* line 1368, ../../../scss/_clix2017.scss */ +/* line 1393, ../../../scss/_clix2017.scss */ .add_more_files { color: #aaa; letter-spacing: 0.6px; margin-left: 10px; } -/* line 1376, ../../../scss/_clix2017.scss */ +/* line 1401, ../../../scss/_clix2017.scss */ input.trans-sub[type="text"], input.trans-sub[type="file"] { margin-top: 5px; margin-left: 20px; } -/* line 1382, ../../../scss/_clix2017.scss */ +/* line 1407, ../../../scss/_clix2017.scss */ input.trans-sub[type="file"]::-webkit-file-upload-button { visibility: hidden; } -/* line 1385, ../../../scss/_clix2017.scss */ +/* line 1410, ../../../scss/_clix2017.scss */ input.trans-sub[type="file"]:before { content: 'Select files'; display: inline-block; @@ -1280,7 +1302,7 @@ input.trans-sub[type="file"]:before { margin-left: 20px; } -/* line 1402, ../../../scss/_clix2017.scss */ +/* line 1427, ../../../scss/_clix2017.scss */ input.trans-sub[type="file"] { padding: 5px; margin-top: 10px; @@ -1290,31 +1312,31 @@ input.trans-sub[type="file"] { width: 98%; } -/* line 1410, ../../../scss/_clix2017.scss */ +/* line 1435, ../../../scss/_clix2017.scss */ input.trans-sub[type="text"] { text-align: left; } -/* line 1415, ../../../scss/_clix2017.scss */ +/* line 1440, ../../../scss/_clix2017.scss */ input[type="text"], input[type="file"] { margin-top: 5px; } -/* line 1418, ../../../scss/_clix2017.scss */ +/* line 1443, ../../../scss/_clix2017.scss */ label { - font-size: 12px; - text-transform: uppercase; - color: #99aaba; - margin-bottom: 7px; - margin-left: 20px; + font-size: 15px; + text-transform: initial; + color: rgba(43, 51, 63, 0.75); + margin-bottom: 15px; + margin-left: 0px; } -/* line 1427, ../../../scss/_clix2017.scss */ +/* line 1452, ../../../scss/_clix2017.scss */ input[type="file"]::-webkit-file-upload-button { visibility: hidden; } -/* line 1430, ../../../scss/_clix2017.scss */ +/* line 1455, ../../../scss/_clix2017.scss */ input[type="file"]:before { content: 'Select files'; display: inline-block; @@ -1331,7 +1353,7 @@ input[type="file"]:before { float: right; } -/* line 1446, ../../../scss/_clix2017.scss */ +/* line 1471, ../../../scss/_clix2017.scss */ input[type="file"] { padding: 5px; margin-top: 10px; @@ -1341,7 +1363,7 @@ input[type="file"] { width: 95%; } -/* line 1458, ../../../scss/_clix2017.scss */ +/* line 1483, ../../../scss/_clix2017.scss */ input[type="button"] { -webkit-appearance: button; cursor: pointer; @@ -1349,7 +1371,7 @@ input[type="button"] { width: 8%; } -/* line 1469, ../../../scss/_clix2017.scss */ +/* line 1494, ../../../scss/_clix2017.scss */ .select-language { display: block; border: 1px solid #999; @@ -1361,20 +1383,20 @@ input[type="button"] { border-color: #cc7769; } -/* line 1481, ../../../scss/_clix2017.scss */ +/* line 1506, ../../../scss/_clix2017.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 1486, ../../../scss/_clix2017.scss */ +/* line 1511, ../../../scss/_clix2017.scss */ #asset_content_desc, #asset_content_name { color: black !important; font-size: 13px; } /* Buttons custom css */ -/* line 1492, ../../../scss/_clix2017.scss */ +/* line 1517, ../../../scss/_clix2017.scss */ .button-hollow-white { background: inherit; border: 2px solid #fff; @@ -1389,7 +1411,7 @@ input[type="button"] { } /* Buttons custom css */ -/* line 1505, ../../../scss/_clix2017.scss */ +/* line 1530, ../../../scss/_clix2017.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -1399,11 +1421,11 @@ input[type="button"] { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 1514, ../../../scss/_clix2017.scss */ +/* line 1539, ../../../scss/_clix2017.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 1518, ../../../scss/_clix2017.scss */ +/* line 1543, ../../../scss/_clix2017.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -1411,7 +1433,7 @@ input[type="button"] { font-weight: 600; } -/* line 1527, ../../../scss/_clix2017.scss */ +/* line 1552, ../../../scss/_clix2017.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -1424,12 +1446,12 @@ input[type="button"] { font-size: 13px; letter-spacing: 1.2px; } -/* line 1539, ../../../scss/_clix2017.scss */ +/* line 1564, ../../../scss/_clix2017.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 1545, ../../../scss/_clix2017.scss */ +/* line 1570, ../../../scss/_clix2017.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -1443,31 +1465,13 @@ input[type="button"] { margin-top: 8px; cursor: pointer; } -/* line 1557, ../../../scss/_clix2017.scss */ +/* line 1582, ../../../scss/_clix2017.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 1563, ../../../scss/_clix2017.scss */ -.pink-button { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 1574, ../../../scss/_clix2017.scss */ -.pink-button:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} - -/* line 1579, ../../../scss/_clix2017.scss */ +/* line 1588, ../../../scss/_clix2017.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -1480,13 +1484,13 @@ input[type="button"] { margin-bottom: 8px; margin-top: 10px; } -/* line 1590, ../../../scss/_clix2017.scss */ +/* line 1599, ../../../scss/_clix2017.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 1598, ../../../scss/_clix2017.scss */ +/* line 1607, ../../../scss/_clix2017.scss */ .orange-button-subtitle { color: #ce7869; padding: 7px 14px; @@ -1499,13 +1503,13 @@ input[type="button"] { margin-bottom: 8px; margin-top: 10px; } -/* line 1609, ../../../scss/_clix2017.scss */ +/* line 1618, ../../../scss/_clix2017.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 1616, ../../../scss/_clix2017.scss */ +/* line 1625, ../../../scss/_clix2017.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -1516,15 +1520,14 @@ input[type="button"] { border-radius: 4px; margin-right: 30px; margin-bottom: 8px; - margin-top: 300px; } -/* line 1627, ../../../scss/_clix2017.scss */ +/* line 1635, ../../../scss/_clix2017.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 1634, ../../../scss/_clix2017.scss */ +/* line 1642, ../../../scss/_clix2017.scss */ .disab-button { margin-right: 10px; background-color: #fff; @@ -1532,13 +1535,13 @@ input[type="button"] { font-size: 14px; } -/* line 1642, ../../../scss/_clix2017.scss */ +/* line 1650, ../../../scss/_clix2017.scss */ .save-asset { margin-top: 9px; margin-right: -133px; } -/* line 1646, ../../../scss/_clix2017.scss */ +/* line 1654, ../../../scss/_clix2017.scss */ .asset-save-button { color: #ce7869; display: inline-block; @@ -1558,7 +1561,7 @@ input[type="button"] { margin-top: 5px; } -/* line 1666, ../../../scss/_clix2017.scss */ +/* line 1674, ../../../scss/_clix2017.scss */ .blue-white-button { color: #fff; background: #164A7B; @@ -1569,7 +1572,7 @@ input[type="button"] { padding: 8px 10px; } -/* line 1676, ../../../scss/_clix2017.scss */ +/* line 1684, ../../../scss/_clix2017.scss */ button[disabled], .button.disabled, .button[disabled] { background-color: #eefaff; border-color: #eefaff; @@ -1583,17 +1586,17 @@ button[disabled], .button.disabled, .button[disabled] { padding: 8px 10px; } -/* line 1692, ../../../scss/_clix2017.scss */ +/* line 1700, ../../../scss/_clix2017.scss */ .button-small { padding: 1px 5px; } /* Create Curriculum */ -/* line 1697, ../../../scss/_clix2017.scss */ +/* line 1705, ../../../scss/_clix2017.scss */ ul.jqtree_common { position: relative; } -/* line 1699, ../../../scss/_clix2017.scss */ +/* line 1707, ../../../scss/_clix2017.scss */ ul.jqtree_common:before { border-width: 0px 0px 1px 1px; position: absolute; @@ -1618,11 +1621,11 @@ ul.jqtree_common:before { width: 15px; } }*/ -/* line 1724, ../../../scss/_clix2017.scss */ +/* line 1732, ../../../scss/_clix2017.scss */ ul:not(:only-child) li:first-child { position: relative; } -/* line 1726, ../../../scss/_clix2017.scss */ +/* line 1734, ../../../scss/_clix2017.scss */ ul:not(:only-child) li:first-child:before { border-width: 1px 0px 0px 0px; position: absolute; @@ -1634,11 +1637,11 @@ ul:not(:only-child) li:first-child:before { width: 30px; } -/* line 1737, ../../../scss/_clix2017.scss */ +/* line 1745, ../../../scss/_clix2017.scss */ .jqtree_common .jqtree-element:not(.leaf_node):not(:only-child), .jqtree_common .jqtree-element.leaf_node { position: relative; } -/* line 1739, ../../../scss/_clix2017.scss */ +/* line 1747, ../../../scss/_clix2017.scss */ .jqtree_common .jqtree-element:not(.leaf_node):not(:only-child):before, .jqtree_common .jqtree-element.leaf_node:before { border-width: 1px 0px 0px 0px; position: absolute; @@ -1650,31 +1653,31 @@ ul:not(:only-child) li:first-child:before { width: 10px; } -/* line 1752, ../../../scss/_clix2017.scss */ +/* line 1760, ../../../scss/_clix2017.scss */ ul.jqtree-tree .jqtree-element { margin-top: 15px; } -/* line 1756, ../../../scss/_clix2017.scss */ +/* line 1764, ../../../scss/_clix2017.scss */ ul.jqtree-tree ul.jqtree_common { margin-left: 35px; } -/* line 1760, ../../../scss/_clix2017.scss */ +/* line 1768, ../../../scss/_clix2017.scss */ ul.jqtree-tree li.jqtree-selected > .jqtree-element, ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover { background: transparent; } -/* line 1764, ../../../scss/_clix2017.scss */ +/* line 1772, ../../../scss/_clix2017.scss */ ul.jqtree-tree .jqtree-toggler { color: #aaa; } -/* line 1766, ../../../scss/_clix2017.scss */ +/* line 1774, ../../../scss/_clix2017.scss */ ul.jqtree-tree .jqtree-toggler:hover { color: #aaa; } -/* line 1771, ../../../scss/_clix2017.scss */ +/* line 1779, ../../../scss/_clix2017.scss */ .curriculum_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -1685,7 +1688,7 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 15px; } -/* line 1780, ../../../scss/_clix2017.scss */ +/* line 1788, ../../../scss/_clix2017.scss */ .curriculum_creator_header { width: 100%; height: 60px; @@ -1693,13 +1696,13 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 5px 15px; box-shadow: 1px 0px 13px #000; } -/* line 1787, ../../../scss/_clix2017.scss */ +/* line 1795, ../../../scss/_clix2017.scss */ .curriculum_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 1797, ../../../scss/_clix2017.scss */ +/* line 1805, ../../../scss/_clix2017.scss */ .curriculum_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -1708,12 +1711,12 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; letter-spacing: 0.8px; } -/* line 1807, ../../../scss/_clix2017.scss */ +/* line 1815, ../../../scss/_clix2017.scss */ .curriculum_creator_header .course_actions ul li.active, .curriculum_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 1815, ../../../scss/_clix2017.scss */ +/* line 1823, ../../../scss/_clix2017.scss */ .curriculum_list { width: 100%; height: 60px; @@ -1722,14 +1725,14 @@ ul.jqtree-tree .jqtree-toggler:hover { box-shadow: 0px 1px 4px #004; color: #2b78e4; } -/* line 1822, ../../../scss/_clix2017.scss */ +/* line 1830, ../../../scss/_clix2017.scss */ .curriculum_list a { color: #164A7B; font-size: 20px; font-weight: 600; } -/* line 1829, ../../../scss/_clix2017.scss */ +/* line 1837, ../../../scss/_clix2017.scss */ .curriculum_list_header { max-width: 1176px !important; margin: 0 auto !important; @@ -1752,7 +1755,7 @@ ul.jqtree-tree .jqtree-toggler:hover { box-shadow: 0px 3px 6px #000; background-color: #ffffff; } -/* line 1850, ../../../scss/_clix2017.scss */ +/* line 1858, ../../../scss/_clix2017.scss */ .curriculum_list_header .title-curriculum { font-family: inherit !important; font-weight: bold !important; @@ -1762,7 +1765,7 @@ ul.jqtree-tree .jqtree-toggler:hover { font-weight: 500 !important; font-size: 20px !important; } -/* line 1860, ../../../scss/_clix2017.scss */ +/* line 1868, ../../../scss/_clix2017.scss */ .curriculum_list_header .add-curriculum { position: relative !important; display: -moz-box !important; @@ -1778,7 +1781,7 @@ ul.jqtree-tree .jqtree-toggler:hover { font-weight: 500 !important; } -/* line 1876, ../../../scss/_clix2017.scss */ +/* line 1884, ../../../scss/_clix2017.scss */ .curriculum_listing { max-width: 1176px !important; margin: 0 auto !important; @@ -1796,7 +1799,7 @@ ul.jqtree-tree .jqtree-toggler:hover { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 1893, ../../../scss/_clix2017.scss */ +/* line 1901, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -1817,11 +1820,11 @@ ul.jqtree-tree .jqtree-toggler:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 1912, ../../../scss/_clix2017.scss */ +/* line 1920, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content:hover { background: #F0F1F2 !important; } -/* line 1915, ../../../scss/_clix2017.scss */ +/* line 1923, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content .curriculum_content_left { display: -moz-box !important; display: -ms-flexbox !important; @@ -1834,7 +1837,7 @@ ul.jqtree-tree .jqtree-toggler:hover { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 1926, ../../../scss/_clix2017.scss */ +/* line 1934, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details { display: -moz-box !important; display: -ms-flexbox !important; @@ -1853,7 +1856,13 @@ ul.jqtree-tree .jqtree-toggler:hover { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; } -/* line 1943, ../../../scss/_clix2017.scss */ +/* line 1951, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 1956, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; @@ -1866,7 +1875,7 @@ ul.jqtree-tree .jqtree-toggler:hover { overflow: hidden !important; text-overflow: ellipsis !important; } -/* line 1955, ../../../scss/_clix2017.scss */ +/* line 1969, ../../../scss/_clix2017.scss */ .curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; @@ -1876,28 +1885,28 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-top: 4px !important; } -/* line 1968, ../../../scss/_clix2017.scss */ +/* line 1982, ../../../scss/_clix2017.scss */ .explore-header { line-height: 4em; } -/* line 1970, ../../../scss/_clix2017.scss */ +/* line 1984, ../../../scss/_clix2017.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 1976, ../../../scss/_clix2017.scss */ +/* line 1990, ../../../scss/_clix2017.scss */ .explore-header .heading a { color: #fff; } -/* line 1993, ../../../scss/_clix2017.scss */ +/* line 2007, ../../../scss/_clix2017.scss */ .node_name_empty { border-radius: 5px; margin-top: 11px; } /*Common css*/ -/* line 2003, ../../../scss/_clix2017.scss */ +/* line 2017, ../../../scss/_clix2017.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -1906,20 +1915,20 @@ ul.jqtree-tree .jqtree-toggler:hover { border: 1px solid #B7B7B7; display: inline; } -/* line 2011, ../../../scss/_clix2017.scss */ +/* line 2025, ../../../scss/_clix2017.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2015, ../../../scss/_clix2017.scss */ +/* line 2029, ../../../scss/_clix2017.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2018, ../../../scss/_clix2017.scss */ +/* line 2032, ../../../scss/_clix2017.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2021, ../../../scss/_clix2017.scss */ +/* line 2035, ../../../scss/_clix2017.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; @@ -1927,12 +1936,12 @@ ul.jqtree-tree .jqtree-toggler:hover { /* about_course style */ /* abput and modules */ -/* line 2032, ../../../scss/_clix2017.scss */ +/* line 2046, ../../../scss/_clix2017.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2035, ../../../scss/_clix2017.scss */ +/* line 2049, ../../../scss/_clix2017.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -1943,7 +1952,7 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-left: 5px; } -/* line 2046, ../../../scss/_clix2017.scss */ +/* line 2060, ../../../scss/_clix2017.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -1953,7 +1962,7 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-top: 5px; } -/* line 2056, ../../../scss/_clix2017.scss */ +/* line 2070, ../../../scss/_clix2017.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -1964,29 +1973,29 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-left: 4px; margin-bottom: 5px; } -/* line 2067, ../../../scss/_clix2017.scss */ +/* line 2081, ../../../scss/_clix2017.scss */ .course-highlight > span { - color: #164a7b; + color: #ce7869; } /* group analytics and notifications */ -/* line 2077, ../../../scss/_clix2017.scss */ +/* line 2091, ../../../scss/_clix2017.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2080, ../../../scss/_clix2017.scss */ +/* line 2094, ../../../scss/_clix2017.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2083, ../../../scss/_clix2017.scss */ +/* line 2097, ../../../scss/_clix2017.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2086, ../../../scss/_clix2017.scss */ +/* line 2100, ../../../scss/_clix2017.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2089, ../../../scss/_clix2017.scss */ +/* line 2103, ../../../scss/_clix2017.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; letter-spacing: 0.9px; @@ -1994,7 +2003,7 @@ ul.jqtree-tree .jqtree-toggler:hover { color: #000000; display: block; } -/* line 2097, ../../../scss/_clix2017.scss */ +/* line 2111, ../../../scss/_clix2017.scss */ .course-overview-container .course-metric-count { font-weight: 600; letter-spacing: 0.5px; @@ -2002,37 +2011,37 @@ ul.jqtree-tree .jqtree-toggler:hover { color: #000000; font-size: 17px; } -/* line 2105, ../../../scss/_clix2017.scss */ +/* line 2119, ../../../scss/_clix2017.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2110, ../../../scss/_clix2017.scss */ +/* line 2124, ../../../scss/_clix2017.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2113, ../../../scss/_clix2017.scss */ +/* line 2127, ../../../scss/_clix2017.scss */ .course-overview-container .ongoing-session button { padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2121, ../../../scss/_clix2017.scss */ +/* line 2135, ../../../scss/_clix2017.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2124, ../../../scss/_clix2017.scss */ +/* line 2138, ../../../scss/_clix2017.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2127, ../../../scss/_clix2017.scss */ +/* line 2141, ../../../scss/_clix2017.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2132, ../../../scss/_clix2017.scss */ +/* line 2146, ../../../scss/_clix2017.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -2041,17 +2050,17 @@ ul.jqtree-tree .jqtree-toggler:hover { top: 1px; text-transform: uppercase; } -/* line 2140, ../../../scss/_clix2017.scss */ +/* line 2154, ../../../scss/_clix2017.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2151, ../../../scss/_clix2017.scss */ +/* line 2165, ../../../scss/_clix2017.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2155, ../../../scss/_clix2017.scss */ +/* line 2169, ../../../scss/_clix2017.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -2059,11 +2068,11 @@ ul.jqtree-tree .jqtree-toggler:hover { margin: 40px 0px; position: relative; } -/* line 2162, ../../../scss/_clix2017.scss */ +/* line 2176, ../../../scss/_clix2017.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2166, ../../../scss/_clix2017.scss */ +/* line 2180, ../../../scss/_clix2017.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -2072,7 +2081,7 @@ ul.jqtree-tree .jqtree-toggler:hover { margin: 2px 0px 15px; color: #888; } -/* line 2176, ../../../scss/_clix2017.scss */ +/* line 2190, ../../../scss/_clix2017.scss */ .course-overview-container .course-section .course-section-icon { font-size: 20px; top: -35px; @@ -2080,59 +2089,59 @@ ul.jqtree-tree .jqtree-toggler:hover { background: #ffffff; margin-left: 22px; } -/* line 2201, ../../../scss/_clix2017.scss */ +/* line 2215, ../../../scss/_clix2017.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2203, ../../../scss/_clix2017.scss */ +/* line 2217, ../../../scss/_clix2017.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2206, ../../../scss/_clix2017.scss */ +/* line 2220, ../../../scss/_clix2017.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2211, ../../../scss/_clix2017.scss */ +/* line 2225, ../../../scss/_clix2017.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2215, ../../../scss/_clix2017.scss */ +/* line 2229, ../../../scss/_clix2017.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2219, ../../../scss/_clix2017.scss */ +/* line 2233, ../../../scss/_clix2017.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2222, ../../../scss/_clix2017.scss */ +/* line 2236, ../../../scss/_clix2017.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2229, ../../../scss/_clix2017.scss */ +/* line 2243, ../../../scss/_clix2017.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2233, ../../../scss/_clix2017.scss */ +/* line 2247, ../../../scss/_clix2017.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2237, ../../../scss/_clix2017.scss */ +/* line 2251, ../../../scss/_clix2017.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2245, ../../../scss/_clix2017.scss */ +/* line 2259, ../../../scss/_clix2017.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2250, ../../../scss/_clix2017.scss */ +/* line 2264, ../../../scss/_clix2017.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -2141,7 +2150,7 @@ ul.jqtree-tree .jqtree-toggler:hover { top: 1px; text-transform: uppercase; } -/* line 2258, ../../../scss/_clix2017.scss */ +/* line 2272, ../../../scss/_clix2017.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #ffc14e; border: 1px solid #CCC; @@ -2149,12 +2158,12 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* The notification Dashboard */ -/* line 2274, ../../../scss/_clix2017.scss */ +/* line 2288, ../../../scss/_clix2017.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2278, ../../../scss/_clix2017.scss */ +/* line 2292, ../../../scss/_clix2017.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -2166,75 +2175,82 @@ ul.jqtree-tree .jqtree-toggler:hover { margin: 0em 0em; border-radius: 10px; } -/* line 2290, ../../../scss/_clix2017.scss */ +/* line 2304, ../../../scss/_clix2017.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; } -/* line 2296, ../../../scss/_clix2017.scss */ +/* line 2310, ../../../scss/_clix2017.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2299, ../../../scss/_clix2017.scss */ +/* line 2313, ../../../scss/_clix2017.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2305, ../../../scss/_clix2017.scss */ +/* line 2319, ../../../scss/_clix2017.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; padding: 0.5em 0.8em 0.6em; } -/* line 2315, ../../../scss/_clix2017.scss */ +/* line 2329, ../../../scss/_clix2017.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2320, ../../../scss/_clix2017.scss */ +/* line 2334, ../../../scss/_clix2017.scss */ .course-dashboard .course-notifications .notification-row .notification-text { letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2325, ../../../scss/_clix2017.scss */ +/* line 2339, ../../../scss/_clix2017.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { color: #424242; cursor: pointer; } -/* line 2332, ../../../scss/_clix2017.scss */ +/* line 2346, ../../../scss/_clix2017.scss */ .course-dashboard .course-notifications .notification-count { position: absolute; right: 0.5em; top: 0.3em; } -/* line 2349, ../../../scss/_clix2017.scss */ +/* line 2357, ../../../scss/_clix2017.scss */ +.notebook .notebook-header { + border-color: black; + border-style: solid; + border-width: 1px 0px; + padding-top: 1em; +} +/* line 2363, ../../../scss/_clix2017.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2352, ../../../scss/_clix2017.scss */ +/* line 2366, ../../../scss/_clix2017.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2357, ../../../scss/_clix2017.scss */ +/* line 2371, ../../../scss/_clix2017.scss */ .notebook .notebook-header .notes-count span:first-child { font-weight: 600; padding: 15px; } -/* line 2362, ../../../scss/_clix2017.scss */ +/* line 2376, ../../../scss/_clix2017.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2372, ../../../scss/_clix2017.scss */ +/* line 2386, ../../../scss/_clix2017.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2375, ../../../scss/_clix2017.scss */ +/* line 2389, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2378, ../../../scss/_clix2017.scss */ +/* line 2392, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -2244,11 +2260,11 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; position: relative; } -/* line 2387, ../../../scss/_clix2017.scss */ +/* line 2401, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; } -/* line 2391, ../../../scss/_clix2017.scss */ +/* line 2405, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -2256,21 +2272,21 @@ ul.jqtree-tree .jqtree-toggler:hover { font-weight: 700; color: #929292; } -/* line 2399, ../../../scss/_clix2017.scss */ +/* line 2413, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2402, ../../../scss/_clix2017.scss */ +/* line 2416, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; letter-spacing: 0.9px; font-weight: 500; } -/* line 2408, ../../../scss/_clix2017.scss */ +/* line 2422, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2413, ../../../scss/_clix2017.scss */ +/* line 2427, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -2278,53 +2294,53 @@ ul.jqtree-tree .jqtree-toggler:hover { color: #cba552; padding: 2px 5px; } -/* line 2421, ../../../scss/_clix2017.scss */ +/* line 2435, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 2425, ../../../scss/_clix2017.scss */ +/* line 2439, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 2431, ../../../scss/_clix2017.scss */ +/* line 2445, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 2438, ../../../scss/_clix2017.scss */ +/* line 2452, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 2440, ../../../scss/_clix2017.scss */ +/* line 2454, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 2449, ../../../scss/_clix2017.scss */ +/* line 2463, ../../../scss/_clix2017.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 2455, ../../../scss/_clix2017.scss */ +/* line 2469, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 2460, ../../../scss/_clix2017.scss */ +/* line 2474, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 2463, ../../../scss/_clix2017.scss */ +/* line 2477, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 2467, ../../../scss/_clix2017.scss */ +/* line 2481, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2472, ../../../scss/_clix2017.scss */ +/* line 2486, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -2332,172 +2348,173 @@ ul.jqtree-tree .jqtree-toggler:hover { position: relative; top: 1px; } -/* line 2479, ../../../scss/_clix2017.scss */ +/* line 2493, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; text-align: center; color: #989898; } -/* line 2486, ../../../scss/_clix2017.scss */ +/* line 2500, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2490, ../../../scss/_clix2017.scss */ +/* line 2504, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 2497, ../../../scss/_clix2017.scss */ +/* line 2511, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 2502, ../../../scss/_clix2017.scss */ +/* line 2516, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .date { font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 2508, ../../../scss/_clix2017.scss */ +/* line 2522, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { line-height: 2em; } -/* line 2513, ../../../scss/_clix2017.scss */ +/* line 2527, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 2516, ../../../scss/_clix2017.scss */ +/* line 2530, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 2522, ../../../scss/_clix2017.scss */ +/* line 2536, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; } -/* line 2530, ../../../scss/_clix2017.scss */ +/* line 2544, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-weight: 600; color: #717171; } -/* line 2537, ../../../scss/_clix2017.scss */ +/* line 2551, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 2540, ../../../scss/_clix2017.scss */ +/* line 2554, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 2545, ../../../scss/_clix2017.scss */ +/* line 2559, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 2551, ../../../scss/_clix2017.scss */ +/* line 2565, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; } -/* line 2555, ../../../scss/_clix2017.scss */ +/* line 2569, ../../../scss/_clix2017.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 2563, ../../../scss/_clix2017.scss */ +/* line 2577, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page { + color: #000000; margin-left: 15px; background-color: #fff; + padding-bottom: 30px; } -/* line 2569, ../../../scss/_clix2017.scss */ +/* line 2583, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .group_sections_content { margin-top: 5px; } -/* line 2573, ../../../scss/_clix2017.scss */ +/* line 2587, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 2577, ../../../scss/_clix2017.scss */ +/* line 2591, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 2582, ../../../scss/_clix2017.scss */ +/* line 2596, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 2585, ../../../scss/_clix2017.scss */ +/* line 2599, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; letter-spacing: 0.3px; margin-top: 5px; } -/* line 2592, ../../../scss/_clix2017.scss */ +/* line 2606, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 2594, ../../../scss/_clix2017.scss */ +/* line 2608, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 2599, ../../../scss/_clix2017.scss */ +/* line 2613, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-title { - font-size: 20px; font-weight: 500; margin-right: 1em; } -/* line 2605, ../../../scss/_clix2017.scss */ +/* line 2618, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 2611, ../../../scss/_clix2017.scss */ +/* line 2624, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 2616, ../../../scss/_clix2017.scss */ +/* line 2629, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-content .note-text { letter-spacing: 0.7px; } -/* line 2619, ../../../scss/_clix2017.scss */ +/* line 2632, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 2625, ../../../scss/_clix2017.scss */ +/* line 2638, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 2629, ../../../scss/_clix2017.scss */ +/* line 2642, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 2632, ../../../scss/_clix2017.scss */ +/* line 2645, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 2637, ../../../scss/_clix2017.scss */ +/* line 2650, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 2642, ../../../scss/_clix2017.scss */ +/* line 2655, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 2648, ../../../scss/_clix2017.scss */ +/* line 2661, ../../../scss/_clix2017.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { line-height: 0em; } /* Explore badges */ -/* line 2660, ../../../scss/_clix2017.scss */ +/* line 2673, ../../../scss/_clix2017.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -2513,7 +2530,7 @@ ul.jqtree-tree .jqtree-toggler:hover { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 2676, ../../../scss/_clix2017.scss */ +/* line 2689, ../../../scss/_clix2017.scss */ .badge_ex { background: #67c1ef; border-color: #30aae9; @@ -2524,7 +2541,7 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* line 4120, ../../../scss/_app_styles.scss */ -/* line 2686, ../../../scss/_clix2017.scss */ +/* line 2699, ../../../scss/_clix2017.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -2535,7 +2552,7 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* line 4129, ../../../scss/_app_styles.scss */ -/* line 2696, ../../../scss/_clix2017.scss */ +/* line 2709, ../../../scss/_clix2017.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -2546,7 +2563,7 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* line 4139, ../../../scss/_app_styles.scss */ -/* line 2706, ../../../scss/_clix2017.scss */ +/* line 2719, ../../../scss/_clix2017.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -2557,7 +2574,7 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* Create_Unit styles */ -/* line 2717, ../../../scss/_clix2017.scss */ +/* line 2730, ../../../scss/_clix2017.scss */ .course_creator_header { width: 100%; height: 70px; @@ -2565,7 +2582,7 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 2724, ../../../scss/_clix2017.scss */ +/* line 2737, ../../../scss/_clix2017.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -2573,13 +2590,13 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 2733, ../../../scss/_clix2017.scss */ +/* line 2746, ../../../scss/_clix2017.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 2739, ../../../scss/_clix2017.scss */ +/* line 2752, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -2588,24 +2605,24 @@ ul.jqtree-tree .jqtree-toggler:hover { float: right; text-align: center; } -/* line 2748, ../../../scss/_clix2017.scss */ +/* line 2761, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 2752, ../../../scss/_clix2017.scss */ +/* line 2765, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 2760, ../../../scss/_clix2017.scss */ +/* line 2773, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 2771, ../../../scss/_clix2017.scss */ +/* line 2784, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -2614,31 +2631,31 @@ ul.jqtree-tree .jqtree-toggler:hover { float: right; text-align: center; } -/* line 2779, ../../../scss/_clix2017.scss */ +/* line 2792, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 2783, ../../../scss/_clix2017.scss */ +/* line 2796, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 2793, ../../../scss/_clix2017.scss */ +/* line 2806, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 2798, ../../../scss/_clix2017.scss */ +/* line 2811, ../../../scss/_clix2017.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 2806, ../../../scss/_clix2017.scss */ +/* line 2819, ../../../scss/_clix2017.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 2809, ../../../scss/_clix2017.scss */ +/* line 2822, ../../../scss/_clix2017.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -2647,11 +2664,11 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; letter-spacing: 0.8px; } -/* line 2818, ../../../scss/_clix2017.scss */ +/* line 2831, ../../../scss/_clix2017.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 2823, ../../../scss/_clix2017.scss */ +/* line 2836, ../../../scss/_clix2017.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -2663,7 +2680,7 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; border-radius: 3px; } -/* line 2835, ../../../scss/_clix2017.scss */ +/* line 2848, ../../../scss/_clix2017.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -2676,7 +2693,7 @@ ul.jqtree-tree .jqtree-toggler:hover { border-radius: 3px; } -/* line 2853, ../../../scss/_clix2017.scss */ +/* line 2866, ../../../scss/_clix2017.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -2684,7 +2701,7 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 10px; } -/* line 2861, ../../../scss/_clix2017.scss */ +/* line 2874, ../../../scss/_clix2017.scss */ .button-hollow-black { background: #fff; border: 2px solid #164A7B; @@ -2695,14 +2712,14 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 2px 10px; } -/* line 2871, ../../../scss/_clix2017.scss */ +/* line 2884, ../../../scss/_clix2017.scss */ .vertically-center { top: 50%; transform: translateY(-50%); } /* Unit_Structure styles */ -/* line 2879, ../../../scss/_clix2017.scss */ +/* line 2892, ../../../scss/_clix2017.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -2710,12 +2727,12 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 0px 0px; max-width: 100vw; } -/* line 2887, ../../../scss/_clix2017.scss */ +/* line 2900, ../../../scss/_clix2017.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 2891, ../../../scss/_clix2017.scss */ +/* line 2904, ../../../scss/_clix2017.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -2723,17 +2740,17 @@ ul.jqtree-tree .jqtree-toggler:hover { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 2897, ../../../scss/_clix2017.scss */ +/* line 2910, ../../../scss/_clix2017.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 2903, ../../../scss/_clix2017.scss */ +/* line 2916, ../../../scss/_clix2017.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 2908, ../../../scss/_clix2017.scss */ +/* line 2921, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -2743,29 +2760,29 @@ ul.jqtree-tree .jqtree-toggler:hover { overflow-y: auto; height: 100vh; } -/* line 2917, ../../../scss/_clix2017.scss */ +/* line 2930, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 2923, ../../../scss/_clix2017.scss */ +/* line 2936, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd:hover li { color: #164A7B; } -/* line 2928, ../../../scss/_clix2017.scss */ +/* line 2941, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 2933, ../../../scss/_clix2017.scss */ +/* line 2946, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 2942, ../../../scss/_clix2017.scss */ +/* line 2955, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -2774,7 +2791,7 @@ ul.jqtree-tree .jqtree-toggler:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 2949, ../../../scss/_clix2017.scss */ +/* line 2962, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -2782,15 +2799,15 @@ ul.jqtree-tree .jqtree-toggler:hover { display: block; position: relative; } -/* line 2957, ../../../scss/_clix2017.scss */ +/* line 2970, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 2962, ../../../scss/_clix2017.scss */ +/* line 2975, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 2965, ../../../scss/_clix2017.scss */ +/* line 2978, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: inline-block; @@ -2798,22 +2815,22 @@ ul.jqtree-tree .jqtree-toggler:hover { margin: 0px 10px; cursor: pointer; } -/* line 2971, ../../../scss/_clix2017.scss */ +/* line 2984, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li:hover { border-bottom: 1px solid #9e2289; color: #ce7869; } -/* line 2985, ../../../scss/_clix2017.scss */ +/* line 2998, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 2993, ../../../scss/_clix2017.scss */ +/* line 3006, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 2995, ../../../scss/_clix2017.scss */ +/* line 3008, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -2822,7 +2839,7 @@ ul.jqtree-tree .jqtree-toggler:hover { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 3002, ../../../scss/_clix2017.scss */ +/* line 3015, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -2830,11 +2847,11 @@ ul.jqtree-tree .jqtree-toggler:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 3011, ../../../scss/_clix2017.scss */ +/* line 3024, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 3020, ../../../scss/_clix2017.scss */ +/* line 3033, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -2846,49 +2863,49 @@ ul.jqtree-tree .jqtree-toggler:hover { overflow-y: auto; background: #fff; } -/* line 3030, ../../../scss/_clix2017.scss */ +/* line 3043, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 3036, ../../../scss/_clix2017.scss */ +/* line 3049, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 3039, ../../../scss/_clix2017.scss */ +/* line 3052, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 3048, ../../../scss/_clix2017.scss */ +/* line 3061, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 3053, ../../../scss/_clix2017.scss */ +/* line 3066, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 3057, ../../../scss/_clix2017.scss */ +/* line 3070, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 3059, ../../../scss/_clix2017.scss */ +/* line 3072, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 3062, ../../../scss/_clix2017.scss */ +/* line 3075, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 3068, ../../../scss/_clix2017.scss */ +/* line 3081, ../../../scss/_clix2017.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -2896,29 +2913,29 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 15px 5px; cursor: pointer; } -/* line 3083, ../../../scss/_clix2017.scss */ +/* line 3096, ../../../scss/_clix2017.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 3091, ../../../scss/_clix2017.scss */ +/* line 3104, ../../../scss/_clix2017.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 3097, ../../../scss/_clix2017.scss */ +/* line 3110, ../../../scss/_clix2017.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 3106, ../../../scss/_clix2017.scss */ +/* line 3119, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 3111, ../../../scss/_clix2017.scss */ +/* line 3124, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -2926,28 +2943,28 @@ ul.jqtree-tree .jqtree-toggler:hover { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 3118, ../../../scss/_clix2017.scss */ +/* line 3131, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 3123, ../../../scss/_clix2017.scss */ +/* line 3136, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 3128, ../../../scss/_clix2017.scss */ +/* line 3141, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 3130, ../../../scss/_clix2017.scss */ +/* line 3143, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 3134, ../../../scss/_clix2017.scss */ +/* line 3147, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -2959,21 +2976,21 @@ ul.jqtree-tree .jqtree-toggler:hover { color: #999999; border-radius: 3px; } -/* line 3145, ../../../scss/_clix2017.scss */ +/* line 3158, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 3150, ../../../scss/_clix2017.scss */ +/* line 3163, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 3156, ../../../scss/_clix2017.scss */ +/* line 3169, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 3162, ../../../scss/_clix2017.scss */ +/* line 3175, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -2981,19 +2998,19 @@ ul.jqtree-tree .jqtree-toggler:hover { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 3169, ../../../scss/_clix2017.scss */ +/* line 3182, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 3176, ../../../scss/_clix2017.scss */ +/* line 3189, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 3187, ../../../scss/_clix2017.scss */ +/* line 3200, ../../../scss/_clix2017.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -3004,18 +3021,18 @@ ul.jqtree-tree .jqtree-toggler:hover { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 3206, ../../../scss/_clix2017.scss */ +/* line 3219, ../../../scss/_clix2017.scss */ .tile_modal .editor_modal_content .modal_tile .th { width: 100%; height: 210px; box-shadow: none; } -/* line 3211, ../../../scss/_clix2017.scss */ +/* line 3224, ../../../scss/_clix2017.scss */ .tile_modal .editor_modal_content .modal_tile .th > img { height: 180px; width: 100%; } -/* line 3216, ../../../scss/_clix2017.scss */ +/* line 3229, ../../../scss/_clix2017.scss */ .tile_modal .editor_modal_content .modal_tile .th > span { display: block; width: 100%; @@ -3023,76 +3040,76 @@ ul.jqtree-tree .jqtree-toggler:hover { line-height: 22px; } -/* line 3230, ../../../scss/_clix2017.scss */ +/* line 3243, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content > div { width: 100%; } -/* line 3232, ../../../scss/_clix2017.scss */ +/* line 3245, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content > div > div { display: inline-block; vertical-align: top; } -/* line 3237, ../../../scss/_clix2017.scss */ +/* line 3250, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content .app_row { margin-bottom: 39px; } -/* line 3240, ../../../scss/_clix2017.scss */ +/* line 3253, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content .app_row .app_image { padding: 10px; } -/* line 3243, ../../../scss/_clix2017.scss */ +/* line 3256, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content .app_row .app_image > div { border: 1px solid #999; height: 222px; } -/* line 3249, ../../../scss/_clix2017.scss */ +/* line 3262, ../../../scss/_clix2017.scss */ #appModal .editor_modal_content .app_row .app_desc { padding-left: 10px; } -/* line 3258, ../../../scss/_clix2017.scss */ +/* line 3271, ../../../scss/_clix2017.scss */ .editor_modal .editor_modal_title { color: #3c5264; } -/* line 3263, ../../../scss/_clix2017.scss */ +/* line 3276, ../../../scss/_clix2017.scss */ .editor_modal .editor_modal_actions > a { display: inline-block; } -/* line 3266, ../../../scss/_clix2017.scss */ +/* line 3279, ../../../scss/_clix2017.scss */ .editor_modal .editor_modal_actions > a.close-reveal-modal { line-height: inherit; position: inherit; color: #c601bc; } -/* line 3276, ../../../scss/_clix2017.scss */ +/* line 3289, ../../../scss/_clix2017.scss */ .reveal-modal-overlay, dialog { padding: 0px; padding-bottom: 13px; } -/* line 3281, ../../../scss/_clix2017.scss */ +/* line 3294, ../../../scss/_clix2017.scss */ .overlay-title { - margin: 15px 10px 10px 10px; + margin: 15px 10px 10px 14px; letter-spacing: -1px; } -/* line 3286, ../../../scss/_clix2017.scss */ +/* line 3299, ../../../scss/_clix2017.scss */ .custom_dropdown { position: relative; z-index: 10; display: inline-block; } -/* line 3292, ../../../scss/_clix2017.scss */ +/* line 3305, ../../../scss/_clix2017.scss */ .custom_dropdown > a { height: 30px; display: block; } -/* line 3298, ../../../scss/_clix2017.scss */ +/* line 3311, ../../../scss/_clix2017.scss */ .custom_dropdown:hover .dropdown_content { display: block; } -/* line 3303, ../../../scss/_clix2017.scss */ +/* line 3316, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content { background-color: #fff; border-radius: 10px; @@ -3101,35 +3118,35 @@ ul.jqtree-tree .jqtree-toggler:hover { top: 30px; border: 1px solid #ccc; } -/* line 3311, ../../../scss/_clix2017.scss */ +/* line 3324, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content.left_align { left: -54px; } -/* line 3315, ../../../scss/_clix2017.scss */ +/* line 3328, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content.right_align { right: -10px; } -/* line 3319, ../../../scss/_clix2017.scss */ +/* line 3332, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content li { padding: 10px 35px; list-style: none; white-space: nowrap; } -/* line 3324, ../../../scss/_clix2017.scss */ +/* line 3337, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content li a { margin: 0px; width: 70px; } -/* line 3329, ../../../scss/_clix2017.scss */ +/* line 3342, ../../../scss/_clix2017.scss */ .custom_dropdown .dropdown_content li:hover { background-color: #d5f2ff; } -/* line 3336, ../../../scss/_clix2017.scss */ +/* line 3349, ../../../scss/_clix2017.scss */ .custom_dropdown a { color: #999999; } -/* line 3342, ../../../scss/_clix2017.scss */ +/* line 3355, ../../../scss/_clix2017.scss */ .button-hollow-purple { background: inherit; border: 2px solid #c601bc; @@ -3143,7 +3160,7 @@ ul.jqtree-tree .jqtree-toggler:hover { -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 3355, ../../../scss/_clix2017.scss */ +/* line 3368, ../../../scss/_clix2017.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -3156,11 +3173,11 @@ ul.jqtree-tree .jqtree-toggler:hover { transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 3366, ../../../scss/_clix2017.scss */ +/* line 3379, ../../../scss/_clix2017.scss */ .button-hollow-grey:hover { background-color: #f5f5f5; } -/* line 3371, ../../../scss/_clix2017.scss */ +/* line 3384, ../../../scss/_clix2017.scss */ .button-hollow-grey > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -3172,7 +3189,7 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-right: 1px; } -/* line 3383, ../../../scss/_clix2017.scss */ +/* line 3396, ../../../scss/_clix2017.scss */ .button-hollow-blue { background: inherit; border: 2px solid #2b4a7b; @@ -3185,88 +3202,88 @@ ul.jqtree-tree .jqtree-toggler:hover { -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 3394, ../../../scss/_clix2017.scss */ +/* line 3407, ../../../scss/_clix2017.scss */ .save_edit_activity { margin-right: 16.9px; margin-top: 37.3px; } -/* line 3399, ../../../scss/_clix2017.scss */ +/* line 3412, ../../../scss/_clix2017.scss */ .activity-name { margin-left: 20px; margin-top: 5px; } -/* line 3404, ../../../scss/_clix2017.scss */ +/* line 3417, ../../../scss/_clix2017.scss */ .activity-name-label { width: 80%; margin-left: 20px; margin-top: 5px; } -/* line 3411, ../../../scss/_clix2017.scss */ +/* line 3424, ../../../scss/_clix2017.scss */ .create_activity_new { margin-left: -15px; } -/* line 3415, ../../../scss/_clix2017.scss */ +/* line 3428, ../../../scss/_clix2017.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 3419, ../../../scss/_clix2017.scss */ +/* line 3432, ../../../scss/_clix2017.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 3425, ../../../scss/_clix2017.scss */ +/* line 3438, ../../../scss/_clix2017.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 3428, ../../../scss/_clix2017.scss */ +/* line 3441, ../../../scss/_clix2017.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 3432, ../../../scss/_clix2017.scss */ +/* line 3445, ../../../scss/_clix2017.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 3437, ../../../scss/_clix2017.scss */ +/* line 3450, ../../../scss/_clix2017.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 3444, ../../../scss/_clix2017.scss */ +/* line 3457, ../../../scss/_clix2017.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 3448, ../../../scss/_clix2017.scss */ +/* line 3461, ../../../scss/_clix2017.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 3453, ../../../scss/_clix2017.scss */ +/* line 3466, ../../../scss/_clix2017.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 3457, ../../../scss/_clix2017.scss */ +/* line 3470, ../../../scss/_clix2017.scss */ #replies-area .ckeditor-content-reply .post-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 3461, ../../../scss/_clix2017.scss */ +/* line 3474, ../../../scss/_clix2017.scss */ #replies-area .ckeditor-content-reply .post-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 3470, ../../../scss/_clix2017.scss */ +/* line 3483, ../../../scss/_clix2017.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -3275,16 +3292,16 @@ ul.jqtree-tree .jqtree-toggler:hover { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 3479, ../../../scss/_clix2017.scss */ +/* line 3492, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 3484, ../../../scss/_clix2017.scss */ +/* line 3497, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 3487, ../../../scss/_clix2017.scss */ +/* line 3500, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -3292,7 +3309,7 @@ ul.jqtree-tree .jqtree-toggler:hover { padding-left: 10px; line-height: 1.5em; } -/* line 3497, ../../../scss/_clix2017.scss */ +/* line 3510, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -3302,54 +3319,53 @@ ul.jqtree-tree .jqtree-toggler:hover { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 3506, ../../../scss/_clix2017.scss */ +/* line 3519, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 3512, ../../../scss/_clix2017.scss */ +/* line 3525, ../../../scss/_clix2017.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; /*background-color: #f2f2f2;*/ } -/* line 3524, ../../../scss/_clix2017.scss */ +/* line 3537, ../../../scss/_clix2017.scss */ .bg-img { - background: url(/static/ndf/images/i2c-bg.png); height: 100%; background-size: 100%; background-repeat: no-repeat; } -/* line 3532, ../../../scss/_clix2017.scss */ +/* line 3545, ../../../scss/_clix2017.scss */ .clix-text { z-index: -1; } -/* line 3535, ../../../scss/_clix2017.scss */ +/* line 3548, ../../../scss/_clix2017.scss */ .panel-mod { background-color: transparent; border: none; } -/* line 3540, ../../../scss/_clix2017.scss */ +/* line 3553, ../../../scss/_clix2017.scss */ .asset_content_upload { width: 100% !important; } -/* line 3544, ../../../scss/_clix2017.scss */ +/* line 3557, ../../../scss/_clix2017.scss */ #upload_asset { margin-top: 60px !important; } -/* line 3548, ../../../scss/_clix2017.scss */ +/* line 3561, ../../../scss/_clix2017.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 3553, ../../../scss/_clix2017.scss */ +/* line 3566, ../../../scss/_clix2017.scss */ .profile-img { height: 40px; width: 40px; @@ -3357,24 +3373,24 @@ ul.jqtree-tree .jqtree-toggler:hover { border-radius: 2px; } -/* line 3560, ../../../scss/_clix2017.scss */ +/* line 3573, ../../../scss/_clix2017.scss */ .activity-detail-page { margin-top: 20px; margin-left: 15px; } -/* line 3569, ../../../scss/_clix2017.scss */ +/* line 3582, ../../../scss/_clix2017.scss */ .activity-detail-content #scstyle header { margin-top: 0px !important; } -/* line 3573, ../../../scss/_clix2017.scss */ +/* line 3586, ../../../scss/_clix2017.scss */ .activity-editor { margin: 50px; margin-left: 15px; } -/* line 3579, ../../../scss/_clix2017.scss */ +/* line 3592, ../../../scss/_clix2017.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -3395,7 +3411,7 @@ ul.jqtree-tree .jqtree-toggler:hover { } /* Tags styles */ -/* line 3602, ../../../scss/_clix2017.scss */ +/* line 3615, ../../../scss/_clix2017.scss */ .asset-tags-container { width: 100%; height: 50px; @@ -3403,16 +3419,16 @@ ul.jqtree-tree .jqtree-toggler:hover { padding: 5px 15px; margin-bottom: 65px; } -/* line 3609, ../../../scss/_clix2017.scss */ +/* line 3622, ../../../scss/_clix2017.scss */ .asset-tags-container .tag-input-ele { margin-left: 17px; width: 96%; } -/* line 3614, ../../../scss/_clix2017.scss */ +/* line 3627, ../../../scss/_clix2017.scss */ .asset-tags-container .added-tags-div { margin-left: -206px; } -/* line 3619, ../../../scss/_clix2017.scss */ +/* line 3632, ../../../scss/_clix2017.scss */ .asset-tags-container #add-tag-btn { color: #ce7869; padding: 7px 14px; @@ -3427,13 +3443,13 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; display: inline-block; } -/* line 3632, ../../../scss/_clix2017.scss */ +/* line 3645, ../../../scss/_clix2017.scss */ .asset-tags-container #add-tag-btn:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 3640, ../../../scss/_clix2017.scss */ +/* line 3653, ../../../scss/_clix2017.scss */ .tags-container { width: 100%; height: 50px; @@ -3442,7 +3458,7 @@ ul.jqtree-tree .jqtree-toggler:hover { box-shadow: 1px 0px 0px #000; margin-bottom: 65px; } -/* line 3648, ../../../scss/_clix2017.scss */ +/* line 3661, ../../../scss/_clix2017.scss */ .tags-container .add-tag-heading span { width: 40%; color: #99aaba; @@ -3453,17 +3469,17 @@ ul.jqtree-tree .jqtree-toggler:hover { margin-left: 8px; font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; } -/* line 3659, ../../../scss/_clix2017.scss */ +/* line 3672, ../../../scss/_clix2017.scss */ .tags-container .tag-input-ele { margin-left: 193px; width: 54%; } -/* line 3664, ../../../scss/_clix2017.scss */ +/* line 3677, ../../../scss/_clix2017.scss */ .tags-container .added-tags-div { margin-left: 293px !important; width: 54%; } -/* line 3669, ../../../scss/_clix2017.scss */ +/* line 3682, ../../../scss/_clix2017.scss */ .tags-container #add-tag-btn { color: #ce7869; padding: 7px 14px; @@ -3478,13 +3494,13 @@ ul.jqtree-tree .jqtree-toggler:hover { cursor: pointer; display: inline-block; } -/* line 3682, ../../../scss/_clix2017.scss */ +/* line 3695, ../../../scss/_clix2017.scss */ .tags-container #add-tag-btn:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 3690, ../../../scss/_clix2017.scss */ +/* line 3703, ../../../scss/_clix2017.scss */ .activity-lang { border: 1px solid #cccccc; border-radius: 5px; @@ -3500,39 +3516,39 @@ ul.jqtree-tree .jqtree-toggler:hover { width: 99%; } */ -/* line 3707, ../../../scss/_clix2017.scss */ +/* line 3720, ../../../scss/_clix2017.scss */ .editor-div { height: 100%; } -/* line 3711, ../../../scss/_clix2017.scss */ +/* line 3724, ../../../scss/_clix2017.scss */ #asset-descid { margin-bottom: 7px; } -/* line 3715, ../../../scss/_clix2017.scss */ +/* line 3728, ../../../scss/_clix2017.scss */ .page-name { margin-top: 4px; } -/* line 3719, ../../../scss/_clix2017.scss */ +/* line 3732, ../../../scss/_clix2017.scss */ .asset_list { margin-left: 30px; } -/* line 3723, ../../../scss/_clix2017.scss */ +/* line 3736, ../../../scss/_clix2017.scss */ .interaction-settings-div { margin-left: 25px; margin-top: 10px; } -/* line 3727, ../../../scss/_clix2017.scss */ +/* line 3740, ../../../scss/_clix2017.scss */ .interaction-settings-div .yes_no_disc_div { text-align: center; font-size: 24px; font-weight: 300; } -/* line 3739, ../../../scss/_clix2017.scss */ +/* line 3752, ../../../scss/_clix2017.scss */ body { background-color: #fff; } @@ -3540,170 +3556,96 @@ body { /* Styling for the Secondary header 2 */ -/* line 3749, ../../../scss/_clix2017.scss */ +/* line 3762, ../../../scss/_clix2017.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 3752, ../../../scss/_clix2017.scss */ +/* line 3765, ../../../scss/_clix2017.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 3760, ../../../scss/_clix2017.scss */ +/* line 3772, ../../../scss/_clix2017.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 3769, ../../../scss/_clix2017.scss */ -.activity_player_header .header_title { - position: relative; - color: #fff; - font-weight: 500; - font-size: 20px; - letter-spacing: 0.6px; - padding: 0px 15px; - margin-left: -2px; - border-right: 1px solid white; -} -/* line 3778, ../../../scss/_clix2017.scss */ -.activity_player_header .header_title a { - color: #ffc14f; -} -@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 3769, ../../../scss/_clix2017.scss */ - .activity_player_header .header_title { - text-overflow: ellipsis; - width: calc(100% - 938px); - } -} -@media only screen and (min-device-width: 2131px) { - /* line 3769, ../../../scss/_clix2017.scss */ - .activity_player_header .header_title { - text-overflow: ellipsis; - width: calc(100% - 970px); - } -} -@media only screen and (max-device-width: 1024px) { - /* line 3769, ../../../scss/_clix2017.scss */ - .activity_player_header .header_title { - text-overflow: ellipsis; - width: calc(100% - 753px); - } -} -/* line 3855, ../../../scss/_clix2017.scss */ +/* line 3781, ../../../scss/_clix2017.scss */ .activity_player_header .header_icon { - font-size: 16px; + font-size: 20px; line-height: 45px; color: #ffc14f; } -/* line 3861, ../../../scss/_clix2017.scss */ +/* line 3787, ../../../scss/_clix2017.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 3867, ../../../scss/_clix2017.scss */ -.activity_player_header .header_text_sm_block { - padding: 0px 10px; -} -@media screen and (min-width: 1025px) { - /* line 3867, ../../../scss/_clix2017.scss */ - .activity_player_header .header_text_sm_block { - padding: 0px 15px; - } -} -@media screen and (min-width: 1025px) { - /* line 3874, ../../../scss/_clix2017.scss */ - .activity_player_header .lesson-nav { - float: right; - margin-right: 70px; - background-color: rgba(107, 0, 84, 0.97); - } -} -@media screen and (max-width: 1024px) { - /* line 3874, ../../../scss/_clix2017.scss */ - .activity_player_header .lesson-nav { - background-color: rgba(107, 0, 84, 0.97); - } -} -/* line 3887, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav div { - height: 45px; - line-height: 45px; - display: inline-block; - vertical-align: top; -} -/* line 3893, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .header_text_block { +/* line 3794, ../../../scss/_clix2017.scss */ +.activity_player_header .header_text_block { padding: 0px 15px; - margin-left: -2px; - border-right: 1px solid white; } -/* line 3897, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .header_text_block a { +/* line 3796, ../../../scss/_clix2017.scss */ +.activity_player_header .header_text_block a { color: #ffc14f; } -/* line 3903, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .header_text_lg_block { - padding: 0px 9px; -} -@media screen and (min-width: 1025px) { - /* line 3903, ../../../scss/_clix2017.scss */ - .activity_player_header .lesson-nav .header_text_lg_block { - padding: 0px 15px; - } -} -/* line 3911, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .header_text_md_block { - padding: 0px 7px; -} -@media screen and (min-width: 1025px) { - /* line 3911, ../../../scss/_clix2017.scss */ - .activity_player_header .lesson-nav .header_text_md_block { - padding: 0px 15px; - } -} -/* line 3920, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .back_button { +/* line 3801, ../../../scss/_clix2017.scss */ +.activity_player_header .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 3923, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .back_button i { +/* line 3804, ../../../scss/_clix2017.scss */ +.activity_player_header .back_button i { color: #71318b; } -/* line 3929, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .settings i { +/* line 3810, ../../../scss/_clix2017.scss */ +.activity_player_header .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 3933, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .settings:hover i { +/* line 3814, ../../../scss/_clix2017.scss */ +.activity_player_header .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 3939, ../../../scss/_clix2017.scss */ -.activity_player_header .lesson-nav .pagination:not(i) { +/* line 3819, ../../../scss/_clix2017.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 18px; + letter-spacing: 0.6px; + width: calc(100% - 1024px); +} +/* line 3828, ../../../scss/_clix2017.scss */ +.activity_player_header .pagination:not(i) { color: #a983b9; } -/* line 3948, ../../../scss/_clix2017.scss */ -.float-right { - float: right; +/* Overriding off-canvas class of foundation for responsive activity player header*/ +/* line 3837, ../../../scss/_clix2017.scss */ +.tab-bar { + background: rgba(107, 0, 84, 0.97); } -/* line 3952, ../../../scss/_clix2017.scss */ -.float-left { - float: left; +/* line 3842, ../../../scss/_clix2017.scss */ +.left-off-canvas-menu { + background: rgba(107, 0, 84, 0.97); +} + +/* line 3846, ../../../scss/_clix2017.scss */ +.right-off-canvas-menu { + background: rgba(107, 0, 84, 0.97); } /* Buddy Vertical Bar Css */ -/* line 3961, ../../../scss/_clix2017.scss */ +/* line 3859, ../../../scss/_clix2017.scss */ .buddy_panel { position: fixed; right: 0px; @@ -3715,7 +3657,7 @@ Buddy Vertical Bar Css overflow-y: auto; z-index: 100; } -/* line 3974, ../../../scss/_clix2017.scss */ +/* line 3872, ../../../scss/_clix2017.scss */ .buddy_panel .add_buddy_icon { height: 50px; width: 50px; @@ -3723,7 +3665,7 @@ Buddy Vertical Bar Css cursor: pointer; } -/* line 3982, ../../../scss/_clix2017.scss */ +/* line 3880, ../../../scss/_clix2017.scss */ .buddy_icon { border-radius: 4px; overflow: hidden; @@ -3733,13 +3675,13 @@ Buddy Vertical Bar Css margin-bottom: 10px; position: relative; } -/* line 3991, ../../../scss/_clix2017.scss */ +/* line 3889, ../../../scss/_clix2017.scss */ .buddy_icon svg { height: 50px; width: 50px; background-color: #fff; } -/* line 3997, ../../../scss/_clix2017.scss */ +/* line 3895, ../../../scss/_clix2017.scss */ .buddy_icon.buddy_inactive:before { content: ''; position: absolute; @@ -3750,11 +3692,11 @@ Buddy Vertical Bar Css display: block; background: rgba(0, 0, 0, 0.5); } -/* line 4008, ../../../scss/_clix2017.scss */ +/* line 3906, ../../../scss/_clix2017.scss */ .buddy_icon .buddy_edit, .buddy_icon .buddy_delete { display: none; } -/* line 4013, ../../../scss/_clix2017.scss */ +/* line 3911, ../../../scss/_clix2017.scss */ .buddy_icon.buddy_editable:hover .buddy_edit { position: absolute; background: rgba(255, 255, 255, 0.5); @@ -3763,7 +3705,7 @@ Buddy Vertical Bar Css bottom: 0px; display: block; } -/* line 4024, ../../../scss/_clix2017.scss */ +/* line 3922, ../../../scss/_clix2017.scss */ .buddy_icon.buddy_deleteable:hover .buddy_delete { position: absolute; background: rgba(255, 255, 255, 0.5); @@ -3773,43 +3715,43 @@ Buddy Vertical Bar Css display: block; } -/* line 4035, ../../../scss/_clix2017.scss */ +/* line 3933, ../../../scss/_clix2017.scss */ .add_buddy_modal { padding: 0px; } -/* line 4037, ../../../scss/_clix2017.scss */ +/* line 3935, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_header { padding: 10px 20px; position: relative; } -/* line 4041, ../../../scss/_clix2017.scss */ +/* line 3939, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_header .modal_title { font-size: 25px; color: #CE7869; letter-spacing: 0; line-height: 35px; } -/* line 4047, ../../../scss/_clix2017.scss */ +/* line 3945, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_header .modal_meta { font-size: 14px; color: #9DBEDD; letter-spacing: 0; line-height: 30px; } -/* line 4054, ../../../scss/_clix2017.scss */ +/* line 3952, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_header .sample_buddy { position: absolute; right: 30px; top: 15px; } -/* line 4061, ../../../scss/_clix2017.scss */ +/* line 3959, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body { background-color: #101d29; padding: 10px 20px; max-height: 500px; overflow: auto; } -/* line 4067, ../../../scss/_clix2017.scss */ +/* line 3965, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .step_title { font-size: 20px; font-weight: 400; @@ -3817,11 +3759,11 @@ Buddy Vertical Bar Css letter-spacing: 0.9px; margin: 10px 0px; } -/* line 4074, ../../../scss/_clix2017.scss */ +/* line 3972, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .step_title .step_number { color: #82A4C3; } -/* line 4079, ../../../scss/_clix2017.scss */ +/* line 3977, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_color_option { max-width: 75px; display: inline-block; @@ -3829,7 +3771,7 @@ Buddy Vertical Bar Css margin: 10px 20px; cursor: pointer; } -/* line 4086, ../../../scss/_clix2017.scss */ +/* line 3984, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_color_option .color_sample { display: block; width: 50px; @@ -3837,7 +3779,7 @@ Buddy Vertical Bar Css border-radius: 100%; margin: 0px auto; } -/* line 4094, ../../../scss/_clix2017.scss */ +/* line 3992, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_color_option .color_name { text-transform: capitalize; font-size: 15px; @@ -3847,42 +3789,42 @@ Buddy Vertical Bar Css letter-spacing: 1px; margin-top: 10px; } -/* line 4105, ../../../scss/_clix2017.scss */ +/* line 4003, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_color_option:hover .color_sample, .add_buddy_modal .modal_body .buddy_color_option.selected .color_sample { border: 3px solid #bfe0ff; } -/* line 4111, ../../../scss/_clix2017.scss */ +/* line 4009, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_animal { display: inline-block; margin: 10px; cursor: pointer; } -/* line 4116, ../../../scss/_clix2017.scss */ +/* line 4014, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_animal svg { height: 80px; width: 80px; } -/* line 4120, ../../../scss/_clix2017.scss */ +/* line 4018, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_animal svg path { fill: #374B5E; } -/* line 4125, ../../../scss/_clix2017.scss */ +/* line 4023, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_animal .buddy_animal_name { color: #fff; text-align: center; text-transform: capitalize; letter-spacing: 1px; } -/* line 4133, ../../../scss/_clix2017.scss */ +/* line 4031, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_body .buddy_animal:hover path, .add_buddy_modal .modal_body .buddy_animal.selected path { fill: #bfe0ff; } -/* line 4140, ../../../scss/_clix2017.scss */ +/* line 4038, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_footer { height: 70px; padding: 20px; } -/* line 4145, ../../../scss/_clix2017.scss */ +/* line 4043, ../../../scss/_clix2017.scss */ .add_buddy_modal .modal_footer .removeBuddy i { color: #bd2b2b; font-size: 25px; @@ -3891,7 +3833,7 @@ Buddy Vertical Bar Css /* Common css that can be kept at a single place. */ -/* line 4160, ../../../scss/_clix2017.scss */ +/* line 4058, ../../../scss/_clix2017.scss */ .blue_round_button { background-color: #00a9ee; color: #fff; @@ -3902,7 +3844,7 @@ Buddy Vertical Bar Css line-height: 25px; } -/* line 4169, ../../../scss/_clix2017.scss */ +/* line 4067, ../../../scss/_clix2017.scss */ .text_button { background-color: #fff; color: #949494; @@ -3913,50 +3855,49 @@ Buddy Vertical Bar Css line-height: 25px; } -/* line 4179, ../../../scss/_clix2017.scss */ +/* line 4077, ../../../scss/_clix2017.scss */ .edit_button { background-color: #fff; color: #717171; border-radius: 4px; - font-size: 16px; + font-size: 11px; letter-spacing: 0.7px; line-height: 25px; text-transform: none; margin-top: 10px; margin-right: -50px; } -/* line 4189, ../../../scss/_clix2017.scss */ +/* line 4087, ../../../scss/_clix2017.scss */ .edit_button:hover { color: #ce7869; } -/* line 4198, ../../../scss/_clix2017.scss */ +/* line 4096, ../../../scss/_clix2017.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4201, ../../../scss/_clix2017.scss */ +/* line 4099, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4204, ../../../scss/_clix2017.scss */ +/* line 4102, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; - padding: 10px 10px 9px; + padding: 12px 12px 9px; color: #ce7869; cursor: pointer; font-size: 18px; letter-spacing: 0.8px; border-bottom: 5px solid transparent; } -/* line 4215, ../../../scss/_clix2017.scss */ +/* line 4113, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { - font-weight: bold; border-bottom: 3px solid #ffc14e; } -/* line 4227, ../../../scss/_clix2017.scss */ +/* line 4124, ../../../scss/_clix2017.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -3964,29 +3905,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0px 0px; max-width: 100vw; } -/* line 4234, ../../../scss/_clix2017.scss */ +/* line 4131, ../../../scss/_clix2017.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 4238, ../../../scss/_clix2017.scss */ +/* line 4135, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 4244, ../../../scss/_clix2017.scss */ +/* line 4141, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 4250, ../../../scss/_clix2017.scss */ +/* line 4147, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 4255, ../../../scss/_clix2017.scss */ +/* line 4152, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -3996,25 +3937,25 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; height: 100vh; } -/* line 4264, ../../../scss/_clix2017.scss */ +/* line 4161, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 4268, ../../../scss/_clix2017.scss */ +/* line 4165, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 4275, ../../../scss/_clix2017.scss */ +/* line 4172, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 4284, ../../../scss/_clix2017.scss */ +/* line 4181, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -4023,7 +3964,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 4291, ../../../scss/_clix2017.scss */ +/* line 4188, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -4032,15 +3973,15 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; display: none; } -/* line 4300, ../../../scss/_clix2017.scss */ +/* line 4197, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 4305, ../../../scss/_clix2017.scss */ +/* line 4202, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 4309, ../../../scss/_clix2017.scss */ +/* line 4206, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -4048,21 +3989,21 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0px 10px; cursor: pointer; } -/* line 4319, ../../../scss/_clix2017.scss */ +/* line 4216, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 4325, ../../../scss/_clix2017.scss */ +/* line 4222, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 4333, ../../../scss/_clix2017.scss */ +/* line 4230, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 4335, ../../../scss/_clix2017.scss */ +/* line 4232, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -4071,7 +4012,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 4342, ../../../scss/_clix2017.scss */ +/* line 4239, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -4079,11 +4020,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 4351, ../../../scss/_clix2017.scss */ +/* line 4248, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 4360, ../../../scss/_clix2017.scss */ +/* line 4257, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -4095,48 +4036,48 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; background: #fff; } -/* line 4370, ../../../scss/_clix2017.scss */ +/* line 4267, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 4375, ../../../scss/_clix2017.scss */ +/* line 4272, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 4378, ../../../scss/_clix2017.scss */ +/* line 4275, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 4387, ../../../scss/_clix2017.scss */ +/* line 4284, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 4392, ../../../scss/_clix2017.scss */ +/* line 4289, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 4396, ../../../scss/_clix2017.scss */ +/* line 4293, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 4398, ../../../scss/_clix2017.scss */ +/* line 4295, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 4401, ../../../scss/_clix2017.scss */ +/* line 4298, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 4407, ../../../scss/_clix2017.scss */ +/* line 4304, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -4145,34 +4086,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; } -/* line 4423, ../../../scss/_clix2017.scss */ +/* line 4320, ../../../scss/_clix2017.scss */ .course_editor_section { background: #fff; min-height: 100vh; - min-width: 910px; margin-bottom: 10px; padding-right: 4px; } -/* line 4429, ../../../scss/_clix2017.scss */ +/* line 4325, ../../../scss/_clix2017.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 4434, ../../../scss/_clix2017.scss */ +/* line 4332, ../../../scss/_clix2017.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 4440, ../../../scss/_clix2017.scss */ +/* line 4338, ../../../scss/_clix2017.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 4446, ../../../scss/_clix2017.scss */ +/* line 4344, ../../../scss/_clix2017.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -4182,29 +4122,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 4455, ../../../scss/_clix2017.scss */ +/* line 4353, ../../../scss/_clix2017.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 4459, ../../../scss/_clix2017.scss */ +/* line 4357, ../../../scss/_clix2017.scss */ .activity-title > li > a { color: black; } -/* line 4468, ../../../scss/_clix2017.scss */ +/* line 4366, ../../../scss/_clix2017.scss */ .activity_page_rendered { margin-left: 20px; max-width: 100%; } /* Rating css */ -/* line 4477, ../../../scss/_clix2017.scss */ +/* line 4376, ../../../scss/_clix2017.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 4479, ../../../scss/_clix2017.scss */ +/* line 4378, ../../../scss/_clix2017.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -4212,19 +4152,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { unicode-bidi: bidi-override; direction: rtl; } -/* line 4487, ../../../scss/_clix2017.scss */ +/* line 4386, ../../../scss/_clix2017.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 4489, ../../../scss/_clix2017.scss */ +/* line 4388, ../../../scss/_clix2017.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 4495, ../../../scss/_clix2017.scss */ +/* line 4394, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 4497, ../../../scss/_clix2017.scss */ +/* line 4396, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -4237,7 +4177,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0; vertical-align: bottom; } -/* line 4509, ../../../scss/_clix2017.scss */ +/* line 4408, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -4245,32 +4185,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* WHITE STAR */ color: #888; } -/* line 4516, ../../../scss/_clix2017.scss */ +/* line 4415, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 4527, ../../../scss/_clix2017.scss */ +/* line 4426, ../../../scss/_clix2017.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 4534, ../../../scss/_clix2017.scss */ +/* line 4433, ../../../scss/_clix2017.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 4542, ../../../scss/_clix2017.scss */ +/* line 4441, ../../../scss/_clix2017.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 4547, ../../../scss/_clix2017.scss */ +/* line 4446, ../../../scss/_clix2017.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -4282,23 +4222,23 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 4566, ../../../scss/_clix2017.scss */ +/* line 4465, ../../../scss/_clix2017.scss */ .unit_card { width: 300px; color: #000; padding: 15px; margin: 10px; + cursor: pointer; border-radius: 5px; font-size: 14px; border: 2px solid #d5d5d5; position: relative; - height: 210px; } -/* line 4578, ../../../scss/_clix2017.scss */ +/* line 4477, ../../../scss/_clix2017.scss */ .unit_card:hover { - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25); + box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); } -/* line 4583, ../../../scss/_clix2017.scss */ +/* line 4482, ../../../scss/_clix2017.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -4309,11 +4249,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 4594, ../../../scss/_clix2017.scss */ +/* line 4493, ../../../scss/_clix2017.scss */ .unit_card .unit_header { display: table; } -/* line 4596, ../../../scss/_clix2017.scss */ +/* line 4495, ../../../scss/_clix2017.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -4322,7 +4262,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 4604, ../../../scss/_clix2017.scss */ +/* line 4503, ../../../scss/_clix2017.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -4336,7 +4276,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 4618, ../../../scss/_clix2017.scss */ +/* line 4517, ../../../scss/_clix2017.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -4353,69 +4293,22 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 4634, ../../../scss/_clix2017.scss */ +/* line 4533, ../../../scss/_clix2017.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 4640, ../../../scss/_clix2017.scss */ +/* line 4539, ../../../scss/_clix2017.scss */ .unit_card .unit_actions { + border-top: 1px solid #ccc; + margin: 20px 0px 0px; padding: 5px 0px; } -/* line 4645, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .unit-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 4657, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .unit-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 4662, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .unit-card-analytics { - color: #a2238d; - font-weight: 500; - font-size: 14px; - letter-spacing: 0.3px; - border-bottom: 2px solid #a2238d; -} -/* line 4670, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .unit-card-analytics-points { - background: #ffffff; - color: #a2238d; - font-size: 15px; - border-radius: 20px; - letter-spacing: 0.4px; - padding: 2px 3px 3px 1px; - font-weight: bold; - cursor: default; -} -/* line 4681, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .view_unit { - height: 37px; - text-align: center; - color: #a2238d; - font-size: 19px; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 4689, ../../../scss/_clix2017.scss */ -.unit_card .unit_actions .view_unit:hover { - border-bottom: 2px solid #ffc14e; -} /* Common css */ -/* line 4700, ../../../scss/_clix2017.scss */ +/* line 4549, ../../../scss/_clix2017.scss */ .text-button-blue { background-color: transparent; color: #00A9EE; @@ -4428,54 +4321,54 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** Status styles added for the unit styles. */ -/* line 4719, ../../../scss/_clix2017.scss */ +/* line 4568, ../../../scss/_clix2017.scss */ .in-progress-status { color: #fff; background-color: #fd9e29; } -/* line 4724, ../../../scss/_clix2017.scss */ +/* line 4573, ../../../scss/_clix2017.scss */ .in-complete-status { color: #fff; background-color: #fd9e29; } -/* line 4729, ../../../scss/_clix2017.scss */ +/* line 4578, ../../../scss/_clix2017.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 4734, ../../../scss/_clix2017.scss */ +/* line 4583, ../../../scss/_clix2017.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 4740, ../../../scss/_clix2017.scss */ +/* line 4589, ../../../scss/_clix2017.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 4744, ../../../scss/_clix2017.scss */ +/* line 4593, ../../../scss/_clix2017.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 4754, ../../../scss/_clix2017.scss */ +/* line 4603, ../../../scss/_clix2017.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 4759, ../../../scss/_clix2017.scss */ +/* line 4608, ../../../scss/_clix2017.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 4762, ../../../scss/_clix2017.scss */ +/* line 4611, ../../../scss/_clix2017.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4489,7 +4382,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 4779, ../../../scss/_clix2017.scss */ +/* line 4628, ../../../scss/_clix2017.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -4502,7 +4395,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; } -/* line 4793, ../../../scss/_clix2017.scss */ +/* line 4642, ../../../scss/_clix2017.scss */ .dropdown-settings { text-align: left; text-transform: none; @@ -4512,13 +4405,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: white; border-radius: 1px; } -/* line 4801, ../../../scss/_clix2017.scss */ +/* line 4650, ../../../scss/_clix2017.scss */ .dropdown-settings:hover { color: #ce7869; border-left: 2px solid #ffc14e; } -/* line 4807, ../../../scss/_clix2017.scss */ +/* line 4656, ../../../scss/_clix2017.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -4527,19 +4420,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 4816, ../../../scss/_clix2017.scss */ +/* line 4665, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 4821, ../../../scss/_clix2017.scss */ +/* line 4670, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 4827, ../../../scss/_clix2017.scss */ +/* line 4676, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -4547,12 +4440,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #999999; margin-left: 12%; } -/* line 4835, ../../../scss/_clix2017.scss */ +/* line 4684, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 4841, ../../../scss/_clix2017.scss */ +/* line 4690, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -4561,21 +4454,21 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { display: none; color: #8E8E8E; } -/* line 4850, ../../../scss/_clix2017.scss */ +/* line 4699, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 4855, ../../../scss/_clix2017.scss */ +/* line 4704, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 4857, ../../../scss/_clix2017.scss */ +/* line 4706, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 4860, ../../../scss/_clix2017.scss */ +/* line 4709, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -4586,24 +4479,24 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #757575; margin-right: 20px; } -/* line 4870, ../../../scss/_clix2017.scss */ +/* line 4719, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 4874, ../../../scss/_clix2017.scss */ +/* line 4723, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 4877, ../../../scss/_clix2017.scss */ +/* line 4726, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 4882, ../../../scss/_clix2017.scss */ +/* line 4731, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 4886, ../../../scss/_clix2017.scss */ +/* line 4735, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -4615,7 +4508,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; color: #222222; } -/* line 4897, ../../../scss/_clix2017.scss */ +/* line 4746, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -4623,15 +4516,15 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { left: 8px; top: 4px; } -/* line 4905, ../../../scss/_clix2017.scss */ +/* line 4754, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4907, ../../../scss/_clix2017.scss */ +/* line 4756, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4910, ../../../scss/_clix2017.scss */ +/* line 4759, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -4641,13 +4534,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.8px; color: #999999; } -/* line 4919, ../../../scss/_clix2017.scss */ +/* line 4768, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4925, ../../../scss/_clix2017.scss */ +/* line 4774, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } @@ -4655,7 +4548,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to module cards */ -/* line 4940, ../../../scss/_clix2017.scss */ +/* line 4789, ../../../scss/_clix2017.scss */ .module_card { display: table; height: 290px; @@ -4666,19 +4559,18 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 4950, ../../../scss/_clix2017.scss */ +/* line 4799, ../../../scss/_clix2017.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 4954, ../../../scss/_clix2017.scss */ +/* line 4803, ../../../scss/_clix2017.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 4959, ../../../scss/_clix2017.scss */ +/* line 4807, ../../../scss/_clix2017.scss */ .module_card .card_banner { - width: 250px; - height: 290px; + width: 300px; vertical-align: middle; overflow: hidden; background-size: 100% 100%; @@ -4689,14 +4581,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 4972, ../../../scss/_clix2017.scss */ +/* line 4819, ../../../scss/_clix2017.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 4977, ../../../scss/_clix2017.scss */ +/* line 4824, ../../../scss/_clix2017.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -4705,7 +4597,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transform: scale(1.03); opacity: 0.8; } -/* line 4989, ../../../scss/_clix2017.scss */ +/* line 4836, ../../../scss/_clix2017.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -4714,37 +4606,37 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 5004, ../../../scss/_clix2017.scss */ +/* line 4851, ../../../scss/_clix2017.scss */ .module_card .card_title { display: block; width: 230px; - font-size: 32px; font-weight: 600; text-align: center; margin: 0px auto; letter-spacing: 1px; + font-size: 24px; } -/* line 5015, ../../../scss/_clix2017.scss */ +/* line 4862, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 5018, ../../../scss/_clix2017.scss */ +/* line 4865, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 5023, ../../../scss/_clix2017.scss */ +/* line 4870, ../../../scss/_clix2017.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 5027, ../../../scss/_clix2017.scss */ +/* line 4874, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 5030, ../../../scss/_clix2017.scss */ +/* line 4877, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 5034, ../../../scss/_clix2017.scss */ +/* line 4881, ../../../scss/_clix2017.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -4760,53 +4652,35 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* Safari */ transition-property: left; } -/* line 5048, ../../../scss/_clix2017.scss */ +/* line 4895, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 5054, ../../../scss/_clix2017.scss */ +/* line 4901, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 5058, ../../../scss/_clix2017.scss */ +/* line 4905, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 5061, ../../../scss/_clix2017.scss */ +/* line 4908, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 5065, ../../../scss/_clix2017.scss */ +/* line 4912, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 5073, ../../../scss/_clix2017.scss */ -.module_card .card_summary .card_section .module-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 5086, ../../../scss/_clix2017.scss */ -.module_card .card_summary .card_section .module-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 5092, ../../../scss/_clix2017.scss */ +/* line 4920, ../../../scss/_clix2017.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -4823,14 +4697,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: black; } -/* line 5116, ../../../scss/_clix2017.scss */ +/* line 4942, ../../../scss/_clix2017.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 5124, ../../../scss/_clix2017.scss */ +/* line 4950, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -4843,27 +4717,27 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5137, ../../../scss/_clix2017.scss */ +/* line 4963, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 5142, ../../../scss/_clix2017.scss */ +/* line 4968, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 5150, ../../../scss/_clix2017.scss */ +/* line 4976, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 5154, ../../../scss/_clix2017.scss */ +/* line 4980, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5160, ../../../scss/_clix2017.scss */ +/* line 4986, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -4872,19 +4746,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } -/* line 5171, ../../../scss/_clix2017.scss */ +/* line 4997, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 5180, ../../../scss/_clix2017.scss */ +/* line 5006, ../../../scss/_clix2017.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 5185, ../../../scss/_clix2017.scss */ +/* line 5011, ../../../scss/_clix2017.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -4892,11 +4766,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 5191, ../../../scss/_clix2017.scss */ +/* line 5017, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 5194, ../../../scss/_clix2017.scss */ +/* line 5020, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4908,11 +4782,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5208, ../../../scss/_clix2017.scss */ + /* line 5034, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5211, ../../../scss/_clix2017.scss */ + /* line 5037, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -4926,46 +4800,48 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } } -/* line 5233, ../../../scss/_clix2017.scss */ +/* line 5059, ../../../scss/_clix2017.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; display: inline; width: 50%; + /* use :target to look for a link to the overlay then we find are mask */ + /* Tools page css listing*/ + /* User Dashboard Implementation */ + /* ---------------------- */ + /* tasks new UI */ } -/* line 5238, ../../../scss/_clix2017.scss */ +/* line 5064, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5241, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 > li > a { - list-style-type: none; - display: inline-block; - padding: 12px 12px 9px; - color: #164a7b; +/* line 5066, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; cursor: pointer; - font-size: 18px; - letter-spacing: 0.8px; - border-bottom: 3px solid transparent; -} -/* line 5252, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { - border-bottom: 3px solid #a2238d; + border-radius: 3px; + opacity: 0.8; + margin-top: 100px; } - -/* line 5260, ../../../scss/_clix2017.scss */ -ul.authoring-tab { - background-color: #164a7b; +/* line 5084, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5265, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li { +/* line 5088, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li { display: inline-block; + background-color: #164a7b; } -/* line 5268, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li > a { +/* line 5091, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; background-color: #164a7b; @@ -4977,115 +4853,444 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5279, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { +/* line 5102, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li > a.selected, ul.nav_menu_1 ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } - -/* line 5290, ../../../scss/_clix2017.scss */ -.course-content { +/* line 5111, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5298, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { +/* line 5119, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5301, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div { +/* line 5122, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5303, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div a { +/* line 5124, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5310, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name { - padding-left: 20px; +/* line 5132, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; } -/* line 5312, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name:not(:last-child) { - border-bottom: 1px solid #d2cfcf; +/* line 5149, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; } -/* line 5317, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name > div .jqtree-title { - color: #3c5264; - font-size: 19px; - font-weight: 600; +/* line 5168, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content:hover { + background: #F0F1F2 !important; } -/* line 5325, ../../../scss/_clix2017.scss */ -.course-content .course-activity-group > div .jqtree-title { - color: #74a0c0; - font-size: 17px; +/* line 5171, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; } -/* line 5331, ../../../scss/_clix2017.scss */ -.course-content .course-activity-name > div .jqtree-title { - color: #74a0c0; - font-size: 17px; +/* line 5182, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; } - -/* line 5338, ../../../scss/_clix2017.scss */ -.listing-row { - margin-top: 10px !important; +/* line 5202, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; } - -/* line 5342, ../../../scss/_clix2017.scss */ -.raw_material_asset { - width: auto; - top: -0.50em; - position: absolute; - display: inline-block; - color: #ce7869; - right: 1em; - padding: 0.3em 0.5em; - text-transform: uppercase; - font-size: 12px; - border-radius: 4px; - border: 2px solid #ffc14e; - background-color: #eefaff; - letter-spacing: 0.3px; +/* line 5207, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: #164A7B !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; } - -/* line 5358, ../../../scss/_clix2017.scss */ -.status-completed { - width: auto; - top: -1.15em; - position: absolute; - display: inline-block; - color: #fff; - right: 1em; - padding: 0.3em 0.5em; - font-family: OpenSans-Bold; - text-transform: uppercase; - font-size: 10px; - border-radius: 4px; - background-color: #008000; - letter-spacing: 0.4px; +/* line 5218, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; } - -/* line 5374, ../../../scss/_clix2017.scss */ -.status-in-progress { - width: auto; - top: -1.15em; - position: absolute; - display: inline-block; - color: #fff; - font-family: OpenSans-Bold; - right: 1em; - padding: 0.3em 0.5em; - text-transform: uppercase; - font-size: 10px; - border-radius: 4px; - background-color: #ffc14e; - letter-spacing: 0.4px; +/* line 5233, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; } - -/* line 5391, ../../../scss/_clix2017.scss */ -.status-upcoming { - width: auto; - top: -1.15em; +/* line 5250, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 5269, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content:hover { + background: #F0F1F2 !important; +} +/* line 5272, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 5283, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; +} +/* line 5303, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 5308, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: #164A7B !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; +} +/* line 5319, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} +/* line 5335, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 150px; +} +@media screen and (max-width: 480px) { + /* line 5345, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 640px) { + /* line 5357, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 800px) { + /* line 5369, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +/* line 5382, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav { + overflow: hidden; + background-color: #fff; +} +/* line 5387, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav a { + float: left; + display: block; + color: #ce7869; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 18px; + letter-spacing: 0.8px; +} +/* line 5398, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav a:hover { + border-bottom: 3px solid #ffc14e; + color: #ce7869; +} +/* line 5402, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .selected { + border-bottom: 3px solid #ffc14e; +} +/* line 5406, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav .icon { + display: none; +} +@media screen and (max-width: 600px) { + /* line 5411, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav a:not(:first-child) { + display: none; + } + /* line 5412, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav a.icon { + float: right; + display: block; + } +} +@media screen and (max-width: 600px) { + /* line 5419, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive { + position: relative; + } + /* line 5420, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive .icon { + position: absolute; + right: 0; + top: 0; + } + /* line 5425, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive a { + float: none; + display: block; + text-align: left; + } +} +/* line 5433, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 5441, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 5444, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { + height: 35px; +} +/* line 5446, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 5453, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name { + padding-left: 20px; +} +/* line 5455, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 5460, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; +} +/* line 5468, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 5474, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 5481, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .listing-row { + margin-top: 10px !important; +} +/* line 5485, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .raw_material_asset { + width: auto; + top: -0.50em; + position: absolute; + display: inline-block; + color: #ce7869; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 12px; + border-radius: 4px; + border: 2px solid #ffc14e; + background-color: #eefaff; + letter-spacing: 0.3px; +} +/* line 5501, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} +/* line 5517, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} +/* line 5534, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-upcoming { + width: auto; + top: -1.15em; position: absolute; display: inline-block; color: #fff; @@ -5098,9 +5303,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #74b3dc; letter-spacing: 0.4px; } - -/* line 5408, ../../../scss/_clix2017.scss */ -.status-draft { +/* line 5551, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-draft { width: auto; top: -1.15em; position: absolute; @@ -5115,131 +5319,100 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: grey; letter-spacing: 0.4px; } - -/* line 5426, ../../../scss/_clix2017.scss */ -.lesson-dropdown ul { +/* line 5568, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} +/* line 5585, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-dropdown ul { display: none; } - -/* line 5430, ../../../scss/_clix2017.scss */ -.lesson-dropdown:hover ul { +/* line 5589, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-dropdown:hover ul { display: block; } - -/* line 5434, ../../../scss/_clix2017.scss */ -.lesson_name_in_export { +/* line 5593, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson_name_in_export { list-style: none; } -/* line 5436, ../../../scss/_clix2017.scss */ -.lesson_name_in_export:hover { +/* line 5595, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } - -/* line 5441, ../../../scss/_clix2017.scss */ -.buddy_margin { +/* line 5600, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } - -/* line 5447, ../../../scss/_clix2017.scss */ -.lms_explore_head { +/* line 5606, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc { width: 100%; height: 45px; background-color: #fff; color: #164A7B; margin-top: -30px; } -/* line 5453, ../../../scss/_clix2017.scss */ -.lms_explore_head > p { +/* line 5612, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5459, ../../../scss/_clix2017.scss */ -.lms_explore_head > a { +/* line 5618, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc > a { padding: 12px 85px 3px 0px; } - -/* line 5463, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit { +/* line 5622, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5468, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit > p { +/* line 5627, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5474, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit > a { +/* line 5633, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } - -/* line 5479, ../../../scss/_clix2017.scss */ -.lms_explore_back { +/* line 5638, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_back { background-color: #fff; } - -/* line 5483, ../../../scss/_clix2017.scss */ -.lms_explore_back_unit { +/* line 5642, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } - -/* line 5488, ../../../scss/_clix2017.scss */ -.empty-dashboard-message { - border: 3px solid #e4e4e4; - background: #f8f8f8; - padding: 40px 0; - text-align: center; -} -/* line 5493, ../../../scss/_clix2017.scss */ -.empty-dashboard-message > p { - font-size: 24px; - color: #646464; - margin-bottom: 20px; - text-shadow: 0 1px rgba(255, 255, 255, 0.6); -} -/* line 5499, ../../../scss/_clix2017.scss */ -.empty-dashboard-message > a { - background-color: #164a7b; - border: 1px solid #164a7b; - box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); - box-sizing: border-box; - color: #fff; - font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - display: inline-block; - letter-spacing: 1px; - margin-top: 5px; - margin-left: 5px; - padding: 15px 20px; -} -/* line 5512, ../../../scss/_clix2017.scss */ -.empty-dashboard-message .button-explore-courses { - font-size: 20px; - font-weight: normal; - text-shadow: none; - text-transform: capitalize; - border-radius: 0.22rem; - width: 170px; -} - -/* line 5525, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner { +/* line 5650, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner { width: 100%; height: 200px; background-image: url("/static/ndf/images/mydesk_banner.png"); background-size: 100% 100%; position: relative; } -/* line 5532, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner:before { +/* line 5657, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); opacity: .5; @@ -5252,14 +5425,14 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5546, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile { +/* line 5671, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5551, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo { +/* line 5676, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; height: 100px; @@ -5267,54 +5440,51 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5559, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo svg { +/* line 5684, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5564, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo svg path { +/* line 5689, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5569, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .banner_heading { +/* line 5694, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5574, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { +/* line 5699, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5582, ../../../scss/_clix2017.scss */ -.mydesk_page .page_menu { +/* line 5707, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5586, ../../../scss/_clix2017.scss */ -.mydesk_page .page_menu li > a { +/* line 5711, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } - -/* line 5596, ../../../scss/_clix2017.scss */ -.input_links { +/* line 5721, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .input_links { margin-left: 10px; } -/* line 5598, ../../../scss/_clix2017.scss */ -.input_links a { +/* line 5723, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .input_links a { margin-right: 35px; margin-top: 5px; } - -/* line 5604, ../../../scss/_clix2017.scss */ -#course-notification +/* line 5729, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #course-notification #status { width: 100% !important; } - -/* line 5610, ../../../scss/_clix2017.scss */ -.add-note-btn { +/* line 5735, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; @@ -5324,9 +5494,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 23px; color: #6153AE; } - -/* line 5621, ../../../scss/_clix2017.scss */ -.bef-note-btn { +/* line 5746, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .bef-note-btn { padding: 3px 11px; border-radius: 100%; float: right; @@ -5336,9 +5505,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 23px; color: #6153AE; } - -/* line 5632, ../../../scss/_clix2017.scss */ -.edit-note-btn { +/* line 5757, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .edit-note-btn { float: right; border: 1px solid #CFCFCF; padding: 1px 16px; @@ -5347,13 +5515,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5640, ../../../scss/_clix2017.scss */ -.edit-note-btn i { +/* line 5765, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .edit-note-btn i { margin-right: 5px; } - -/* line 5644, ../../../scss/_clix2017.scss */ -.delete-note-btn { +/* line 5769, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .delete-note-btn { float: right; border: 1px solid #CFCFCF; padding: 1px 6px; @@ -5363,140 +5530,30 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5653, ../../../scss/_clix2017.scss */ -.delete-note-btn i { +/* line 5778, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .delete-note-btn i { margin-right: 5px; } - -/* line 5658, ../../../scss/_clix2017.scss */ -.jqtree-title > .fa-check { - color: green; -} - -/* line 5661, ../../../scss/_clix2017.scss */ -.jqtree-title > .fa-check-circle-o { +/* line 5783, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .jqtree-title > .fa-check { color: green; } - -/* line 5664, ../../../scss/_clix2017.scss */ -.jqtree-title > .fa-clock-o { +/* line 5786, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .jqtree-title > .fa-clock-o { color: orange; } - -/* line 5667, ../../../scss/_clix2017.scss */ -.course-status-icon { +/* line 5789, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-status-icon { font-size: 20px; margin-right: 5px; } - -/* line 5671, ../../../scss/_clix2017.scss */ -.img-height { +/* line 5793, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-height { height: 150px; width: 1351px; } - -/* line 5676, ../../../scss/_clix2017.scss */ -.wrapper-footer { - box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.1); - border-top: 1px solid #c5c6c7; - padding: 0px 0px 0px 3px; - right: 0; - bottom: 0; - left: 0; - z-index: 10; - max-width: 1200px; - display: flex; - background: rgba(221, 221, 221, 0.18); - clear: both; -} -/* line 5692, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix { - box-sizing: border-box; - max-width: 1200px; - margin-left: auto; - margin-right: auto; - margin: 0 auto; -} -/* line 5700, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos { - float: left; - display: block; - margin-right: 2.35765%; - width: 65.88078%; -} -/* line 5706, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-links-logos { - margin: 10px 0px 0px 18px; -} -/* line 5709, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-links-logos ol { - display: inline; - list-style-type: none; -} -/* line 5712, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li { - float: left; - margin-right: 15px; -} -/* line 5715, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a { - color: #ce7869; -} -/* line 5717, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a:hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; -} -/* line 5728, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-legal { - margin: 0px 0px 0px 20px; -} -/* line 5730, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-legal ol { - display: inline; - list-style-type: none; -} -/* line 5733, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-legal ol li { - float: left; - margin-right: 15px; - display: inline-block; - font-size: 0.6875em; -} -/* line 5738, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-legal ol li > a { - transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; - border-bottom: none; - color: #777; - text-decoration: none !important; -} -/* line 5743, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .nav-legal ol li > a:hover { - color: #777; - border-bottom: 3px solid #c90d97; -} -/* line 5753, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .wrapper-logo { - margin: 13px 0; - display: inline-block; -} -/* line 5756, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .wrapper-logo p { - color: inherit; - margin: 0; - display: inline-block; -} -/* line 5760, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .wrapper-logo p a { - display: inline-block; -} -/* line 5766, ../../../scss/_clix2017.scss */ -.wrapper-footer #footer-clix .links-logos .wrapper-logo .footer-logo > img { - height: 10px; -} - -/* line 5776, ../../../scss/_clix2017.scss */ -#overlay { +/* line 5800, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #overlay { /* we set all of the properties for are overlay */ height: 116px; width: 1024px; @@ -5515,9 +5572,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -o-border-radius: 10px; border-radius: 10px; } - -/* line 5796, ../../../scss/_clix2017.scss */ -#mask { +/* line 5820, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #mask { /* create are mask */ position: fixed; top: 0; @@ -5528,16 +5584,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 100%; display: none; } - -/* use :target to look for a link to the overlay then we find are mask */ -/* line 5807, ../../../scss/_clix2017.scss */ -#overlay:target, #overlay:target + #mask { +/* line 5831, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #overlay:target, ul.nav_menu_1 #overlay:target + #mask { display: block; opacity: 1; } - -/* line 5811, ../../../scss/_clix2017.scss */ -.close { +/* line 5835, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .close { /* to make a nice looking pure CSS3 close button */ display: block; position: absolute; @@ -5557,9 +5610,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -o-border-radius: 40px; border-radius: 38px; } - -/* line 5830, ../../../scss/_clix2017.scss */ -#open-overlay { +/* line 5854, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #open-overlay { /* open the overlay */ padding: 0px 0px; color: gray; @@ -5570,9 +5622,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -moz-border-radius: 10px; -o-border-radius: 10px; } - -/* line 5841, ../../../scss/_clix2017.scss */ -.enroll-btn { +/* line 5865, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll-btn { width: 90px; opacity: 1; background-color: rgba(0, 0, 0, 0.1); @@ -5586,51 +5637,43 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border: 1px solid #c1b4b5; background-color: #4b4852; } - -/* line 5863, ../../../scss/_clix2017.scss */ -.img-style-land { +/* line 5885, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-style-land { margin-top: 28px; margin-left: -56px; } - -/* line 5868, ../../../scss/_clix2017.scss */ -.top-margin-translation { +/* line 5890, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .top-margin-translation { margin-top: 0px; } - -/* line 5872, ../../../scss/_clix2017.scss */ -.activity-editor-header-top { +/* line 5894, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-editor-header-top { margin-top: -50px; } - -/* line 5876, ../../../scss/_clix2017.scss */ -.add-lesson-top-margin { +/* line 5898, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .add-lesson-top-margin { margin-top: 5px; } - -/* line 5879, ../../../scss/_clix2017.scss */ -.translation-detail-top-margin { +/* line 5901, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .translation-detail-top-margin { margin-top: 0px; } - -/* line 5882, ../../../scss/_clix2017.scss */ -.outer { +/* line 5904, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .outer { width: 100%; text-align: center; } - -/* line 5887, ../../../scss/_clix2017.scss */ -.inner { +/* line 5909, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .inner { display: inline-block !important; } - -/* line 5892, ../../../scss/_clix2017.scss */ -.transcript-toggler { +/* line 5914, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .transcript-toggler { display: block; width: 155px !important; height: 30px; - margin-top: 0px !important; - padding: 40px 29px 28px; + margin-top: -14px !important; + padding: 9px 16px 2px; background: radial-gradient(#573d8f, #412e6b); border-radius: 0 0 5px 5px; color: #fff; @@ -5639,89 +5682,63 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { padding-top: 7px !important; text-transform: uppercase; } - -/* line 5909, ../../../scss/_clix2017.scss */ -input.transcript-toggler { - background-image: url(/static/ndf/images/Transcript.svg) no-repeat !important; - background-color: transparent; - /* make the button transparent */ - background-repeat: no-repeat; - /* make the background image appear only once */ - background-position: 0px 0px; - /* equivalent to 'top left' */ - border: none; - /* assuming we don't want any borders */ - cursor: pointer; - /* make the cursor like hovering over an element */ - height: 16px; - /* make this the size of your image */ - padding-left: 16px; - /* make text start to the right of the image */ - vertical-align: middle; - /* align the text vertically centered */ -} - -/* line 5922, ../../../scss/_clix2017.scss */ -.double-buttons { +/* line 5930, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .double-buttons { margin-top: 100px; margin-left: 729px; } - -/* line 5927, ../../../scss/_clix2017.scss */ -.lesson-form-name { +/* line 5935, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-form-name { padding-top: 10px; } - -/* line 5931, ../../../scss/_clix2017.scss */ -.lesson-form-desc { +/* line 5939, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-form-desc { padding-top: 25px; } - -/* line 5935, ../../../scss/_clix2017.scss */ -.enroll_chkbox { +/* line 5943, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll_chkbox { transform: scale(1.5); } - -/* line 5938, ../../../scss/_clix2017.scss */ -.enroll_all_users { +/* line 5946, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll_all_users { width: 15% !important; } - -/* line 5942, ../../../scss/_clix2017.scss */ -.enrollBtn { - background: #a2238d; - height: 50px; - text-align: center; - color: #ffffff; - /* font-weight: bold; */ - width: 172px; - font-size: 28px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; +/* line 5950, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enrollBtn { + width: 124px !important; + background: rgba(75, 72, 82, 0.8); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 5px 8px; + color: #fff; + font-size: 20px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-top: 101px !important; + margin-right: 15px; } - -/* line 5976, ../../../scss/_clix2017.scss */ -.enroll-act_lbl { +/* line 5963, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enrollBtn:hover { + background: rgba(75, 72, 82, 0.8); + color: #000000; +} +/* line 5969, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll-act_lbl { color: #0c2944; } - -/* line 5981, ../../../scss/_clix2017.scss */ -.wrkspace { +/* line 5974, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .wrkspace { margin-right: 80px; } - -/* line 5985, ../../../scss/_clix2017.scss */ -.status-btn { +/* line 5978, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 5990, ../../../scss/_clix2017.scss */ -.status-btn .disabled { +/* line 5983, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-btn .disabled { background-color: #008cba; border-color: #007095; color: white; @@ -5729,264 +5746,77 @@ input.transcript-toggler { opacity: 0.7; box-shadow: none; } - -/* line 6000, ../../../scss/_clix2017.scss */ -.margin-right-50 { +/* line 5993, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .margin-right-50 { margin-right: 50px; } - -/* responsive footer */ -/* line 6007, ../../../scss/_clix2017.scss */ -.clearfix { - clear: both; -} - -/* line 6010, ../../../scss/_clix2017.scss */ -.clr1 { - background: #FFFFFF; - color: #333743; -} - -/* line 6011, ../../../scss/_clix2017.scss */ -.clr2 { - background: #F1F3F5; - color: #8F94A3; -} - -/* line 6012, ../../../scss/_clix2017.scss */ -.clr3 { - background: rgba(221, 221, 221, 0.18); - color: #BDC3CF; -} - -/* line 6013, ../../../scss/_clix2017.scss */ -.clr4 { - background: rgba(221, 221, 221, 0.18); - color: #E3E7F2; -} - -/* line 6014, ../../../scss/_clix2017.scss */ -.clr5 { - color: #F1F3F5; -} - -/* line 6015, ../../../scss/_clix2017.scss */ -.clr6 { - color: #39B5A1; -} - -/* line 6016, ../../../scss/_clix2017.scss */ -.clr7 { - color: #D45245; -} - -/*##### Footer Structure #####*/ -/* line 6021, ../../../scss/_clix2017.scss */ -.bo-wrap { - clear: both; - width: auto; -} - -/* line 6025, ../../../scss/_clix2017.scss */ -.bo-footer { - clear: both; - width: auto; - padding: 5px; - width: 960px; - margin: 0 auto; -} - -/* line 6033, ../../../scss/_clix2017.scss */ -.bo-footer-social { - text-align: left; - line-height: 1px; - padding: 10px 10px 10px 10px; -} -/* line 6038, ../../../scss/_clix2017.scss */ -.bo-footer-social > a { - color: #ce7869; - word-spacing: 8px; -} -/* line 6041, ../../../scss/_clix2017.scss */ -.bo-footer-social > a:hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; -} - -/* line 6051, ../../../scss/_clix2017.scss */ -.bo-footer-copyright > a { - transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; - border-bottom: none; - color: #777; - text-decoration: none !important; - word-spacing: 3px; -} -/* line 6057, ../../../scss/_clix2017.scss */ -.bo-footer-copyright > a:hover { - color: #777; - border-bottom: 3px solid #c90d97; -} - -/* line 6064, ../../../scss/_clix2017.scss */ -.bo-footer-smap { - width: 600px; - float: left; - padding: 5px 10px; - text-align: left; - font-size: 18px; - word-spacing: 20px; -} - -/* line 6073, ../../../scss/_clix2017.scss */ -.bo-footer-uonline { - width: 300px; - /* Account for margins + border values */ - float: left; - padding: 5px 10px; - text-align: center; -} - -/* line 6080, ../../../scss/_clix2017.scss */ -.bo-footer-power { - width: 300px; - padding: 5px 10px; - float: left; - text-align: right; - font-size: 14px; - color: #636A7D; - vertical-align: middle; -} - -/*##### Footer Responsive #####*/ -/* for 980px or less */ -@media screen and (max-width: 980px) { - /* line 6096, ../../../scss/_clix2017.scss */ - .bo-footer { - width: 95%; - padding: 1% 2%; - } - - /* line 6100, ../../../scss/_clix2017.scss */ - .bo-footer-smap { - width: 33%; - padding: 1% 2%; - } - - /* line 6104, ../../../scss/_clix2017.scss */ - .bo-footer-uonline { - width: 46%; - padding: 1% 2%; - float: right; - text-align: right; - } - - /* line 6111, ../../../scss/_clix2017.scss */ - .bo-footer-power { - clear: both; - padding: 1% 2%; - width: auto; - float: none; - text-align: center; - } -} -/* for 700px or less */ -@media screen and (max-width: 600px) { - /* line 6122, ../../../scss/_clix2017.scss */ - .bo-footer-smap { - width: auto; - float: none; - text-align: center; - } - - /* line 6128, ../../../scss/_clix2017.scss */ - .bo-footer-uonline { - width: auto; - float: none; - text-align: center; - } - - /* line 6134, ../../../scss/_clix2017.scss */ - .bo-footer-power { - width: auto; - float: none; - text-align: center; - } -} -/* for 480px or less */ -/* line 6148, ../../../scss/_clix2017.scss */ -.color-btn { +/* line 6000, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 6152, ../../../scss/_clix2017.scss */ -.color-btn:hover { +/* line 6004, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .color-btn:hover { color: #720f5e; background-color: #ffffff; } - -/* line 6158, ../../../scss/_clix2017.scss */ -.mid_label { +/* line 6010, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mid_label { margin-top: 15px; font-size: 15px; } - -/* line 6163, ../../../scss/_clix2017.scss */ -.compulsory { +/* line 6015, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .compulsory { color: red; font-size: smaller; } - -/* line 6168, ../../../scss/_clix2017.scss */ -.select-drop { +/* line 6020, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .select-drop { height: auto; } - -/* line 6172, ../../../scss/_clix2017.scss */ -.template-select { +/* line 6024, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .template-select { border: 1px solid #cccccc; border-radius: 5px; height: 38px; width: 40%; font-size: 14px; } - -/* line 6180, ../../../scss/_clix2017.scss */ -.white-text { +/* line 6032, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .white-text { color: white; } - -/* line 6185, ../../../scss/_clix2017.scss */ -.quiz-player .quiz_qtn { +/* line 6037, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6189, ../../../scss/_clix2017.scss */ -.quiz-player .question_edit { +/* line 6041, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6193, ../../../scss/_clix2017.scss */ -.quiz-player input[type=checkbox], .quiz-player input[type=radio] { +/* line 6045, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player input[type=checkbox], ul.nav_menu_1 .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6199, ../../../scss/_clix2017.scss */ -.quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { +/* line 6051, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .chk_ans_lbl, ul.nav_menu_1 .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6204, ../../../scss/_clix2017.scss */ -.quiz-player .fi-check { +/* line 6056, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .fi-check { color: green; } -/* line 6208, ../../../scss/_clix2017.scss */ -.quiz-player .fi-x { +/* line 6060, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .fi-x { color: red; } - -/* line 6213, ../../../scss/_clix2017.scss */ -.hyperlink-tag { +/* line 6065, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .hyperlink-tag { cursor: pointer; cursor: pointer; /* text-align: center; */ @@ -5997,9 +5827,8 @@ input.transcript-toggler { font-size: 24px; color: #164A7B; } - -/* line 6225, ../../../scss/_clix2017.scss */ -.scard { +/* line 6077, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard { background: #FFF; border: 1px solid #AAA; border-bottom: 3px solid #BBB; @@ -6010,13 +5839,13 @@ input.transcript-toggler { height: 9rem; /*float:left;*/ } -/* line 6234, ../../../scss/_clix2017.scss */ -.scard:hover { +/* line 6086, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6240, ../../../scss/_clix2017.scss */ -.scard .scard_header { +/* line 6092, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard .scard_header { text-align: center; position: fixed; height: 20rem; @@ -6032,9 +5861,8 @@ input.transcript-toggler { font-size: 20px; font-weight: bold; } - -/* line 6257, ../../../scss/_clix2017.scss */ -.scard-content { +/* line 6109, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-content { height: 2.7em; padding: 0.5rem; margin: 5px; @@ -6046,8 +5874,8 @@ input.transcript-toggler { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6268, ../../../scss/_clix2017.scss */ -.scard-content .scard-title { +/* line 6120, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; float: left; @@ -6055,9 +5883,43 @@ input.transcript-toggler { display: inline-block; text-align: center; } - -/* line 6281, ../../../scss/_clix2017.scss */ -.scard-action { +/* line 6132, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: 0px !important; + padding: 40px 29px 28px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} +/* line 6149, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 input.transcript-toggler { + background-image: url(/static/ndf/images/Transcript.svg) no-repeat !important; + background-color: transparent; + /* make the button transparent */ + background-repeat: no-repeat; + /* make the background image appear only once */ + background-position: 0px 0px; + /* equivalent to 'top left' */ + border: none; + /* assuming we don't want any borders */ + cursor: pointer; + /* make the cursor like hovering over an element */ + height: 16px; + /* make this the size of your image */ + padding-left: 16px; + /* make text start to the right of the image */ + vertical-align: middle; + /* align the text vertically centered */ +} +/* line 6161, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-action { height: height; font-size: 0.6em; padding: 0.5rem; @@ -6069,9 +5931,8 @@ input.transcript-toggler { width: 11rem; background-color: #CCCCCC; } - -/* line 6296, ../../../scss/_clix2017.scss */ -.scard-desc { +/* line 6176, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-desc { font-size: 0.7em; color: #333333; height: 40px; @@ -6085,9 +5946,8 @@ input.transcript-toggler { background-color: #E6E6E6; display-inline: block; } - -/* line 6313, ../../../scss/_clix2017.scss */ -.scard-image { +/* line 6193, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-image { padding: 0px; margin: 0px; height: 100%; @@ -6097,47 +5957,34 @@ input.transcript-toggler { overflow: hidden; background-color: #f2f2f2; } -/* line 6322, ../../../scss/_clix2017.scss */ -.scard-image img { +/* line 6202, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-image img { border-radius: 2px 2px 0 0; display: block; margin: 0 auto; opacity: 0.9; height: 100%; } - -/* line 6334, ../../../scss/_clix2017.scss */ -.published.scard-action { +/* line 6214, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .published.scard-action { background: #A6D9CB; } - -/* line 6338, ../../../scss/_clix2017.scss */ -.draft.scard-action { +/* line 6218, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .draft.scard-action { content: "Draft"; background: #DCDCDC; } - -/* line 6344, ../../../scss/_clix2017.scss */ -.scard_footer { - border-top: 1px solid rgba(160, 160, 160, 0.2); - padding: 0.25rem 0.5rem; - color: gray; - font-size: small; - height: 2rem; -} - -/* line 6352, ../../../scss/_clix2017.scss */ -.auto_width { +/* line 6225, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .auto_width { width: auto !important; } - -/* line 6356, ../../../scss/_clix2017.scss */ -.explore-settings-drop { - margin-left: 59%; +/* line 6229, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop { + margin-left: 57%; display: inline-block; } -/* line 6359, ../../../scss/_clix2017.scss */ -.explore-settings-drop > button { +/* line 6232, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop > button { color: #164a7b; font-weight: 400; cursor: pointer; @@ -6149,56 +5996,50 @@ input.transcript-toggler { margin-top: 10px; margin-left: 20px; } -/* line 6370, ../../../scss/_clix2017.scss */ -.explore-settings-drop > button:hover { +/* line 6243, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6376, ../../../scss/_clix2017.scss */ -.explore-settings-drop a { +/* line 6249, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop a { font-size: 16px; } -/* line 6379, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li { +/* line 6252, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; line-height: 1.125rem; margin: 0; background-color: #164A7B; } -/* line 6387, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li a { +/* line 6260, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6391, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li:hover { +/* line 6263, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } - -/* line 6398, ../../../scss/_clix2017.scss */ -.attempts_count { +/* line 6270, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .attempts_count { color: #000000 !important; } - -/* line 6404, ../../../scss/_clix2017.scss */ -#course-settings-drop li a { +/* line 6277, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #course-settings-drop li a { text-align: left; } - -/* line 6412, ../../../scss/_clix2017.scss */ -#asset-settings-drop li a { +/* line 6285, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #asset-settings-drop li a { text-align: left; } - -/* line 6419, ../../../scss/_clix2017.scss */ -.button-bg { +/* line 6292, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-bg { background-color: #74b3dc; } - -/* Tools page css listing*/ -/* line 6426, ../../../scss/_clix2017.scss */ -.polaroid { +/* line 6299, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .polaroid { width: 330px; background-color: white; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); @@ -6210,37 +6051,33 @@ input.transcript-toggler { transition: all 0.3s; cursor: pointer; } - -/* line 6439, ../../../scss/_clix2017.scss */ -.polaroid:hover img { +/* line 6312, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); } - -/* line 6448, ../../../scss/_clix2017.scss */ -.container { +/* line 6321, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6454, ../../../scss/_clix2017.scss */ -.container > p { +/* line 6327, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container > p { color: black; font-size: 16px; font-weight: 500; } - -/* line 6463, ../../../scss/_clix2017.scss */ -.tool-bg { +/* line 6336, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .tool-bg { background-color: rgba(87, 198, 250, 0.07); } - -/* line 6466, ../../../scss/_clix2017.scss */ -.purple-btn { +/* line 6339, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .purple-btn { width: inherit; text-transform: uppercase; border-radius: 5px; @@ -6249,9 +6086,8 @@ input.transcript-toggler { color: #ffffff !important; border: 2px solid #6a0054; } - -/* line 6476, ../../../scss/_clix2017.scss */ -.disable-purple-btn { +/* line 6349, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .disable-purple-btn { width: inherit; text-transform: uppercase !important; border-radius: 5px; @@ -6260,29 +6096,684 @@ input.transcript-toggler { color: #ffffff !important; border: 2px solid #4b4852; } - -/* line 6486, ../../../scss/_clix2017.scss */ -.user-analytics-data { +/* line 6359, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6489, ../../../scss/_clix2017.scss */ -.user-analytics-data .close-reveal-modal { +/* line 6362, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .user-analytics-data .close-reveal-modal { font-size: 20px; } - -/* line 6493, ../../../scss/_clix2017.scss */ -.left-space { +/* line 6366, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .left-space { margin-left: 0.5em; } - -/* line 6501, ../../../scss/_clix2017.scss */ -.top-right-menu { +/* line 6374, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .left_column { + float: left; + width: 625px; + border-radius: 3px; + background-color: #74b3dc; + box-sizing: border-box; + color: #444; +} +/* line 6383, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .dashboard { + background: #fafafa; + border: none; + border-radius: 6px; + padding: 25px; + font-size: 14px; + position: relative; + box-shadow: none; +} +/* line 6393, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_heading { + border-bottom: 2px solid #E5E5E5; + color: #444; + font-size: 24px; + font-weight: normal; + line-height: 1; + margin: 0; + padding-bottom: 28px; +} +/* line 6403, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group { + display: table; + padding: 20px 0; + width: 100%; +} +/* line 6408, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label { + font-weight: bold; + display: table-cell; + padding: 0 10px; + vertical-align: top; + width: 145px; +} +/* line 6414, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label > h3 { + font-weight: bold; + margin: 0; +} +/* line 6417, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label > h3 .account_subheading { + font-size: 14px; + line-height: 1.2; +} +/* line 6423, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_content { + display: table-cell; + padding: 0 10px; + vertical-align: top; +} +/* line 6429, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account { + margin: 0 0 10px; + display: block; + position: relative; +} +/* line 6435, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_label { + color: #444; + float: left; + font-size: 14px; + margin: 0; +} +/* line 6441, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .pencil_edit_button { + position: absolute; + top: 50%; + right: -43px; + width: 48px; + height: 48px; + margin: 0px 0 0 0; + padding: 0; + display: block; + border: none; + background: none; + overflow: hidden; + line-height: 24px; + font-size: 24px; + color: #000; + opacity: 0.25; + text-decoration: none; + text-align: center; + cursor: pointer; +} +/* line 6463, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { + background: transparent; + border: 1px solid #D9D9D9; + color: #444; + font-size: 14px; + margin: 0; + max-width: 100%; + outline: 0; + padding: 6px 9px; + width: 330px; + border-radius: 2px; +} +/* line 6477, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { + color: rgba(68, 68, 68, 0.45) !important; +} +/* line 6480, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { + position: relative; + z-index: 2; +} +/* line 6497, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation { + width: 400px; + margin: 100px auto 0 auto; +} +/* line 6500, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input { + display: block; + border-radius: 5px; + border: none; + background: white; + font-family: OpenSans-regular; + font-size: 16px; + line-height: 16px; + font-weight: 200; + width: 100%; + padding: 15px; + margin: 0 0 10px 0; + opacity: .2; + outline: none; + box-shadow: 0 0 0 1px transparent; + background-size: 0px 0px; + background-position: right 23px; + background-repeat: no-repeat; +} +/* line 6518, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input[type="submit"], ul.nav_menu_1 #progressive-validation input[type="submit"]:valid { + background-color: #1a3e4c; + color: white; + background-image: none; +} +/* line 6523, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:focus { + box-shadow: 0 0 0 1px #00aeef; + opacity: 1 !important; +} +/* line 6527, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:enabled { + opacity: .8; +} +/* line 6530, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:valid { + background-size: 46px 46px; + background-position: right 0px; + background-repeat: no-repeat; +} +/* line 6540, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #analyticsFooter { + background-color: #e9eaed; + text-align: center; + font-weight: bold; + padding: 8px; + font-size: 12px; + border-top: 1px solid #dddddd; + min-width: 400px; +} +/* line 6551, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-circle { + border-radius: 50%; + border: 1px solid rgba(128, 128, 128, 0.15); +} +/* line 6557, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container-px { + background-color: #fafafa; + min-width: 600px; + min-height: 600px; +} +/* line 6563, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .noti { + max-width: 400px !important; +} +/* line 6566, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notification_body { + max-width: 1546px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 6584, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 6602, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content:hover { + background: #F0F1F2 !important; +} +/* line 6605, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content .content-body { + border-bottom: 1px solid #D6D8DA !important; +} +/* line 6616, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6623, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6627, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6633, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .accordion .accordion-navigation > .content, ul.nav_menu_1 .task_sheet .task_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6639, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6644, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6653, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6657, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6662, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6671, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6678, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6687, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6692, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6695, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6705, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6711, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6719, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6721, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6728, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6737, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6746, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6756, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6761, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6764, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6773, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6778, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6782, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6784, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6787, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6793, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 6809, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section { + background: white; + min-height: 100vh; + margin-bottom: 10px; + padding-right: 4px; + border: 1px solid rgba(128, 128, 128, 0.23); + width: 79%; + box-shadow: 0px 0px 5px #73859f; +} +/* line 6817, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section #scstyle { + margin-top: -10px; +} +/* line 6820, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_editor_top { + border-top: 4px solid #74b3dc; + width: 101.3%; + margin-left: -15px; + margin-top: -1px; +} +/* line 6827, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_head { + height: 65px; + font-size: 22px; + padding: 16px 5px 5px 57px; + color: black; +} +/* line 6836, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section form { + font-size: 17px; + padding: 10px 0px 0px 10px; +} +/* line 6841, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_ex { + border-bottom: 2px solid rgba(128, 128, 128, 0.23); +} +/* line 6843, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_ex.active { + border: 2px solid #74b3dc; + margin-left: -16px; + width: 101.5%; + margin-top: -2px; +} +/* line 6852, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 6869, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 6888, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content:hover { + background: #F0F1F2 !important; +} +/* line 6891, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 6902, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; +} +/* line 6919, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 6924, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: #164A7B !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; +} +/* line 6937, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} +/* line 6954, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} +/* line 6960, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; + border: 2px solid rgba(128, 128, 128, 0.15); +} +/* line 6967, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; + height: 150px; + background-color: white; +} +/* line 6978, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li.active { + background: rgba(0, 140, 186, 0.42); + height: 150px; + margin-top: -10px; +} +/* line 6984, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li > a { + color: black; +} +/* line 6993, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_page_rendered { + margin-left: 20px; + max-width: 900px; +} +/* line 7001, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .round { + border-radius: 1px; + background-color: orange; +} +/* line 7007, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-normal { + background: #ffc14e; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} +/* line 7015, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-high { + background: #f04124; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} +/* line 7023, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-low { + background: #008cba; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} +/* line 7032, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-indication { + border-radius: 124px; + padding: 0px 8px 3px 8px; + line-height: 25px; + margin: 4px 14px 10px 0; + height: auto; + display: inline-block !important; + border: 2px solid rgba(115, 133, 159, 0.5); + color: grey; +} +/* line 7042, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .priority-margin { + margin-left: -30px; +} +/* line 7046, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .iconclr { + color: #999999; +} +/* line 7052, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .top-right-menu { margin-right: 80px !important; } - -/* line 6508, ../../../scss/_clix2017.scss */ -.button-cancel-new { +/* line 7059, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new { height: 2rem; padding: 0 2rem; background: none; @@ -6299,13 +6790,13 @@ input.transcript-toggler { transition: all .1s ease; margin-right: 1px; } -/* line 6524, ../../../scss/_clix2017.scss */ -.button-cancel-new:hover { +/* line 7075, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 6529, ../../../scss/_clix2017.scss */ -.button-cancel-new > a { +/* line 7080, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; text-transform: uppercase; @@ -6316,14 +6807,13 @@ input.transcript-toggler { transition: all .1s ease; margin-right: 1px; } -/* line 6539, ../../../scss/_clix2017.scss */ -.button-cancel-new > a:hover { +/* line 7090, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new > a:hover { background-color: #fff; color: #333333; } - -/* line 6547, ../../../scss/_clix2017.scss */ -.button-save-new { +/* line 7098, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-save-new { height: 2rem; padding: 0 2rem; background: none; @@ -6339,8 +6829,196 @@ input.transcript-toggler { color: #fff; transition: all .1s ease; } -/* line 6562, ../../../scss/_clix2017.scss */ -.button-save-new:hover { +/* line 7113, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-save-new:hover { background-color: #fff; color: #912a7d; } + +/* line 7121, ../../../scss/_clix2017.scss */ +html, body { + height: 100%; +} + +/* line 7124, ../../../scss/_clix2017.scss */ +#gbase_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; +} + +/* line 7132, ../../../scss/_clix2017.scss */ +#base_wrap { + /* +min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 10px; +} + +/* line 7141, ../../../scss/_clix2017.scss */ +body > footer { + padding: 10px 5px; + position: relative; + background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; +} +/* line 7151, ../../../scss/_clix2017.scss */ +body > footer ul { + list-style-type: none; + text-decoration: none; +} +/* line 7154, ../../../scss/_clix2017.scss */ +body > footer ul li { + font-size: 15px; + margin-bottom: 5px; +} +/* line 7159, ../../../scss/_clix2017.scss */ +body > footer p { + margin: 10px; + font-size: 18px; +} +/* line 7163, ../../../scss/_clix2017.scss */ +body > footer h2 { + font-size: 25px; +} +/* line 7166, ../../../scss/_clix2017.scss */ +body > footer li { + color: #bbbbbb; +} +/* line 7169, ../../../scss/_clix2017.scss */ +body > footer a { + color: #bbbbbb; + margin-top: 0; + padding: 0; + display: inline; +} +/* line 7174, ../../../scss/_clix2017.scss */ +body > footer a:hover { + text-decoration: none; + color: #ffffff; + margin-top: 0; + padding: 0; + display: inline; +} +/* line 7182, ../../../scss/_clix2017.scss */ +body > footer .myfooter { + margin-top: 10px; + display: table-row; + height: 1px; +} +/* line 7187, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer-section { + color: #ffffff; + text-align: center; +} +/* line 7191, ../../../scss/_clix2017.scss */ +body > footer .myfooter .inline_mar-right { + display: inline-block; + margin: 0 25px 15px 0; +} +/* line 7196, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_content { + margin: 20px; +} +/* line 7199, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_content .footer-logo { + height: 65px; + width: 150px; +} +/* line 7204, ../../../scss/_clix2017.scss */ +body > footer .myfooter .links_collapse { + max-height: 78px; + overflow: hidden; + transition: all 0.5s ease-out; +} +/* line 7209, ../../../scss/_clix2017.scss */ +body > footer .myfooter .links_collapse ul { + display: inline; + padding: 0; + margin: 0px !important; +} +/* line 7215, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont { + display: inline-block; + vertical-align: top; + /*margin: 20px;*/ + text-align: left; +} +/* line 7221, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont .links_show { + max-height: 600px; +} +/* line 7225, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont h4 { + color: #999; +} +/* line 7228, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont .social_links { + font-size: 24px; + margin-right: 5px; +} +/* line 7233, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links { + color: #777777; + cursor: pointer; +} +/* line 7236, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 7239, ../../../scss/_clix2017.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links:hover { + text-decoration: underline; +} +/* line 7246, ../../../scss/_clix2017.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 7252, ../../../scss/_clix2017.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 7258, ../../../scss/_clix2017.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 7264, ../../../scss/_clix2017.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} + +/* line 7268, ../../../scss/_clix2017.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 7274, ../../../scss/_clix2017.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 7279, ../../../scss/_clix2017.scss */ +.coll-arrows { + cursor: pointer; + display: block; + padding: 0.5rem; +} +/* line 7284, ../../../scss/_clix2017.scss */ +.coll-arrows:hover { + background-color: #D3D3D3; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 8e67dc5647..ecd2b99e7c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -23454,7 +23454,7 @@ th.hide-for-touch { /* * Foundation extensions */ -/* line 37, ../../../scss/_app_styles.scss */ +/* line 38, ../../../scss/_app_styles.scss */ pre { width: 92%; overflow: auto; @@ -23493,61 +23493,61 @@ pre { @import url('../../../fonts/ubuntu/Ubuntu-Medium.ttf'); @import url('../../../fonts/ubuntu/Ubuntu-Regular.ttf'); */ -/* line 75, ../../../scss/_app_styles.scss */ +/* line 76, ../../../scss/_app_styles.scss */ .fixme { opacity: 0.5; } -/* line 78, ../../../scss/_app_styles.scss */ +/* line 79, ../../../scss/_app_styles.scss */ .fixme:hover { opacity: 1; color: inherit; } -/* line 81, ../../../scss/_app_styles.scss */ +/* line 82, ../../../scss/_app_styles.scss */ .fixme:hover:after { content: " fixme"; color: orange; } /* Utility class to display the child spans of this element on hover */ -/* line 90, ../../../scss/_app_styles.scss */ +/* line 91, ../../../scss/_app_styles.scss */ .show-span-on-hover span { display: none; } -/* line 93, ../../../scss/_app_styles.scss */ +/* line 94, ../../../scss/_app_styles.scss */ .show-span-on-hover:hover span { display: inline; } -/* line 99, ../../../scss/_app_styles.scss */ +/* line 100, ../../../scss/_app_styles.scss */ .show-on-hover .show { display: none; z-index: 1000; } -/* line 103, ../../../scss/_app_styles.scss */ +/* line 104, ../../../scss/_app_styles.scss */ .show-on-hover:hover .show { display: block; } /* Utility class to display the next siblings on hoverr */ -/* line 108, ../../../scss/_app_styles.scss */ +/* line 109, ../../../scss/_app_styles.scss */ .extra.app { display: none; } /* Effects */ -/* line 114, ../../../scss/_app_styles.scss */ +/* line 115, ../../../scss/_app_styles.scss */ .drop-shadow { -webkit-box-shadow: 0px 0px 5px 1px black; box-shadow: 0px 0px 5px 1px black; } -/* line 118, ../../../scss/_app_styles.scss */ +/* line 119, ../../../scss/_app_styles.scss */ .rounded { border-radius: 2px; -webkit-border-radius: 2px; } -/* line 122, ../../../scss/_app_styles.scss */ +/* line 123, ../../../scss/_app_styles.scss */ .transition-opacity { transition: opacity .3s ease; -moz-transition: opacity .3s ease; @@ -23556,13 +23556,13 @@ pre { } /*Ratings bar based on http://codepen.io/lsirivong/pen/ekBxI */ -/* line 131, ../../../scss/_app_styles.scss */ +/* line 132, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 133, ../../../scss/_app_styles.scss */ +/* line 134, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -23570,19 +23570,19 @@ pre { unicode-bidi: bidi-override; direction: rtl; } -/* line 141, ../../../scss/_app_styles.scss */ +/* line 142, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 143, ../../../scss/_app_styles.scss */ +/* line 144, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #cdcdcd; } -/* line 149, ../../../scss/_app_styles.scss */ +/* line 150, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 151, ../../../scss/_app_styles.scss */ +/* line 152, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -23595,7 +23595,7 @@ pre { margin: 0; vertical-align: bottom; } -/* line 163, ../../../scss/_app_styles.scss */ +/* line 164, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -23603,32 +23603,32 @@ pre { /* WHITE STAR */ color: #888; } -/* line 170, ../../../scss/_app_styles.scss */ +/* line 171, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 181, ../../../scss/_app_styles.scss */ +/* line 182, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 188, ../../../scss/_app_styles.scss */ +/* line 189, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 196, ../../../scss/_app_styles.scss */ +/* line 197, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 201, ../../../scss/_app_styles.scss */ +/* line 202, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -23637,113 +23637,107 @@ pre { text-shadow: 0 0 1px #333; } -/* line 216, ../../../scss/_app_styles.scss */ +/* line 217, ../../../scss/_app_styles.scss */ .progress .meter { float: left; } -/* line 222, ../../../scss/_app_styles.scss */ -body { - background-color: #F2F2F2; - font-family: 'ubuntu-regular'; -} - -/* line 228, ../../../scss/_app_styles.scss */ +/* line 226, ../../../scss/_app_styles.scss */ #top-headers { margin-bottom: 0.5rem; } -/* line 233, ../../../scss/_app_styles.scss */ +/* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { background-color: #3e3e3e; } @media only screen and (min-width: 40.063em) { - /* line 233, ../../../scss/_app_styles.scss */ + /* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { height: auto; } } -/* line 243, ../../../scss/_app_styles.scss */ +/* line 241, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a { height: auto; } -/* line 246, ../../../scss/_app_styles.scss */ +/* line 244, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a img { height: 45px; } -/* line 258, ../../../scss/_app_styles.scss */ +/* line 256, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { color: #ececec; } -/* line 260, ../../../scss/_app_styles.scss */ +/* line 258, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { background-color: #3e3e3e; color: #ececec; } -/* line 267, ../../../scss/_app_styles.scss */ +/* line 265, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #2d2752 !important; color: #ececec; } -/* line 274, ../../../scss/_app_styles.scss */ +/* line 272, ../../../scss/_app_styles.scss */ #top-headers #group-level-header { opacity: 0.9; background-color: #E1E1E1; } -/* line 279, ../../../scss/_app_styles.scss */ +/* line 277, ../../../scss/_app_styles.scss */ #top-headers #group-level-header:hover { opacity: 1; transition: 0.1s all; box-shadow: 0px 2px 3px #E1E1E1; } -/* line 287, ../../../scss/_app_styles.scss */ +/* line 285, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #group-apps .back-btn.fi-play:before { transform: rotate(180deg); } -/* line 292, ../../../scss/_app_styles.scss */ +/* line 290, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar { background-color: #fafafa; border-top: solid thin gray; height: 52px; } -/* line 296, ../../../scss/_app_styles.scss */ +/* line 294, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar span { font-size: 1em !important; } -/* line 301, ../../../scss/_app_styles.scss */ +/* line 299, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar img { height: 45px; width: 50px; } -/* line 312, ../../../scss/_app_styles.scss */ +/* line 310, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { background-color: #fafafa !important; color: #000; border-bottom: solid 1px gray !important; } -/* line 318, ../../../scss/_app_styles.scss */ +/* line 316, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { background-color: #2d2752 !important; } -/* line 322, ../../../scss/_app_styles.scss */ +/* line 320, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { background-color: #352d61; } -/* line 327, ../../../scss/_app_styles.scss */ +/* line 325, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { background-color: #fafafa; color: gray; } -/* line 334, ../../../scss/_app_styles.scss */ +/* line 332, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #2d2752; color: #fff; } -/* line 342, ../../../scss/_app_styles.scss */ +/* line 340, ../../../scss/_app_styles.scss */ #top-headers ul.dropdown { box-shadow: 0px 2px 5px black; opacity: 1; } -/* line 347, ../../../scss/_app_styles.scss */ +/* line 345, ../../../scss/_app_styles.scss */ #top-headers #search_text { border-bottom: solid thin #E1E1E1; background-color: #fafafa; @@ -23756,21 +23750,20 @@ body { box-shadow: none; top: 10px; } -/* line 359, ../../../scss/_app_styles.scss */ +/* line 357, ../../../scss/_app_styles.scss */ #top-headers #search_text:focus { border-bottom-color: #2b2c2d; transition: 1s ease-out; } -/* line 365, ../../../scss/_app_styles.scss */ +/* line 363, ../../../scss/_app_styles.scss */ #top-headers #search-submit { - background-color: #fafafa; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; + /* background-color: #fafafa;*/ + /*color: gray; + top: -3px;*/ + width: 60px; + /* height:-40px;*/ } -/* line 375, ../../../scss/_app_styles.scss */ +/* line 372, ../../../scss/_app_styles.scss */ #top-headers #search-submit:hover { opacity: 1; color: white; @@ -23778,57 +23771,88 @@ body { transition: 0.8s ease-out; } -/* line 413, ../../../scss/_app_styles.scss */ +/* line 410, ../../../scss/_app_styles.scss */ .top-bar .active { background-color: #3d346f !important; } -/* line 419, ../../../scss/_app_styles.scss */ +/* line 416, ../../../scss/_app_styles.scss */ .top-bar .logout { background-color: #f04124 !important; } -/* line 423, ../../../scss/_app_styles.scss */ +/* line 420, ../../../scss/_app_styles.scss */ .top-bar .logout:hover { background-color: #d32a0e !important; transition: background-color 400ms ease-out; } -/* line 465, ../../../scss/_app_styles.scss */ +/* line 460, ../../../scss/_app_styles.scss */ +html, body { + height: 100%; + /* +overflow-x: hidden;*/ +} + +/* line 464, ../../../scss/_app_styles.scss */ +#gbase_wrap { + /*min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; + overflow-x: hidden; +} + +/* line 473, ../../../scss/_app_styles.scss */ +#base_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 -60px; +} + +/* line 484, ../../../scss/_app_styles.scss */ body > footer { padding: 10px 5px; position: relative; background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; } -/* line 471, ../../../scss/_app_styles.scss */ +/* line 494, ../../../scss/_app_styles.scss */ body > footer ul { list-style-type: none; text-decoration: none; } -/* line 474, ../../../scss/_app_styles.scss */ +/* line 497, ../../../scss/_app_styles.scss */ body > footer ul li { font-size: 15px; margin-bottom: 5px; } -/* line 479, ../../../scss/_app_styles.scss */ +/* line 502, ../../../scss/_app_styles.scss */ body > footer p { margin: 10px; font-size: 18px; } -/* line 483, ../../../scss/_app_styles.scss */ +/* line 506, ../../../scss/_app_styles.scss */ body > footer h2 { font-size: 25px; } -/* line 486, ../../../scss/_app_styles.scss */ +/* line 509, ../../../scss/_app_styles.scss */ body > footer li { color: #bbbbbb; } -/* line 489, ../../../scss/_app_styles.scss */ +/* line 512, ../../../scss/_app_styles.scss */ body > footer a { color: #bbbbbb; margin-top: 0; padding: 0; display: inline; } -/* line 494, ../../../scss/_app_styles.scss */ +/* line 517, ../../../scss/_app_styles.scss */ body > footer a:hover { text-decoration: none; color: #ffffff; @@ -23836,95 +23860,147 @@ body > footer a:hover { padding: 0; display: inline; } -/* line 504, ../../../scss/_app_styles.scss */ +/* line 525, ../../../scss/_app_styles.scss */ +body > footer .myfooter { + display: table-row; + height: 1px; +} +/* line 530, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer-section { color: #ffffff; text-align: center; } -/* line 508, ../../../scss/_app_styles.scss */ +/* line 534, ../../../scss/_app_styles.scss */ body > footer .myfooter .inline_mar-right { display: inline-block; margin: 0 25px 15px 0; } -/* line 513, ../../../scss/_app_styles.scss */ +/* line 539, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content { margin: 20px; } -/* line 516, ../../../scss/_app_styles.scss */ +/* line 542, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content .footer-logo { height: 65px; width: 150px; } -/* line 521, ../../../scss/_app_styles.scss */ +/* line 547, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse { max-height: 78px; overflow: hidden; transition: all 0.5s ease-out; } -/* line 526, ../../../scss/_app_styles.scss */ +/* line 552, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse ul { display: inline; padding: 0; margin: 0px !important; } -/* line 532, ../../../scss/_app_styles.scss */ +/* line 558, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - margin: 20px; text-align: left; } -/* line 538, ../../../scss/_app_styles.scss */ +/* line 563, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 542, ../../../scss/_app_styles.scss */ +/* line 567, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .flinks { + font-size: 20px; + color: #999; + line-height: 1px; +} +/* line 572, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { + font-size: 24px; + margin-right: 5px; +} +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 546, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 583, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } +/* line 590, ../../../scss/_app_styles.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 596, ../../../scss/_app_styles.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 602, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 608, ../../../scss/_app_styles.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} + +/* line 612, ../../../scss/_app_styles.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 618, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} -/* line 555, ../../../scss/_app_styles.scss */ +/* line 623, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 560, ../../../scss/_app_styles.scss */ +/* line 628, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 566, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 569, ../../../scss/_app_styles.scss */ +/* line 638, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 573, ../../../scss/_app_styles.scss */ +/* line 642, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #6152ae; /* Hide icons till we can retreive custom icons from the system */ } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 644, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 577, ../../../scss/_app_styles.scss */ +/* line 646, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 583, ../../../scss/_app_styles.scss */ +/* line 652, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -23933,135 +24009,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 587, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 590, ../../../scss/_app_styles.scss */ +/* line 659, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 595, ../../../scss/_app_styles.scss */ +/* line 664, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 669, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 604, ../../../scss/_app_styles.scss */ +/* line 673, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 612, ../../../scss/_app_styles.scss */ +/* line 681, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 618, ../../../scss/_app_styles.scss */ +/* line 687, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #6153ae; color: white; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 695, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 639, ../../../scss/_app_styles.scss */ +/* line 708, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 647, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 719, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 723, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 658, ../../../scss/_app_styles.scss */ +/* line 727, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 731, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 669, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 672, ../../../scss/_app_styles.scss */ +/* line 741, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 754, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #6152ae; margin: 0; } -/* line 690, ../../../scss/_app_styles.scss */ +/* line 759, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 692, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 695, ../../../scss/_app_styles.scss */ +/* line 764, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #6152ae; background-color: #6152ae; } -/* line 708, ../../../scss/_app_styles.scss */ +/* line 777, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 713, ../../../scss/_app_styles.scss */ +/* line 782, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 726, ../../../scss/_app_styles.scss */ +/* line 795, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 732, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 735, ../../../scss/_app_styles.scss */ +/* line 804, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24071,13 +24147,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 745, ../../../scss/_app_styles.scss */ +/* line 814, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 755, ../../../scss/_app_styles.scss */ +/* line 824, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24088,51 +24164,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 767, ../../../scss/_app_styles.scss */ +/* line 836, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 778, ../../../scss/_app_styles.scss */ +/* line 847, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 783, ../../../scss/_app_styles.scss */ +/* line 852, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 788, ../../../scss/_app_styles.scss */ +/* line 857, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 862, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 798, ../../../scss/_app_styles.scss */ +/* line 867, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 804, ../../../scss/_app_styles.scss */ +/* line 873, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 810, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 813, ../../../scss/_app_styles.scss */ +/* line 882, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 818, ../../../scss/_app_styles.scss */ +/* line 887, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24141,28 +24217,28 @@ article h1:not(.subheader) div input:hover { color: #6153ae; opacity: 0.3; } -/* line 827, ../../../scss/_app_styles.scss */ +/* line 896, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 832, ../../../scss/_app_styles.scss */ +/* line 901, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 836, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 839, ../../../scss/_app_styles.scss */ +/* line 908, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 914, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24170,23 +24246,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 851, ../../../scss/_app_styles.scss */ +/* line 920, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 924, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 859, ../../../scss/_app_styles.scss */ +/* line 928, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 864, ../../../scss/_app_styles.scss */ +/* line 933, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24196,7 +24272,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 875, ../../../scss/_app_styles.scss */ +/* line 944, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24205,40 +24281,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 888, ../../../scss/_app_styles.scss */ +/* line 957, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 890, ../../../scss/_app_styles.scss */ +/* line 959, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 963, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #6152ae; border: 1px solid; } -/* line 898, ../../../scss/_app_styles.scss */ +/* line 967, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #6152ae; } -/* line 902, ../../../scss/_app_styles.scss */ +/* line 971, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 975, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 981, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 919, ../../../scss/_app_styles.scss */ +/* line 988, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24247,31 +24323,31 @@ article section.content { } /* Default card */ -/* line 927, ../../../scss/_app_styles.scss */ +/* line 996, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 932, ../../../scss/_app_styles.scss */ +/* line 1001, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 940, ../../../scss/_app_styles.scss */ +/* line 1009, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 944, ../../../scss/_app_styles.scss */ +/* line 1013, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 952, ../../../scss/_app_styles.scss */ +/* line 1021, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24279,20 +24355,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 961, ../../../scss/_app_styles.scss */ +/* line 1030, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 1034, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 1038, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 981, ../../../scss/_app_styles.scss */ +/* line 1050, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24313,39 +24389,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1001, ../../../scss/_app_styles.scss */ +/* line 1070, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1006, ../../../scss/_app_styles.scss */ +/* line 1075, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1010, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1013, ../../../scss/_app_styles.scss */ +/* line 1082, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1017, ../../../scss/_app_styles.scss */ +/* line 1086, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1021, ../../../scss/_app_styles.scss */ +/* line 1090, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1029, ../../../scss/_app_styles.scss */ +/* line 1098, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24353,13 +24429,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1105, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1041, ../../../scss/_app_styles.scss */ +/* line 1110, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24373,13 +24449,13 @@ input.node-title { } /*for graph and location*/ -/* line 1051, ../../../scss/_app_styles.scss */ +/* line 1120, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1056, ../../../scss/_app_styles.scss */ +/* line 1125, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24390,7 +24466,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1067, ../../../scss/_app_styles.scss */ +/* line 1136, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24403,7 +24479,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1082, ../../../scss/_app_styles.scss */ +/* line 1151, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24413,102 +24489,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1093, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1165, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1100, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1106, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1109, ../../../scss/_app_styles.scss */ +/* line 1178, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1121, ../../../scss/_app_styles.scss */ +/* line 1190, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1128, ../../../scss/_app_styles.scss */ +/* line 1197, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1203, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1142, ../../../scss/_app_styles.scss */ +/* line 1211, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1146, ../../../scss/_app_styles.scss */ +/* line 1215, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1152, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1155, ../../../scss/_app_styles.scss */ +/* line 1224, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1159, ../../../scss/_app_styles.scss */ +/* line 1228, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1164, ../../../scss/_app_styles.scss */ +/* line 1233, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1171, ../../../scss/_app_styles.scss */ +/* line 1240, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1175, ../../../scss/_app_styles.scss */ +/* line 1244, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1180, ../../../scss/_app_styles.scss */ +/* line 1249, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1186, ../../../scss/_app_styles.scss */ +/* line 1255, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24517,16 +24593,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1264, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1200, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1203, ../../../scss/_app_styles.scss */ +/* line 1272, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24534,7 +24610,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1282, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24544,12 +24620,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1291, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1228, ../../../scss/_app_styles.scss */ +/* line 1297, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24575,7 +24651,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1256, ../../../scss/_app_styles.scss */ +/* line 1325, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24587,12 +24663,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1265, ../../../scss/_app_styles.scss */ +/* line 1334, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1271, ../../../scss/_app_styles.scss */ +/* line 1340, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24610,7 +24686,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1288, ../../../scss/_app_styles.scss */ +/* line 1357, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24623,7 +24699,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1299, ../../../scss/_app_styles.scss */ +/* line 1368, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24633,7 +24709,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1312, ../../../scss/_app_styles.scss */ +/* line 1381, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24647,7 +24723,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1327, ../../../scss/_app_styles.scss */ +/* line 1396, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24663,13 +24739,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1342, ../../../scss/_app_styles.scss */ +/* line 1411, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1347, ../../../scss/_app_styles.scss */ +/* line 1416, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24680,7 +24756,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1356, ../../../scss/_app_styles.scss */ +/* line 1425, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24688,7 +24764,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1365, ../../../scss/_app_styles.scss */ +/* line 1434, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24702,83 +24778,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1382, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1385, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1388, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1391, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1397, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1400, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1403, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1406, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1412, ../../../scss/_app_styles.scss */ +/* line 1481, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1418, ../../../scss/_app_styles.scss */ +/* line 1487, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1422, ../../../scss/_app_styles.scss */ +/* line 1491, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1428, ../../../scss/_app_styles.scss */ +/* line 1497, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1433, ../../../scss/_app_styles.scss */ +/* line 1502, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1437, ../../../scss/_app_styles.scss */ +/* line 1506, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1441, ../../../scss/_app_styles.scss */ +/* line 1510, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24789,7 +24865,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1579, ../../../scss/_app_styles.scss */ +/* line 1648, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24802,26 +24878,26 @@ p { height: 100%; } -/* line 1590, ../../../scss/_app_styles.scss */ +/* line 1659, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1595, ../../../scss/_app_styles.scss */ +/* line 1664, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1600, ../../../scss/_app_styles.scss */ +/* line 1669, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1604, ../../../scss/_app_styles.scss */ +/* line 1673, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24848,12 +24924,12 @@ p { border-top-right-radius: 5px; } -/* line 1630, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1633, ../../../scss/_app_styles.scss */ +/* line 1702, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24862,7 +24938,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1642, ../../../scss/_app_styles.scss */ +/* line 1711, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24876,7 +24952,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1660, ../../../scss/_app_styles.scss */ +/* line 1729, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24884,56 +24960,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1740, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1676, ../../../scss/_app_styles.scss */ +/* line 1745, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1682, ../../../scss/_app_styles.scss */ +/* line 1751, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1689, ../../../scss/_app_styles.scss */ +/* line 1758, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1693, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1696, ../../../scss/_app_styles.scss */ +/* line 1765, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1702, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1705, ../../../scss/_app_styles.scss */ +/* line 1774, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1711, ../../../scss/_app_styles.scss */ +/* line 1780, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1717, ../../../scss/_app_styles.scss */ +/* line 1786, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1724, ../../../scss/_app_styles.scss */ +/* line 1793, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24941,15 +25017,15 @@ p { font-size: small; height: 2rem; } -/* line 1731, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1734, ../../../scss/_app_styles.scss */ +/* line 1803, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1748, ../../../scss/_app_styles.scss */ +/* line 1817, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -24957,7 +25033,7 @@ p { height: 8em; overflow: hidden; } -/* line 1758, ../../../scss/_app_styles.scss */ +/* line 1827, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -24969,7 +25045,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1771, ../../../scss/_app_styles.scss */ +/* line 1840, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -24979,14 +25055,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1783, ../../../scss/_app_styles.scss */ +/* line 1852, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1792, ../../../scss/_app_styles.scss */ +/* line 1861, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25000,51 +25076,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1809, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1810, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1811, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1813, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1814, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1816, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1817, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1818, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1819, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1820, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1823, ../../../scss/_app_styles.scss */ +/* line 1892, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25057,59 +25133,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1836, ../../../scss/_app_styles.scss */ +/* line 1905, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1841, ../../../scss/_app_styles.scss */ +/* line 1910, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1845, ../../../scss/_app_styles.scss */ +/* line 1914, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1853, ../../../scss/_app_styles.scss */ +/* line 1922, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #cdcdcd transparent transparent; border-color: rgba(255, 255, 255, 0) #cdcdcd rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1857, ../../../scss/_app_styles.scss */ +/* line 1926, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1862, ../../../scss/_app_styles.scss */ +/* line 1931, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1866, ../../../scss/_app_styles.scss */ +/* line 1935, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1871, ../../../scss/_app_styles.scss */ +/* line 1940, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1875, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1947, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1954, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25120,7 +25196,7 @@ p { transform: rotate(30deg); } -/* line 1899, ../../../scss/_app_styles.scss */ +/* line 1968, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25128,19 +25204,17 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1907, ../../../scss/_app_styles.scss */ -.allow.draft { - background-size: 10%; - background-repeat: repeat; - background-image: url("/static/ndf/images/draft-watermark.png"); -} - -/* line 1915, ../../../scss/_app_styles.scss */ +/*.allow.draft{ + background-size: 10%; + background-repeat:repeat; + background-image:url("/static/ndf/images/draft-watermark.png"); +}*/ +/* line 1984, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1989, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25153,7 +25227,7 @@ p { text-align: center; } -/* line 1932, ../../../scss/_app_styles.scss */ +/* line 2001, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25165,12 +25239,12 @@ p { margin-left: 4px; } -/* line 1943, ../../../scss/_app_styles.scss */ +/* line 2012, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 1947, ../../../scss/_app_styles.scss */ +/* line 2016, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25180,14 +25254,14 @@ p { max-width: calc(70rem + 70px); } -/* line 1956, ../../../scss/_app_styles.scss */ +/* line 2025, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 1962, ../../../scss/_app_styles.scss */ +/* line 2031, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25198,7 +25272,7 @@ p { border: thin solid #D3D3D3; } -/* line 1972, ../../../scss/_app_styles.scss */ +/* line 2041, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25206,26 +25280,26 @@ p { transition: all 0.6s ease 0s; } -/* line 1979, ../../../scss/_app_styles.scss */ +/* line 2048, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 1985, ../../../scss/_app_styles.scss */ +/* line 2054, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 1989, ../../../scss/_app_styles.scss */ +/* line 2058, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 1996, ../../../scss/_app_styles.scss */ +/* line 2065, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25241,58 +25315,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2015, ../../../scss/_app_styles.scss */ +/* line 2084, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2021, ../../../scss/_app_styles.scss */ +/* line 2090, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2025, ../../../scss/_app_styles.scss */ +/* line 2094, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2031, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2034, ../../../scss/_app_styles.scss */ +/* line 2103, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2038, ../../../scss/_app_styles.scss */ +/* line 2107, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2043, ../../../scss/_app_styles.scss */ +/* line 2112, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2050, ../../../scss/_app_styles.scss */ +/* line 2119, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2054, ../../../scss/_app_styles.scss */ +/* line 2123, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2059, ../../../scss/_app_styles.scss */ +/* line 2128, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2065, ../../../scss/_app_styles.scss */ +/* line 2134, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25300,16 +25374,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2073, ../../../scss/_app_styles.scss */ +/* line 2142, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2078, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2081, ../../../scss/_app_styles.scss */ +/* line 2150, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25319,7 +25393,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2091, ../../../scss/_app_styles.scss */ +/* line 2160, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25328,12 +25402,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2099, ../../../scss/_app_styles.scss */ +/* line 2168, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2174, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25341,7 +25415,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2113, ../../../scss/_app_styles.scss */ + /* line 2182, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25349,7 +25423,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2121, ../../../scss/_app_styles.scss */ + /* line 2190, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25357,7 +25431,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2129, ../../../scss/_app_styles.scss */ + /* line 2198, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25365,20 +25439,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2137, ../../../scss/_app_styles.scss */ + /* line 2206, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2143, ../../../scss/_app_styles.scss */ +/* line 2212, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2149, ../../../scss/_app_styles.scss */ +/* line 2218, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25386,7 +25460,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2157, ../../../scss/_app_styles.scss */ +/* line 2226, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25400,12 +25474,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2171, ../../../scss/_app_styles.scss */ +/* line 2240, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2175, ../../../scss/_app_styles.scss */ +/* line 2244, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25415,11 +25489,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2184, ../../../scss/_app_styles.scss */ +/* line 2253, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2188, ../../../scss/_app_styles.scss */ +/* line 2257, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25428,17 +25502,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2195, ../../../scss/_app_styles.scss */ +/* line 2264, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2201, ../../../scss/_app_styles.scss */ +/* line 2270, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2206, ../../../scss/_app_styles.scss */ +/* line 2275, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25446,20 +25520,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2212, ../../../scss/_app_styles.scss */ +/* line 2281, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2214, ../../../scss/_app_styles.scss */ +/* line 2283, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2218, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2219, ../../../scss/_app_styles.scss */ +/* line 2288, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25467,11 +25541,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2225, ../../../scss/_app_styles.scss */ +/* line 2294, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2232, ../../../scss/_app_styles.scss */ +/* line 2301, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25482,30 +25556,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2311, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2249, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2252, ../../../scss/_app_styles.scss */ +/* line 2321, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2259, ../../../scss/_app_styles.scss */ +/* line 2328, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2264, ../../../scss/_app_styles.scss */ +/* line 2333, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2337, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25515,27 +25589,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2278, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2350, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2354, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2361, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2297, ../../../scss/_app_styles.scss */ +/* line 2366, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25547,7 +25621,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2308, ../../../scss/_app_styles.scss */ +/* line 2377, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25557,7 +25631,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2317, ../../../scss/_app_styles.scss */ +/* line 2386, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25565,25 +25639,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2325, ../../../scss/_app_styles.scss */ +/* line 2394, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2329, ../../../scss/_app_styles.scss */ +/* line 2398, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2342, ../../../scss/_app_styles.scss */ +/* line 2411, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2349, ../../../scss/_app_styles.scss */ +/* line 2418, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25592,69 +25666,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2357, ../../../scss/_app_styles.scss */ +/* line 2426, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2361, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2367, ../../../scss/_app_styles.scss */ +/* line 2436, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2374, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2377, ../../../scss/_app_styles.scss */ +/* line 2446, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2381, ../../../scss/_app_styles.scss */ +/* line 2450, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2394, ../../../scss/_app_styles.scss */ +/* line 2463, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2400, ../../../scss/_app_styles.scss */ +/* line 2469, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2404, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2407, ../../../scss/_app_styles.scss */ +/* line 2476, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2414, ../../../scss/_app_styles.scss */ +/* line 2483, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2421, ../../../scss/_app_styles.scss */ +/* line 2490, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2429, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25689,23 +25763,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2430, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2433, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2436, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2439, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2442, ../../../scss/_app_styles.scss */ +/* line 2511, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25714,45 +25788,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2450, ../../../scss/_app_styles.scss */ +/* line 2519, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2456, ../../../scss/_app_styles.scss */ +/* line 2525, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2464, ../../../scss/_app_styles.scss */ +/* line 2533, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2472, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2475, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2478, ../../../scss/_app_styles.scss */ +/* line 2547, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2483, ../../../scss/_app_styles.scss */ +/* line 2552, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25761,17 +25835,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2491, ../../../scss/_app_styles.scss */ +/* line 2560, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2501, ../../../scss/_app_styles.scss */ +/* line 2570, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2505, ../../../scss/_app_styles.scss */ +/* line 2574, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25779,11 +25853,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2512, ../../../scss/_app_styles.scss */ +/* line 2581, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2516, ../../../scss/_app_styles.scss */ +/* line 2585, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25793,7 +25867,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2526, ../../../scss/_app_styles.scss */ +/* line 2595, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25802,58 +25876,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2619, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2552, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2555, ../../../scss/_app_styles.scss */ +/* line 2624, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2560, ../../../scss/_app_styles.scss */ +/* line 2629, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2564, ../../../scss/_app_styles.scss */ +/* line 2633, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2571, ../../../scss/_app_styles.scss */ +/* line 2640, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2578, ../../../scss/_app_styles.scss */ +/* line 2647, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2582, ../../../scss/_app_styles.scss */ +/* line 2651, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2586, ../../../scss/_app_styles.scss */ +/* line 2655, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2624, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2696, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25864,7 +25938,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2707, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25874,7 +25948,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2646, ../../../scss/_app_styles.scss */ +/* line 2715, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25885,25 +25959,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2656, ../../../scss/_app_styles.scss */ +/* line 2725, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2662, ../../../scss/_app_styles.scss */ +/* line 2731, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2671, ../../../scss/_app_styles.scss */ +/* line 2740, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2676, ../../../scss/_app_styles.scss */ +/* line 2745, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25912,96 +25986,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2684, ../../../scss/_app_styles.scss */ +/* line 2753, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2693, ../../../scss/_app_styles.scss */ +/* line 2762, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2701, ../../../scss/_app_styles.scss */ +/* line 2770, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2707, ../../../scss/_app_styles.scss */ +/* line 2776, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2709, ../../../scss/_app_styles.scss */ +/* line 2778, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2782, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2719, ../../../scss/_app_styles.scss */ +/* line 2788, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2732, ../../../scss/_app_styles.scss */ +/* line 2801, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2737, ../../../scss/_app_styles.scss */ +/* line 2806, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2746, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2749, ../../../scss/_app_styles.scss */ +/* line 2818, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2755, ../../../scss/_app_styles.scss */ +/* line 2824, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2762, ../../../scss/_app_styles.scss */ +/* line 2831, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2766, ../../../scss/_app_styles.scss */ +/* line 2835, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2770, ../../../scss/_app_styles.scss */ +/* line 2839, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2775, ../../../scss/_app_styles.scss */ +/* line 2844, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26010,12 +26084,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2789, ../../../scss/_app_styles.scss */ +/* line 2858, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2793, ../../../scss/_app_styles.scss */ +/* line 2862, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26027,45 +26101,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2805, ../../../scss/_app_styles.scss */ +/* line 2874, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2811, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2814, ../../../scss/_app_styles.scss */ +/* line 2883, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2820, ../../../scss/_app_styles.scss */ +/* line 2889, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2830, ../../../scss/_app_styles.scss */ +/* line 2899, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2835, ../../../scss/_app_styles.scss */ +/* line 2904, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2840, ../../../scss/_app_styles.scss */ +/* line 2909, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2847, ../../../scss/_app_styles.scss */ +/* line 2916, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26073,42 +26147,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2857, ../../../scss/_app_styles.scss */ +/* line 2926, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2863, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2866, ../../../scss/_app_styles.scss */ +/* line 2935, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2871, ../../../scss/_app_styles.scss */ +/* line 2940, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2876, ../../../scss/_app_styles.scss */ +/* line 2945, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2886, ../../../scss/_app_styles.scss */ +/* line 2955, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2890, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2893, ../../../scss/_app_styles.scss */ +/* line 2962, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26118,12 +26192,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2971, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2906, ../../../scss/_app_styles.scss */ +/* line 2975, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26132,22 +26206,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2917, ../../../scss/_app_styles.scss */ +/* line 2986, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2923, ../../../scss/_app_styles.scss */ +/* line 2992, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2928, ../../../scss/_app_styles.scss */ +/* line 2997, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26155,53 +26229,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 2936, ../../../scss/_app_styles.scss */ +/* line 3005, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 2940, ../../../scss/_app_styles.scss */ +/* line 3009, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 2946, ../../../scss/_app_styles.scss */ +/* line 3015, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 3022, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 2955, ../../../scss/_app_styles.scss */ +/* line 3024, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 2964, ../../../scss/_app_styles.scss */ +/* line 3033, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 2970, ../../../scss/_app_styles.scss */ +/* line 3039, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 2975, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 2978, ../../../scss/_app_styles.scss */ +/* line 3047, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 2982, ../../../scss/_app_styles.scss */ +/* line 3051, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2987, ../../../scss/_app_styles.scss */ +/* line 3056, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26209,114 +26283,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 2994, ../../../scss/_app_styles.scss */ +/* line 3063, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3001, ../../../scss/_app_styles.scss */ +/* line 3070, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3005, ../../../scss/_app_styles.scss */ +/* line 3074, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3012, ../../../scss/_app_styles.scss */ +/* line 3081, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3017, ../../../scss/_app_styles.scss */ +/* line 3086, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3023, ../../../scss/_app_styles.scss */ +/* line 3092, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3028, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3100, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3106, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3114, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3052, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3055, ../../../scss/_app_styles.scss */ +/* line 3124, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3060, ../../../scss/_app_styles.scss */ +/* line 3129, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3066, ../../../scss/_app_styles.scss */ +/* line 3135, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3070, ../../../scss/_app_styles.scss */ +/* line 3139, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3078, ../../../scss/_app_styles.scss */ +/* line 3147, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3085, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3094, ../../../scss/_app_styles.scss */ +/* line 3163, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3099, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3102, ../../../scss/_app_styles.scss */ +/* line 3171, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26324,102 +26398,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3111, ../../../scss/_app_styles.scss */ +/* line 3180, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3116, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3121, ../../../scss/_app_styles.scss */ +/* line 3190, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3128, ../../../scss/_app_styles.scss */ +/* line 3197, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3136, ../../../scss/_app_styles.scss */ +/* line 3205, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3142, ../../../scss/_app_styles.scss */ +/* line 3211, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3146, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3149, ../../../scss/_app_styles.scss */ +/* line 3218, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3154, ../../../scss/_app_styles.scss */ +/* line 3223, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3159, ../../../scss/_app_styles.scss */ +/* line 3228, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3165, ../../../scss/_app_styles.scss */ +/* line 3234, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3175, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3247, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3182, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3185, ../../../scss/_app_styles.scss */ +/* line 3254, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3189, ../../../scss/_app_styles.scss */ +/* line 3258, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3269, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3208, ../../../scss/_app_styles.scss */ +/* line 3277, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26427,33 +26501,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3215, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3219, ../../../scss/_app_styles.scss */ +/* line 3288, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3224, ../../../scss/_app_styles.scss */ +/* line 3293, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3230, ../../../scss/_app_styles.scss */ +/* line 3299, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3236, ../../../scss/_app_styles.scss */ +/* line 3305, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3240, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3243, ../../../scss/_app_styles.scss */ +/* line 3312, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26463,73 +26537,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3321, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3257, ../../../scss/_app_styles.scss */ +/* line 3326, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3264, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3336, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3274, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3281, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3284, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3287, ../../../scss/_app_styles.scss */ +/* line 3356, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3360, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3296, ../../../scss/_app_styles.scss */ +/* line 3365, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3300, ../../../scss/_app_styles.scss */ +/* line 3369, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3313, ../../../scss/_app_styles.scss */ +/* line 3382, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3318, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26537,11 +26611,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3329, ../../../scss/_app_styles.scss */ +/* line 3398, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3333, ../../../scss/_app_styles.scss */ +/* line 3402, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26552,17 +26626,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3343, ../../../scss/_app_styles.scss */ +/* line 3412, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3417, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3353, ../../../scss/_app_styles.scss */ +/* line 3422, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26571,11 +26645,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3361, ../../../scss/_app_styles.scss */ +/* line 3430, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3366, ../../../scss/_app_styles.scss */ +/* line 3435, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26586,24 +26660,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3449, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3384, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3387, ../../../scss/_app_styles.scss */ +/* line 3456, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3395, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26667,49 +26741,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3459, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3531, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3464, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3468, ../../../scss/_app_styles.scss */ +/* line 3537, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3473, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3477, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3481, ../../../scss/_app_styles.scss */ +/* line 3550, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3488, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3491, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3497, ../../../scss/_app_styles.scss */ +/* line 3566, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26717,7 +26791,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3506, ../../../scss/_app_styles.scss */ +/* line 3575, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26729,32 +26803,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3517, ../../../scss/_app_styles.scss */ +/* line 3586, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3521, ../../../scss/_app_styles.scss */ +/* line 3590, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3525, ../../../scss/_app_styles.scss */ +/* line 3594, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3533, ../../../scss/_app_styles.scss */ +/* line 3602, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3538, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3542, ../../../scss/_app_styles.scss */ +/* line 3611, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26775,31 +26849,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3546, ../../../scss/_app_styles.scss */ +/* line 3615, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3553, ../../../scss/_app_styles.scss */ +/* line 3622, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3560, ../../../scss/_app_styles.scss */ +/* line 3629, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3565, ../../../scss/_app_styles.scss */ +/* line 3634, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3571, ../../../scss/_app_styles.scss */ +/* line 3640, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26809,13 +26883,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3582, ../../../scss/_app_styles.scss */ +/* line 3651, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3587, ../../../scss/_app_styles.scss */ +/* line 3656, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26824,17 +26898,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3595, ../../../scss/_app_styles.scss */ +/* line 3664, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3599, ../../../scss/_app_styles.scss */ +/* line 3668, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3607, ../../../scss/_app_styles.scss */ +/* line 3676, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26842,20 +26916,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3637, ../../../scss/_app_styles.scss */ +/* line 3706, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3641, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3644, ../../../scss/_app_styles.scss */ +/* line 3713, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3718, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26863,71 +26937,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3657, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3661, ../../../scss/_app_styles.scss */ +/* line 3730, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3735, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3672, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3675, ../../../scss/_app_styles.scss */ +/* line 3744, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3681, ../../../scss/_app_styles.scss */ +/* line 3750, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3685, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3692, ../../../scss/_app_styles.scss */ +/* line 3761, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3694, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3698, ../../../scss/_app_styles.scss */ +/* line 3767, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3702, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3705, ../../../scss/_app_styles.scss */ +/* line 3774, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3712, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3715, ../../../scss/_app_styles.scss */ +/* line 3784, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26937,17 +27011,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3726, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3729, ../../../scss/_app_styles.scss */ +/* line 3798, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3736, ../../../scss/_app_styles.scss */ +/* line 3805, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26956,58 +27030,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3754, ../../../scss/_app_styles.scss */ +/* line 3823, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3828, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3763, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3766, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3773, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3776, ../../../scss/_app_styles.scss */ +/* line 3845, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3786, ../../../scss/_app_styles.scss */ +/* line 3855, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3792, ../../../scss/_app_styles.scss */ +/* line 3861, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3865, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3800, ../../../scss/_app_styles.scss */ +/* line 3869, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3804, ../../../scss/_app_styles.scss */ +/* line 3873, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27015,27 +27089,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3813, ../../../scss/_app_styles.scss */ +/* line 3882, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3817, ../../../scss/_app_styles.scss */ +/* line 3886, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3825, ../../../scss/_app_styles.scss */ +/* line 3894, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3899, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27043,11 +27117,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3838, ../../../scss/_app_styles.scss */ +/* line 3907, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27055,18 +27129,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3850, ../../../scss/_app_styles.scss */ +/* line 3919, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3854, ../../../scss/_app_styles.scss */ +/* line 3923, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3862, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27074,12 +27148,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3870, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3876, ../../../scss/_app_styles.scss */ +/* line 3945, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27088,21 +27162,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3885, ../../../scss/_app_styles.scss */ +/* line 3954, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3890, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3895, ../../../scss/_app_styles.scss */ +/* line 3964, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27113,24 +27187,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3974, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3909, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3912, ../../../scss/_app_styles.scss */ +/* line 3981, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3986, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3990, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27141,7 +27215,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3931, ../../../scss/_app_styles.scss */ +/* line 4000, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27149,15 +27223,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3939, ../../../scss/_app_styles.scss */ +/* line 4008, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3941, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3944, ../../../scss/_app_styles.scss */ +/* line 4013, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27167,27 +27241,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3953, ../../../scss/_app_styles.scss */ +/* line 4022, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 4028, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3966, ../../../scss/_app_styles.scss */ +/* line 4035, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3970, ../../../scss/_app_styles.scss */ +/* line 4039, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3975, ../../../scss/_app_styles.scss */ +/* line 4044, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27208,28 +27282,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3996, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 3999, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4003, ../../../scss/_app_styles.scss */ +/* line 4072, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4009, ../../../scss/_app_styles.scss */ +/* line 4078, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4014, ../../../scss/_app_styles.scss */ +/* line 4083, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27237,12 +27311,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4023, ../../../scss/_app_styles.scss */ +/* line 4092, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27253,14 +27327,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4102, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4038, ../../../scss/_app_styles.scss */ +/* line 4107, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27272,48 +27346,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4048, ../../../scss/_app_styles.scss */ +/* line 4117, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4052, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4055, ../../../scss/_app_styles.scss */ +/* line 4124, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4059, ../../../scss/_app_styles.scss */ +/* line 4128, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4132, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4068, ../../../scss/_app_styles.scss */ +/* line 4137, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4074, ../../../scss/_app_styles.scss */ +/* line 4143, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4080, ../../../scss/_app_styles.scss */ +/* line 4149, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27321,7 +27395,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4087, ../../../scss/_app_styles.scss */ + /* line 4156, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27329,7 +27403,7 @@ course-title { background-color: #999999; } - /* line 4093, ../../../scss/_app_styles.scss */ + /* line 4162, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27339,7 +27413,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4103, ../../../scss/_app_styles.scss */ + /* line 4172, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27347,7 +27421,7 @@ course-title { background-color: #999999; } - /* line 4109, ../../../scss/_app_styles.scss */ + /* line 4178, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27356,14 +27430,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4116, ../../../scss/_app_styles.scss */ +/* line 4185, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4123, ../../../scss/_app_styles.scss */ +/* line 4192, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27380,7 +27454,7 @@ course-title { font-size: 1.8em; } -/* line 4139, ../../../scss/_app_styles.scss */ +/* line 4208, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27390,7 +27464,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4148, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27400,7 +27474,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4157, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27410,7 +27484,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4167, ../../../scss/_app_styles.scss */ +/* line 4236, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27421,12 +27495,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4252, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4187, ../../../scss/_app_styles.scss */ +/* line 4256, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27435,12 +27509,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4195, ../../../scss/_app_styles.scss */ +/* line 4264, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4200, ../../../scss/_app_styles.scss */ +/* line 4269, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27455,31 +27529,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4214, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4217, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4220, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4223, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4226, ../../../scss/_app_styles.scss */ +/* line 4295, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4230, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4235, ../../../scss/_app_styles.scss */ +/* line 4304, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27488,46 +27562,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4243, ../../../scss/_app_styles.scss */ +/* line 4312, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4319, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4255, ../../../scss/_app_styles.scss */ +/* line 4324, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4259, ../../../scss/_app_styles.scss */ +/* line 4328, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4263, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4266, ../../../scss/_app_styles.scss */ +/* line 4335, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4270, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4274, ../../../scss/_app_styles.scss */ +/* line 4343, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4282, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27538,19 +27612,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4362, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4299, ../../../scss/_app_styles.scss */ +/* line 4368, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4305, ../../../scss/_app_styles.scss */ +/* line 4374, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27562,7 +27636,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4316, ../../../scss/_app_styles.scss */ +/* line 4385, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27571,7 +27645,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4325, ../../../scss/_app_styles.scss */ +/* line 4394, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27585,51 +27659,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4339, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4342, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4345, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4348, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4351, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4354, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4357, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4363, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4369, ../../../scss/_app_styles.scss */ +/* line 4438, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4373, ../../../scss/_app_styles.scss */ +/* line 4442, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27640,7 +27714,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4452, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27648,54 +27722,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4391, ../../../scss/_app_styles.scss */ +/* line 4460, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4396, ../../../scss/_app_styles.scss */ +/* line 4465, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4400, ../../../scss/_app_styles.scss */ +/* line 4469, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4404, ../../../scss/_app_styles.scss */ +/* line 4473, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4408, ../../../scss/_app_styles.scss */ +/* line 4477, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4481, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4416, ../../../scss/_app_styles.scss */ +/* line 4485, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4426, ../../../scss/_app_styles.scss */ +/* line 4495, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4499, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4434, ../../../scss/_app_styles.scss */ +/* line 4503, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27706,17 +27780,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4446, ../../../scss/_app_styles.scss */ +/* line 4515, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4519, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4455, ../../../scss/_app_styles.scss */ +/* line 4524, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27728,24 +27802,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4536, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4471, ../../../scss/_app_styles.scss */ + /* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27753,12 +27827,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4479, ../../../scss/_app_styles.scss */ + /* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4490, ../../../scss/_app_styles.scss */ +/* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27769,12 +27843,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4490, ../../../scss/_app_styles.scss */ + /* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4502, ../../../scss/_app_styles.scss */ +/* line 4571, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27785,7 +27859,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4512, ../../../scss/_app_styles.scss */ +/* line 4581, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27793,28 +27867,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4520, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4523, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4526, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4533, ../../../scss/_app_styles.scss */ +/* line 4602, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4539, ../../../scss/_app_styles.scss */ +/* line 4608, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27825,7 +27899,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4550, ../../../scss/_app_styles.scss */ +/* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27833,18 +27907,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4562, ../../../scss/_app_styles.scss */ +/* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27852,40 +27926,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4562, ../../../scss/_app_styles.scss */ + /* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4572, ../../../scss/_app_styles.scss */ +/* line 4641, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4576, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4648, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4585, ../../../scss/_app_styles.scss */ +/* line 4654, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4589, ../../../scss/_app_styles.scss */ +/* line 4658, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4595, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27898,25 +27972,25 @@ course-title { border: 1px solid #eee; } -/* line 4607, ../../../scss/_app_styles.scss */ +/* line 4676, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #6153ae !important; } -/* line 4611, ../../../scss/_app_styles.scss */ +/* line 4680, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4615, ../../../scss/_app_styles.scss */ +/* line 4684, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4621, ../../../scss/_app_styles.scss */ +/* line 4690, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27925,7 +27999,7 @@ h5 { margin-left: 5px; } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4698, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27934,12 +28008,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4636, ../../../scss/_app_styles.scss */ +/* line 4705, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4640, ../../../scss/_app_styles.scss */ +/* line 4709, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27948,12 +28022,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4647, ../../../scss/_app_styles.scss */ +/* line 4716, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4653, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27965,19 +28039,27 @@ h5 { color: #6153AE; } -/* line 4664, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; margin: 5px 5px 8px 0px; border: 1px solid #6153AE; - background: #fff; - font-size: 23px; + background: #f1f1f1; + font-size: 17px; + margin: 7px 19px; + display: inline-block; + color: #6153AE; +} +/* line 4745, ../../../scss/_app_styles.scss */ +.add-note-btn:hover { + cursor: pointer; color: #6153AE; + background-color: #ffffff; } -/* line 4675, ../../../scss/_app_styles.scss */ +/* line 4753, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -27989,312 +28071,10308 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4686, ../../../scss/_app_styles.scss */ +/* line 4764, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } -/* -* CLIx Platform Stylesheet -*/ -/* line 6, ../../../scss/_clix_styles.scss */ -.workspace { - min-height: 100%; - /*&:after{ - //Hack for setting div height to the height of the browser window - content:""; - display:block; - height:130px; // allows the content of the footer to be visible at the bottom. This should match the margin-bottom of the div -}*/ +/*Blue color variable*/ +/*Orange color variables*/ +/* module detail settings drop */ +/* line 4795, ../../../scss/_app_styles.scss */ +.explore-settings-drop { + margin-left: 59%; + display: inline-block; } -/* line 10, ../../../scss/_clix_styles.scss */ -.workspace .app.button-bar { - height: 45px; +/* line 4798, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; } - -/* line 22, ../../../scss/_clix_styles.scss */ -body > footer { - background-color: #5d055f; +/* line 4809, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; } - -/* line 26, ../../../scss/_clix_styles.scss */ -#top-headers { - margin-bottom: 0em; +/* line 4815, ../../../scss/_app_styles.scss */ +.explore-settings-drop a { + font-size: 16px; } -/* line 30, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar { - background-color: #fff !important; - margin: 0px auto; - box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); - /*.top-bar-section li a:not(.button):hover, .top-bar-section li:not(.has-form):hover { - background-color: scale-color($theme-color-invert, $lightness: 10%) !important; - color: #ececec; - // background-color: #E1E1E1; - }*/ +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; } -/* line 37, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar.expanded .title-area { - background: #FAFAFA; +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop { + margin-left: 59%; + display: inline-block; } -/* line 42, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .title-area { - height: auto; +/* line 4821, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; } -/* line 57, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section #login-button-medium { - text-decoration: underline; - color: blue !important; +/* line 4832, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; } -/* line 62, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section .app-menus li a { - font-weight: 600; +/* line 4838, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop a { + font-size: 16px; } -/* line 66, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section .has-dropdown > a:after { - border-color: #000000 transparent transparent !important; +/* line 4841, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; } -/* line 70, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section ul.dropdown { - background: #fff !important; +/* line 4849, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { + color: #74b3dc; } -/* line 72, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section ul.dropdown li input[type=submit] { - height: 3em; +/* line 4853, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; } -@media only screen and (max-width: 40em) { - /* line 78, ../../../scss/_clix_styles.scss */ - #top-headers #first-header.top-bar .top-bar-section #login-button-medium { - display: none; - } - /* line 81, ../../../scss/_clix_styles.scss */ - #top-headers #first-header.top-bar .top-bar-section #login-button-medium:hover { - background: inherit; - } +/* line 4866, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; } -@media only screen and (min-width: 40.063em) { - /* line 89, ../../../scss/_clix_styles.scss */ - #top-headers #first-header.top-bar .top-bar-section ul li:hover { - background: inherit; - } - /* line 94, ../../../scss/_clix_styles.scss */ - #top-headers #first-header.top-bar .top-bar-section #login-button-small { - display: none; - } +/* line 4870, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; } -/* line 100, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { - color: #ececec !important; + +/* line 4877, ../../../scss/_app_styles.scss */ +.edit_button { + color: #717171; } -/* line 102, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { - background-color: #fff !important; - color: #333 !important; - font-weight: 600; +/* line 4879, ../../../scss/_app_styles.scss */ +.edit_button:hover { + border-left: 2px solid #ce7869; } -/* line 108, ../../../scss/_clix_styles.scss */ -#top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:hover { - background: #6153ae; - color: white !important; + +/* line 4885, ../../../scss/_app_styles.scss */ +.left-btn { + margin-top: 0px; + margin-right: 0px; + text-transform: capitalize; + width: 100%; + background-color: #ffffff; + display: block; + padding: 0.5rem; + color: #555555; + font-size: 11px; } -/* line 123, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header { - opacity: 0.9; - background-color: #E1E1E1 !important; +/* line 4895, ../../../scss/_app_styles.scss */ +.left-btn:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; } -/* line 128, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header:hover { - opacity: 1; - transition: 0.1s all; - box-shadow: 0px 2px 3px #E1E1E1 !important; + +/* line 4904, ../../../scss/_app_styles.scss */ +.chnge-img:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; } -/* line 136, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #group-apps .back-btn.fi-play:before { - transform: rotate(180deg); + +/* line 4915, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; } -/* line 141, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar { - background-color: #fafafa; - height: 52px; +/* line 4923, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 145, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar span { - font-size: 1em !important; +/* line 4936, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; } -/* line 150, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar img { - height: 45px; - width: 50px; +/* line 4941, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; } -/* line 161, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { - background-color: #fafafa !important; - color: #000; - border-bottom: solid 1px gray !important; +/* line 4949, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; } -/* line 167, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { - background-color: #2d2752 !important; +/* line 4953, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; } -/* line 171, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { - background-color: #352d61; +/* line 4959, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; } -/* line 176, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { - background-color: #fafafa; - color: gray; +/* line 4970, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; } -/* line 183, ../../../scss/_clix_styles.scss */ -#top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { - background-color: #2d2752; + +/* line 4979, ../../../scss/_app_styles.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 4984, ../../../scss/_app_styles.scss */ +.lms_secondary_header { + width: 100%; + position: relative; color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 191, ../../../scss/_clix_styles.scss */ -#top-headers ul.dropdown { - box-shadow: 0px 2px 5px black; - opacity: 1; +/* line 4990, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; } -/* line 196, ../../../scss/_clix_styles.scss */ -#top-headers #search_text { - border-bottom: solid thin #E1E1E1; - background-color: #fafafa; - border-top: none; - border-left: none; - border-right: none; - padding: none !important; - /*color: #fff !important;*/ - height: inherit; - box-shadow: none; - top: 10px; +/* line 4993, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; } -/* line 208, ../../../scss/_clix_styles.scss */ -#top-headers #search_text:focus { - border-bottom-color: #2b2c2d; - transition: 1s ease-out; +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5007, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5010, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } } -/* line 214, ../../../scss/_clix_styles.scss */ -#top-headers #search-submit { - background-color: #fafafa; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; + +/* line 5030, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; } -/* line 224, ../../../scss/_clix_styles.scss */ -#top-headers #search-submit:hover { - opacity: 1; - color: white; - background-color: gray; - transition: 0.8s ease-out; +/* line 5033, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; + margin-left: -35px; } -/* line 231, ../../../scss/_clix_styles.scss */ -#top-headers ul.title-area a { - color: #333333 !important; +@media only screen and (max-width: 40em) { + /* line 5033, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + margin-left: 0px; + } } -/* line 233, ../../../scss/_clix_styles.scss */ -#top-headers ul.title-area a .user-heading { - font-weight: bolder; - font-size: 23px; - color: #BFBFBF !important; - line-height: 1.8em; +/* line 5040, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #164a7b; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5050, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; } -/* line 277, ../../../scss/_clix_styles.scss */ -.login-page { - position: relative; - /*background: url(/static/ndf/images/login-background.png);*/ - background-size: 100% 100%; - min-height: 100vh; +@media only screen and (max-width: 40em) { + /* line 5059, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; + } + /* line 5062, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + /* + display: inline-block;*/ + } + /* line 5065, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a { + list-style-type: none; + /*display: inline-block;*/ + padding: 1px 2px 3px; + color: #164a7b; + cursor: pointer; + font-size: 16px; + letter-spacing: 0.3px; + border-bottom: 2px solid transparent; + } + /* line 5076, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; + } } -/* line 283, ../../../scss/_clix_styles.scss */ -.login-page .login-page-opacity { - height: 100%; - width: 100%; - position: absolute; - opacity: 0.6; - background: -webkit-gradient(linear, left top, right top, from(#E9A900), to(#B0108D)); - background: -webkit-linear-gradient(left, #E9A900, #B0108D); - background: -moz-linear-gradient(left, #E9A900, #B0108D); - background: -ms-linear-gradient(left, #E9A900, #B0108D); - background: -o-linear-gradient(left, #E9A900, #B0108D); +/* line 5089, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; } -/* line 295, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form { - background-color: #fff; - border-radius: 10px; - padding: 10px 40px; - opacity: 0.95; - max-width: 90%; - width: 350px; - margin: 100px auto; - box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); +/* line 5093, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; } -/* line 306, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-page-header img { - height: 80px; - width: 280px; +/* line 5096, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; } -/* line 310, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-page-header span { - display: block; - text-transform: uppercase; - color: #d5d5d5; +/* line 5107, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5115, ../../../scss/_app_styles.scss */ + ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; + } + /* line 5119, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li { + /* display: inline-block;*/ + background-color: #164a7b; + } + /* line 5122, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a { + list-style-type: none; + /*margin-right:-2px;*/ + background-color: #164a7b; + padding: 1px 1px 1px; + cursor: pointer; + font-size: 16px; + /* display: inline-block;*/ + letter-spacing: 0.3px; + border-bottom: 3px solid transparent; + color: #ffffff !important; + } + /* line 5133, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* Secondary Top Bar */ +/* line 5145, ../../../scss/_app_styles.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 5154, ../../../scss/_app_styles.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 5158, ../../../scss/_app_styles.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; font-weight: 600; - letter-spacing: 1px; } -/* line 318, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha { - margin: 10px 0; + +/* line 5168, ../../../scss/_app_styles.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; } -/* line 321, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha > div { +/* line 5180, ../../../scss/_app_styles.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 5187, ../../../scss/_app_styles.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; + margin-top: -8px; +} + +/* line 5198, ../../../scss/_app_styles.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 5203, ../../../scss/_app_styles.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 5206, ../../../scss/_app_styles.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 5216, ../../../scss/_app_styles.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; display: inline-block; - vertical-align: top; + vertical-align: bottom; } -/* line 325, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha .fi-refresh { - color: #A0148E; - font-size: 25px; +/* line 5224, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; } -/* line 330, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha #captcha-content th { +/* line 5226, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 5237, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 5245, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 333, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha #captcha-content td > input { - display: inline-block; +/* line 5251, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; } -/* line 336, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-captcha #captcha-content td > input#id_captcha_1 { - width: 130px; + +@media screen and (min-width: 40.063em) { + /* line 5262, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 5264, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 5271, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 5278, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5284, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5292, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 5302, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 5311, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 5318, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/** + * Sass styles related to unit cards + */ +/* line 5346, ../../../scss/_app_styles.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; + height: 210px; } -/* line 343, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-button .button { - font-size: 15px; - background-color: #B1B1B1; - font-weight: 600; - border-bottom: 3.5px solid #DADADA; +/* line 5360, ../../../scss/_app_styles.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 5371, ../../../scss/_app_styles.scss */ +.unit_card .unit_header { + display: table; +} +/* line 5373, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; border-radius: 5px; - padding: 9px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; } -/* line 351, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .login-button .button:hover { - background-color: #CC1AB5; - border-color: #881378; +/* line 5381, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 17px; + font-weight: 500; + letter-spacing: 0.5px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + /* white-space: nowrap;*/ + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; } -/* line 358, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .forgot-password label { - font-size: 10px; +/* line 5395, ../../../scss/_app_styles.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 5411, ../../../scss/_app_styles.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 5417, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions { + padding: 5px 0px; +} +/* line 5422, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol { + background: #a2238d; + height: 24px; text-align: center; - text-decoration: underline; + color: #ffffff; + font-size: 18px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 90px !important; + margin-top: 8px !important; + letter-spacing: 0.4px; } -/* line 365, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .register-user label { +/* line 5434, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5439, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics { + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom: 2px solid #a2238d; +} +/* line 5447, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics-points { + background: #ffffff; + color: #a2238d; + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight: bold; + cursor: default; +} +/* line 5458, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + margin-left: -20px; +} +/* line 5467, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/* unit cards labels */ +/* line 5477, ../../../scss/_app_styles.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; font-size: 10px; - margin: 10px 0px 0px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; } -/* line 369, ../../../scss/_clix_styles.scss */ -.login-page .login-page-form .register-user span { - color: #A0148E; + +/* line 5493, ../../../scss/_app_styles.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5510, ../../../scss/_app_styles.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5527, ../../../scss/_app_styles.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5545, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5562, ../../../scss/_app_styles.scss */ +.icon-widget { + font-size: 20px; +} +@media only screen and (max-width: 320px) { + /* line 5562, ../../../scss/_app_styles.scss */ + .icon-widget { + font-size: 12px; + } +} + +/* module detail css */ +/* line 5574, ../../../scss/_app_styles.scss */ +.thumbnail_style { + margin-left: -30px; +} + +/* line 5578, ../../../scss/_app_styles.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 5584, ../../../scss/_app_styles.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + padding-left: 10px; + height: auto; + min-height: 143px; +} +/* line 5590, ../../../scss/_app_styles.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 5600, ../../../scss/_app_styles.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 5605, ../../../scss/_app_styles.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 5608, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 5625, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* Creating and editing course Structure */ +/* line 5642, ../../../scss/_app_styles.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 5651, ../../../scss/_app_styles.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 5654, ../../../scss/_app_styles.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 5661, ../../../scss/_app_styles.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 5668, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 5671, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 5674, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 5682, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 5686, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 5688, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 5698, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 5703, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 5709, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 5716, ../../../scss/_app_styles.scss */ +.max-width { + max-width: 100%; +} + +/* line 5722, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 5731, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 5744, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 5753, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 5758, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background-color: #ffffff; +} +/* line 5763, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 5769, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 5773, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 5786, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* Unit_Structure styles */ +/* line 5804, ../../../scss/_app_styles.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 5812, ../../../scss/_app_styles.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 5816, ../../../scss/_app_styles.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 5822, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 5828, ../../../scss/_app_styles.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 5833, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 5842, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5846, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 5851, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 5860, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5867, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 5876, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 5881, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 5884, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 5894, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 5900, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 5908, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 5910, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5917, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5926, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 5935, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 5945, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 5951, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 5954, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 5963, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 5968, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 5972, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 5974, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 5977, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 5983, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 5998, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 6006, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 6012, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 6021, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 6026, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 6033, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6038, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6043, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 6045, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 6049, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 6060, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 6065, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 6071, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 6077, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 6084, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 6091, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6102, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 6119, ../../../scss/_app_styles.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* lesspn listing LMS */ +/* line 6135, ../../../scss/_app_styles.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 6143, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 6146, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 45px; +} +/* line 6148, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 6155, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name { + padding-left: 20px; + /* @media screen and (max-width: 480px) { + margin: 25px 10px; + height: 55px; + + >div { + .jqtree-title { + color: #3c5264; + font-size: 16px; + font-weight: 500; + padding-bottom: 1px; + } + } + + }*/ +} +/* line 6157, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 6162, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + padding-bottom: 2px; +} +/* line 6187, ../../../scss/_app_styles.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 6193, ../../../scss/_app_styles.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 6200, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 6203, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check-circle-o { + color: green; +} + +/* line 6206, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 6209, ../../../scss/_app_styles.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* activity player header */ +/* + Styling for the Secondary header 2 +*/ +/* line 6228, ../../../scss/_app_styles.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 6231, ../../../scss/_app_styles.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6239, ../../../scss/_app_styles.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 6248, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6257, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title a { + color: #ffc14f; +} +@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 938px); + } +} +@media only screen and (min-device-width: 2131px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 970px); + } +} +@media only screen and (max-device-width: 1024px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 753px); + } +} +/* line 6334, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon { + font-size: 16px; + line-height: 45px; + color: #ffc14f; +} +/* line 6340, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 6346, ../../../scss/_app_styles.scss */ +.activity_player_header .header_text_sm_block { + padding: 0px 10px; +} +@media screen and (min-width: 1025px) { + /* line 6346, ../../../scss/_app_styles.scss */ + .activity_player_header .header_text_sm_block { + padding: 0px 15px; + } +} +@media screen and (min-width: 1025px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + float: right; + margin-right: 70px; + background-color: rgba(107, 0, 84, 0.97); + } +} +@media screen and (max-width: 1024px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + background-color: rgba(107, 0, 84, 0.97); + } +} +/* line 6366, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6372, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6376, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block a { + color: #ffc14f; +} +/* line 6382, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 9px; +} +@media screen and (min-width: 1025px) { + /* line 6382, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 15px; + } +} +/* line 6390, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 7px; +} +@media screen and (min-width: 1025px) { + /* line 6390, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 15px; + } +} +/* line 6399, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 6402, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button i { + color: #71318b; +} +/* line 6408, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 6412, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 6418, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .pagination:not(i) { + color: #a983b9; +} + +/* line 6426, ../../../scss/_app_styles.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6433, ../../../scss/_app_styles.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6437, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6443, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6449, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6454, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6463, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6467, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6472, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6481, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6488, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6497, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6502, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6505, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6515, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6521, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6529, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6531, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6538, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6547, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6556, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6566, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6571, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6574, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6583, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6588, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6592, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6594, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6597, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6603, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 6621, ../../../scss/_app_styles.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + min-width: 910px; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 6627, ../../../scss/_app_styles.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 6632, ../../../scss/_app_styles.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 6638, ../../../scss/_app_styles.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 6644, ../../../scss/_app_styles.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 6653, ../../../scss/_app_styles.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 6657, ../../../scss/_app_styles.scss */ +.activity-title > li > a { + color: black; +} + +/* line 6666, ../../../scss/_app_styles.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* Rating css */ +/* line 6674, ../../../scss/_app_styles.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 6676, ../../../scss/_app_styles.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 6684, ../../../scss/_app_styles.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 6686, ../../../scss/_app_styles.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 6692, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 6694, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 6706, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 6713, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 6724, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 6731, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 6739, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 6744, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/* line 6754, ../../../scss/_app_styles.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 6758, ../../../scss/_app_styles.scss */ +.input_links { + margin-left: 10px; +} +/* line 6760, ../../../scss/_app_styles.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 6766, ../../../scss/_app_styles.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 6774, ../../../scss/_app_styles.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 6783, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 6787, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 6793, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 6801, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 6807, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 6816, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 6821, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 6823, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 6826, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 6836, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 6840, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 6843, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 6848, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 6852, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 6863, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 6871, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 6873, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 6876, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 6885, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 6891, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/* line 6900, ../../../scss/_app_styles.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* The asset tile */ +/* line 6910, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 6919, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 6932, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 6941, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 6946, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 6951, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 6957, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 6961, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 6974, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 6989, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7000, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7006, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 7021, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 7025, ../../../scss/_app_styles.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 7034, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7041, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 7047, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 7049, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7056, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 7060, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 7066, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7077, ../../../scss/_app_styles.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 280px; + border: 1px solid #164A7B; +} +/* line 7086, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7093, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 7098, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 7102, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 7112, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 7119, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 7128, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 7135, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 7142, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 7150, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7166, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 7173, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7184, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7195, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7206, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7217, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7233, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 7240, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7251, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7262, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7273, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7284, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 7286, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7294, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 7300, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7311, ../../../scss/_app_styles.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 7321, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 7324, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 7329, ../../../scss/_app_styles.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 7340, ../../../scss/_app_styles.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 7350, ../../../scss/_app_styles.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 7353, ../../../scss/_app_styles.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 7357, ../../../scss/_app_styles.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 7363, ../../../scss/_app_styles.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 7365, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 7374, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7388, ../../../scss/_app_styles.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 750px; + min-height: 445px; + margin-left: 0px; +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + width: 390px; + } +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + min-height: 20px; + } +} + +/* line 7402, ../../../scss/_app_styles.scss */ +.widget_video { + height: 360px; + width: 480px; +} +@media only screen and (max-width: 350px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 290px; + height: 230px; + } +} +@media screen and (min-width: 351px) and (max-width: 850px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 340px; + height: 280px; + } +} + +/* Asset detail */ +/* line 7418, ../../../scss/_app_styles.scss */ +.overlay-head { + height: 60px; + margin-bottom: 20px; +} + +/* line 7424, ../../../scss/_app_styles.scss */ +.listing-row { + margin-top: 10px !important; + background-color: #ffffff; +} + +/* line 7429, ../../../scss/_app_styles.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 7441, ../../../scss/_app_styles.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7448, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +@media screen and (max-width: 325px) { + /* line 7448, ../../../scss/_app_styles.scss */ + .orange-button-template { + font-size: 10px; + } +} +/* line 7462, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7467, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7470, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7473, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7484, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7491, ../../../scss/_app_styles.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 7502, ../../../scss/_app_styles.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* asset description */ +/* line 7511, ../../../scss/_app_styles.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 7518, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7522, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7540, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7556, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7561, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7571, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7578, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7593, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} + +/* line 7604, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 7611, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 7625, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 7630, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 7638, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 7643, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 7648, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 7653, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 7661, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 7665, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 7674, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 7679, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 7685, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 7691, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; +} + +/* line 7698, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7705, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7708, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} + +/* line 7716, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 7735, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 7744, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 7753, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7776, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7781, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 43%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + color: #fff; +} +/* line 7790, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #719dc7; + border: 1px solid #CCC; + border-bottom: 0px; + color: #fff; +} + +/* line 7803, ../../../scss/_app_styles.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 7811, ../../../scss/_app_styles.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; +} +/* line 7822, ../../../scss/_app_styles.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7828, ../../../scss/_app_styles.scss */ +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7835, ../../../scss/_app_styles.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7844, ../../../scss/_app_styles.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 7850, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7859, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 7863, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7871, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 7882, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7890, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 7894, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7904, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 7909, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 7917, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 7920, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 7929, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 7934, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 7946, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 7963, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: 2.7px; +} + +/* line 7968, ../../../scss/_app_styles.scss */ +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; +} +/* line 7974, ../../../scss/_app_styles.scss */ +.empty-dashboard-message > a { + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; +} +/* line 7988, ../../../scss/_app_styles.scss */ +.empty-dashboard-message .button-explore-courses { + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; +} + +/* line 8003, ../../../scss/_app_styles.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 8013, ../../../scss/_app_styles.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8017, ../../../scss/_app_styles.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 8022, ../../../scss/_app_styles.scss */ +.module_card .card_banner { + width: 250px; + height: 290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 8035, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 8040, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 8052, ../../../scss/_app_styles.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 8067, ../../../scss/_app_styles.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-size: 23px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 8078, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 8081, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8086, ../../../scss/_app_styles.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8090, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 8093, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 8097, ../../../scss/_app_styles.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 8111, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 8117, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 8121, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 8124, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 8128, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 8136, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 8149, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8155, ../../../scss/_app_styles.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 8172, ../../../scss/_app_styles.scss */ +.inner { + display: inline-block !important; +} + +/* line 8179, ../../../scss/_app_styles.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 8199, ../../../scss/_app_styles.scss */ +.enrollBtn { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +/*****Toolbar CSS******/ +/* line 8214, ../../../scss/_app_styles.scss */ +#toolbar { + background-color: #3e3e3e; +} + +/* line 8217, ../../../scss/_app_styles.scss */ +.datetime { + color: #eaeaea; + padding: 4px 0px 2px 5px; + font-size: 11px; +} + +/* line 8222, ../../../scss/_app_styles.scss */ +.changefont { + text-align: right; + padding: 2px 5px 1px 0px; +} +/* line 8226, ../../../scss/_app_styles.scss */ +.changefont .minus { + font-size: 60%; + color: #eaeaea; +} +/* line 8229, ../../../scss/_app_styles.scss */ +.changefont .normal { + font-size: 80%; + color: #eaeaea; +} +/* line 8232, ../../../scss/_app_styles.scss */ +.changefont .plus { + font-size: 100%; + color: #eaeaea; +} + +/***********Landing page***************/ +/* line 8241, ../../../scss/_app_styles.scss */ +.about_us { + background: #20ade0; +} + +/* line 8244, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8247, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8257, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8263, ../../../scss/_app_styles.scss */ +.box-content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8276, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8283, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8309, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} + +/* line 8313, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 18px; +} + +/* line 8321, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #107aa1; +} + +/*.searchbar { + margin: 0.8rem; +}*/ +/* line 8330, ../../../scss/_app_styles.scss */ +.search-field { + width: 0; + height: 40px; + margin-left: 1rem; + padding: 0; + border-radius: 50px; + border: none; + transition: all 0.5s ease; +} + +/* line 8340, ../../../scss/_app_styles.scss */ +.expand-search { + width: 80%; + max-width: calc(80% - 3rem); + border: 1px solid #c9c9c9; + padding: .5rem; +} + +/* line 8347, ../../../scss/_app_styles.scss */ +svg { + width: 20px; + height: 20px; +} + +/* line 8352, ../../../scss/_app_styles.scss */ +.button { + border-radius: 50px; +} + +/* line 8357, ../../../scss/_app_styles.scss */ +#page_content { + display: table; + height: auto; + display: table-row; +} + +/* line 8365, ../../../scss/_app_styles.scss */ +.footer_container { + height: auto; + display: table-row; +} + +/* line 8372, ../../../scss/_app_styles.scss */ +#footer { + height: 1px; +} + +/* ----New Footer For NROER -------*/ +/* line 8381, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8399, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8402, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8407, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8413, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8417, ../../../scss/_app_styles.scss */ +.second-has-form { + margin-top: 0px; + margin-bottom: -2px; +} + +/* line 8425, ../../../scss/_app_styles.scss */ +#course-settings-drop { + width: 181px; +} + +/* line 8428, ../../../scss/_app_styles.scss */ +.edit_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.5px; + margin-left: 0px; +} +/* line 8437, ../../../scss/_app_styles.scss */ +.edit_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/** New cards showing popular ***/ +/* +// font stuff +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900); + + +// colour stuff*/ +/*@white: #ffffff; +@lightBG: #dce1df; +@salmon: #ff6666; + +@teal: #0096a0; +@tealMid: #0ebac7; +@tealContrast: #33ffff; +@tealShade: #007c85; + +@darkGrey: #4f585e;*/ +/*body { + background: #dce1df; + color: #4f585e; + font-family: 'Source Sans Pro', sans-serif; + text-rendering: optimizeLegibility; +}*/ +/*a.btn { + background: #0096a0; + border-radius: 4px; + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25); + color: #ffffff; + display: inline-block; + padding: 6px 30px 8px; + position: relative; + text-decoration: none; + transition: all 0.1s 0s ease-out; + margin-top: -5px; +} + +.no-touch a.btn:hover { + background: lighten(#0096a0,2.5); + box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075); + transform: translateY(-2px); + transition: all 0.25s 0s ease-out; +} + +.no-touch a.btn:active, +a.btn:active { + background: darken(#0096a0,2.5); + box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25); + transform: translate3d(0,1px,0); + transition: all 0.025s 0s ease-out; +} + +div.cards { + margin: 80px auto; + max-width: 100%; + text-align: center; +} + +div.card { + background: #ffffff; + display: inline-block; + margin: 8px; + max-width: 215px; + perspective: 1000; + position: relative; + text-align: left; + transition: all 0.3s 0s ease-in; + z-index: 1; + + img { + max-width: 215px; + } + + div.card-title { + background: #ffffff; + padding: 6px 15px 10px; + position: relative; + z-index: 0; + + a.toggle-info { + border-radius: 32px; + height: 32px; + padding: 0; + position: absolute; + right: 15px; + top: 10px; + width: 32px; + + span { + background:#ffffff; + display: block; + height: 2px; + position: absolute; + top: 16px; + transition: all 0.15s 0s ease-out; + width: 12px; + } + + span.left { + right: 14px; + transform: rotate(45deg); + } + span.right { + left: 14px; + transform: rotate(-45deg); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + letter-spacing: -0.05em; + margin: 0; + padding: 0; + + small { + display: block; + font-size: 13px; + font-weight: 300; + letter-spacing: -0.025em; + } + } + } + + div.card-description { + padding: 0 15px 10px; + position: relative; + font-size: 14px; + } + + div.card-actions { + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075); + padding: 10px 15px 20px; + text-align: center; + } + + div.card-flap { + background: darken(#ffffff,15); + position: absolute; + width: 100%; + transform-origin: top; + transform: rotateX(-90deg); + } + div.flap1 { + transition: all 0.3s 0.3s ease-out; + z-index: -1; + } + div.flap2 { + transition: all 0.3s 0s ease-out; + z-index: -2; + } + +} + +div.cards.showing { + div.card { + cursor: pointer; + opacity: 0.6; + transform: scale(0.88); + } +} + +.no-touch div.cards.showing { + div.card:hover { + opacity: 0.94; + transform: scale(0.92); + } +} + +div.card.show { + opacity: 1 !important; + transform: scale(1) !important; + + div.card-title { + a.toggle-info { + background: #ff6666 !important; + span { + top: 15px; + } + span.left { + right: 10px; + } + span.right { + left: 10px; + } + } + } + div.card-flap { + background: #ffffff; + transform: rotateX(0deg); + } + div.flap1 { + transition: all 0.3s 0s ease-out; + } + div.flap2 { + transition: all 0.3s 0.2s ease-out; + } +} + +.accordion .content { + overflow: hidden; +} +*/ +/* line 8650, ../../../scss/_app_styles.scss */ +.analytics-cards a, .analytics-cards h4 { + font-size: 16px; +} +@media only screen and (max-width: 320px) { + /* line 8650, ../../../scss/_app_styles.scss */ + .analytics-cards a, .analytics-cards h4 { + font-size: 12px; + } +} + +/* line 8658, ../../../scss/_app_styles.scss */ +.reg-users-box { + margin-left: 0px; +} +@media only screen and (max-width: 320px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 52px; + } +} +@media screen and (min-width: 321px) and (max-width: 850px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 70px; + } +} + +/* line 8668, ../../../scss/_app_styles.scss */ +.login-box { + background: #fff; + border: 1px solid #ddd; + margin: 100px 0; + padding: 40px 20px 0 20px; +} + +/* +* CLIx Platform Stylesheet +*/ +/* line 6, ../../../scss/_clix_styles.scss */ +.workspace { + min-height: 100%; + /*&:after{ + //Hack for setting div height to the height of the browser window + content:""; + display:block; + height:130px; // allows the content of the footer to be visible at the bottom. This should match the margin-bottom of the div +}*/ +} +/* line 10, ../../../scss/_clix_styles.scss */ +.workspace .app.button-bar { + height: 45px; +} + +/* line 24, ../../../scss/_clix_styles.scss */ +#top-headers { + margin-bottom: 0em; +} +/* line 28, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar { + background-color: #fff !important; + margin: 0px auto; + box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); + /*.top-bar-section li a:not(.button):hover, .top-bar-section li:not(.has-form):hover { + background-color: scale-color($theme-color-invert, $lightness: 10%) !important; + color: #ececec; + // background-color: #E1E1E1; + }*/ +} +/* line 35, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar.expanded .title-area { + background: #FAFAFA; +} +/* line 40, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .title-area { + height: auto; +} +/* line 55, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section #login-button-medium { + text-decoration: underline; + color: blue !important; +} +/* line 60, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section .app-menus li a { + font-weight: 600; +} +/* line 66, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section ul.dropdown { + background: #fff !important; +} +/* line 68, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section ul.dropdown li input[type=submit] { + height: 3em; +} +@media only screen and (max-width: 40em) { + /* line 74, ../../../scss/_clix_styles.scss */ + #top-headers #first-header.top-bar .top-bar-section #login-button-medium { + display: none; + } + /* line 77, ../../../scss/_clix_styles.scss */ + #top-headers #first-header.top-bar .top-bar-section #login-button-medium:hover { + background: inherit; + } +} +@media only screen and (min-width: 40.063em) { + /* line 85, ../../../scss/_clix_styles.scss */ + #top-headers #first-header.top-bar .top-bar-section ul li:hover { + background: inherit; + } + /* line 90, ../../../scss/_clix_styles.scss */ + #top-headers #first-header.top-bar .top-bar-section #login-button-small { + display: none; + } +} +/* line 96, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { + color: #ececec !important; +} +/* line 98, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { + background-color: #fff !important; + color: #333 !important; + font-weight: 600; +} +/* line 104, ../../../scss/_clix_styles.scss */ +#top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:hover { + background: #6153ae; + color: white !important; +} +/* line 119, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header { + opacity: 0.9; + background-color: #E1E1E1 !important; +} +/* line 124, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header:hover { + opacity: 1; + transition: 0.1s all; + box-shadow: 0px 2px 3px #E1E1E1 !important; +} +/* line 132, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #group-apps .back-btn.fi-play:before { + transform: rotate(180deg); +} +/* line 137, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar { + background-color: #fafafa; + height: 52px; +} +/* line 141, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar span { + font-size: 1em !important; +} +/* line 146, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar img { + height: 45px; + width: 50px; +} +/* line 157, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { + background-color: #fafafa !important; + color: #000; + border-bottom: solid 1px gray !important; +} +/* line 163, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { + background-color: #2d2752 !important; +} +/* line 167, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { + background-color: #352d61; +} +/* line 172, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { + background-color: #fafafa; + color: gray; +} +/* line 179, ../../../scss/_clix_styles.scss */ +#top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { + background-color: #2d2752; + color: #fff; +} +/* line 187, ../../../scss/_clix_styles.scss */ +#top-headers ul.dropdown { + box-shadow: 0px 2px 5px black; + opacity: 1; +} +/* line 192, ../../../scss/_clix_styles.scss */ +#top-headers #search_text { + border-bottom: solid thin #E1E1E1; + background-color: #fafafa; + border-top: none; + border-left: none; + border-right: none; + padding: none !important; + /*color: #fff !important;*/ + height: inherit; + box-shadow: none; + top: 10px; +} +/* line 204, ../../../scss/_clix_styles.scss */ +#top-headers #search_text:focus { + border-bottom-color: #2b2c2d; + transition: 1s ease-out; +} +/* line 210, ../../../scss/_clix_styles.scss */ +#top-headers #search-submit { + background-color: #fafafa; + top: 10px; + position: absolute; + left: -30px; + opacity: 0.3; + color: black; +} +/* line 220, ../../../scss/_clix_styles.scss */ +#top-headers #search-submit:hover { + opacity: 1; + color: white; + background-color: gray; + transition: 0.8s ease-out; +} +/* line 227, ../../../scss/_clix_styles.scss */ +#top-headers ul.title-area a { + color: #333333 !important; +} +/* line 229, ../../../scss/_clix_styles.scss */ +#top-headers ul.title-area a .user-heading { + font-weight: bolder; + font-size: 23px; + color: #BFBFBF !important; + line-height: 1.8em; +} + +/* line 273, ../../../scss/_clix_styles.scss */ +.login-page { + position: relative; + /*background: url(/static/ndf/images/login-background.png);*/ + background-size: 100% 100%; + min-height: 100vh; +} +/* line 279, ../../../scss/_clix_styles.scss */ +.login-page .login-page-opacity { + height: 100%; + width: 100%; + position: absolute; + opacity: 0.6; + background: -webkit-gradient(linear, left top, right top, from(#E9A900), to(#B0108D)); + background: -webkit-linear-gradient(left, #E9A900, #B0108D); + background: -moz-linear-gradient(left, #E9A900, #B0108D); + background: -ms-linear-gradient(left, #E9A900, #B0108D); + background: -o-linear-gradient(left, #E9A900, #B0108D); +} +/* line 291, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form { + background-color: #fff; + border-radius: 10px; + padding: 10px 40px; + opacity: 0.95; + max-width: 90%; + width: 350px; + margin: 100px auto; + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); +} +/* line 302, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-page-header img { + height: 80px; + width: 280px; +} +/* line 306, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-page-header span { + display: block; + text-transform: uppercase; + color: #d5d5d5; + font-weight: 600; + letter-spacing: 1px; +} +/* line 314, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha { + margin: 10px 0; +} +/* line 317, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha > div { + display: inline-block; + vertical-align: top; +} +/* line 321, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha .fi-refresh { + color: #A0148E; + font-size: 25px; +} +/* line 326, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content th { + display: none; +} +/* line 329, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input { + display: inline-block; +} +/* line 332, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input#id_captcha_1 { + width: 130px; +} +/* line 339, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-button .button { + font-size: 15px; + background-color: #B1B1B1; + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; +} +/* line 347, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-button .button:hover { + background-color: #CC1AB5; + border-color: #881378; +} +/* line 354, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .forgot-password label { + font-size: 10px; + text-align: center; + text-decoration: underline; +} +/* line 361, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .register-user label { + font-size: 10px; + margin: 10px 0px 0px; +} +/* line 365, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .register-user span { + color: #A0148E; +} + +/*Blue color variable*/ +/*Orange color variables*/ +/* line 400, ../../../scss/_clix_styles.scss */ +html { + height: 100%; +} + +/* line 403, ../../../scss/_clix_styles.scss */ +body { + background: #eefaff; + height: 100%; + margin: 0; + background-repeat: no-repeat; + background-attachment: fixed; + font-family: 'OpenSans-Regular', sans-serif; + overflow-x: hidden; +} + +/* line 415, ../../../scss/_clix_styles.scss */ +h3 { + font-size: 20px; + color: #164A7B; + font-family: 'OpenSans-Semibold'; +} + +/* line 421, ../../../scss/_clix_styles.scss */ +h5 { + color: #99aaba; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 2px; + margin-left: 5px; +} + +/* line 432, ../../../scss/_clix_styles.scss */ +.overlay-head { + background-color: #fff; + height: 60px; + margin-bottom: 20px; +} + +/* line 439, ../../../scss/_clix_styles.scss */ +.icon-widget { + font-size: 24px; +} + +/* line 444, ../../../scss/_clix_styles.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* line 449, ../../../scss/_clix_styles.scss */ +.icon-wid { + font-size: 34px; + color: #a2b1be; + margin-right: 10px; +} + +/* line 455, ../../../scss/_clix_styles.scss */ +.buddy-wid { + font-size: 34px; + color: #a2b1be; + margin-right: 30px; + margin-top: 8px; +} + +/* Landing page */ +/* line 466, ../../../scss/_clix_styles.scss */ +.landing_page { + position: relative; + text-align: center; +} +/* line 471, ../../../scss/_clix_styles.scss */ +.landing_page .panel { + background-color: inherit; + border: none; +} +/* line 476, ../../../scss/_clix_styles.scss */ +.landing_page .landing_page_background { + height: 100vh; + width: 100%; + position: absolute; + z-index: -1; +} +/* line 484, ../../../scss/_clix_styles.scss */ +.landing_page .clix_brief { + text-align: left; + padding: 20px 5%; +} +/* line 488, ../../../scss/_clix_styles.scss */ +.landing_page .clix_brief img { + margin: 30px 20px; + height: 70px; +} +@media screen and (max-width: 450px) { + /* line 488, ../../../scss/_clix_styles.scss */ + .landing_page .clix_brief img { + margin: 25px 10px; + height: 55px; + } +} +/* line 496, ../../../scss/_clix_styles.scss */ +.landing_page .clix_brief p { + color: #fff; + font-weight: 300; +} +/* line 509, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix { + background-color: rgba(255, 255, 255, 0.92); + border-radius: 10px; + width: 100%; + margin: 20px auto; + text-align: left; + padding: 30px 40px 21px; +} +@media screen and (min-width: 1025px) { + /* line 509, ../../../scss/_clix_styles.scss */ + .landing_page .invitation_to_clix { + margin: 30px; + } +} +/* line 521, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix > span { + color: #6658af; + font-weight: bold; + letter-spacing: 0.2px; + text-transform: uppercase; + display: inline-block; + vertical-align: middle; +} +/* line 531, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix p { + color: #b0108d; + padding: 25px 0px 30px; + font-weight: 300; +} +/* line 539, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix img { + height: 30px; +} +/* line 542, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix form { + margin-top: 30px; +} +/* line 545, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix form input { + height: 45px; + margin: 5px 0px 24px; +} +/* line 551, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix .flowers { + left: 50px; + height: 200px; + width: 100%; + bottom: 0px; + opacity: 0.6; +} +@media screen and (max-width: 450px) { + /* line 551, ../../../scss/_clix_styles.scss */ + .landing_page .invitation_to_clix .flowers { + width: 100%; + } +} +@media screen and (min-width: 451px) and (max-width: 1025px) { + /* line 551, ../../../scss/_clix_styles.scss */ + .landing_page .invitation_to_clix .flowers { + width: 100%; + } +} +/* line 566, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix .bees { + position: absolute; + top: 5px; + right: 50px; + height: 100px; + float: left; +} +@media screen and (max-width: 450px) { + /* line 566, ../../../scss/_clix_styles.scss */ + .landing_page .invitation_to_clix .bees { + right: 15px; + height: 50px; + } +} +/* line 580, ../../../scss/_clix_styles.scss */ +.landing_page .invitation_to_clix .landing-page-text { + color: #6153ae; +} +/* line 588, ../../../scss/_clix_styles.scss */ +.landing_page input.button { + border-radius: 10px; + text-transform: uppercase; + background-color: #164A7B; + margin-top: 80px; + background-color: rgba(255, 193, 78, 0.3); +} +/* line 598, ../../../scss/_clix_styles.scss */ +.landing_page a.grey { + color: #999; + /*display: inline-block; + padding: 6px 12px; + background: #B0108D; + color: #fff; + font-weight: 600; + font-family: 'ubuntu-bold'; + text-transform: uppercase;*/ +} + +/* Login Page */ +/* line 614, ../../../scss/_clix_styles.scss */ +.login-page { + position: relative; + /*background: url(/static/ndf/images/login-background.png);*/ + background-size: 100% 100%; + min-height: 100vh; +} +/* line 620, ../../../scss/_clix_styles.scss */ +.login-page .login-page-opacity { + height: 100%; + width: 100%; + position: absolute; + opacity: 0.6; +} +/* line 632, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form { + background-color: #fff; + border-radius: 10px; + padding: 10px 40px; + opacity: 0.95; + max-width: 90%; + width: 350px; + margin: 100px auto; + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); +} +/* line 643, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-page-header img { + height: 80px; + width: 280px; +} +/* line 647, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-page-header span { + display: block; + text-transform: uppercase; + color: #d5d5d5; + font-weight: 600; + letter-spacing: 1px; +} +/* line 655, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha { + margin: 10px 0; +} +/* line 658, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha > div { + display: inline-block; + vertical-align: top; +} +/* line 662, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha .fi-refresh { + color: #A0148E; +} +/* line 667, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content th { + display: none; +} +/* line 670, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input { + display: inline-block; +} +/* line 673, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input#id_captcha_1 { + width: 130px; +} +/* line 680, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .login-button .button { + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; + background-color: #a75692; + border-color: #881378; +} +/* line 691, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .explore-button .button { + background-color: #B1B1B1; + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; + margin-top: 160px; +} +/* line 700, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .explore-button .button:hover { + background-color: #CC1AB5; + border-color: #881378; +} +/* line 710, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .forgot-password label { + text-align: center; + text-decoration: underline; +} +/* line 717, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .register-user label { + margin: 10px 0px 0px; +} +/* line 721, ../../../scss/_clix_styles.scss */ +.login-page .login-page-form .register-user span { + color: #A0148E; +} + +/* line 730, ../../../scss/_clix_styles.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 741, ../../../scss/_clix_styles.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* line 749, ../../../scss/_clix_styles.scss */ +.login-home-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 70px; + padding: 6px 17px; + font-family: "OpenSans-Semibold", sans-serif; + margin-top: 50px; + border: 2px solid #ffc14e; + color: white; + background-color: #a75692; +} +/* line 760, ../../../scss/_clix_styles.scss */ +.login-home-button:hover { + cursor: pointer; +} + +/* line 768, ../../../scss/_clix_styles.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; +} + +/* line 778, ../../../scss/_clix_styles.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 783, ../../../scss/_clix_styles.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 786, ../../../scss/_clix_styles.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 796, ../../../scss/_clix_styles.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 804, ../../../scss/_clix_styles.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; +} +/* line 806, ../../../scss/_clix_styles.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 817, ../../../scss/_clix_styles.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 825, ../../../scss/_clix_styles.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { + display: none; +} +/* line 831, ../../../scss/_clix_styles.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 842, ../../../scss/_clix_styles.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 844, ../../../scss/_clix_styles.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 851, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 858, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 864, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 872, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 882, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 891, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 898, ../../../scss/_clix_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/*Overridding foundation css*/ +/* line 921, ../../../scss/_clix_styles.scss */ +.top-bar, .top-bar .name { + height: 52px; + background: #164A7B; +} + +/* line 928, ../../../scss/_clix_styles.scss */ +.top-bar .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; +} +/* line 932, ../../../scss/_clix_styles.scss */ +.top-bar .name { + text-align: center; +} +/* line 935, ../../../scss/_clix_styles.scss */ +.top-bar .name .close-dropdown, .top-bar .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 944, ../../../scss/_clix_styles.scss */ +.top-bar li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 952, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul.left li { + border-right: 2px solid #16539f; +} +/* line 955, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li { + background: #164A7B; +} +/* line 959, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li > a { + color: #ffffff; + line-height: 40px; + font-weight: 500; + letter-spacing: 1px; + display: block; + padding: 12px 0 12px 0; + font-family: "OpenSans-Regular"; + font-size: 16px; +} +/* line 971, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li:hover > a { + color: #fff; +} +/* line 981, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li input { + color: #74b3dc; + background: #164A7B; + font-family: OpenSans-Regular; + font-size: 15px; + letter-spacing: 1.4px; +} +/* line 989, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li input:hover { + color: white; + border-left: 4px solid #ffc14e; + background: #164A7B; +} +/* line 996, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li .lang-font { + font-family: "OpenSans-Light"; + font-size: 14px; +} +/* line 1003, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li.active { + color: #fff; +} +/* line 1008, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section ul li.active > a { + color: #fff; +} +/* line 1016, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section .dropdown li.parent-link a { + display: none; +} +/* line 1023, ../../../scss/_clix_styles.scss */ +.top-bar .top-bar-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 1034, ../../../scss/_clix_styles.scss */ + .top-bar .title-area { + box-shadow: none; + } + /* line 1036, ../../../scss/_clix_styles.scss */ + .top-bar .title-area .name { + text-align: right; + } + /* line 1041, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section ul.left li > a { + padding: 0px 20px; + } + /* line 1043, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section ul.left li > a.active { + color: #fff; + font-size: 17px; + font-family: OpenSans-Bold; + margin-top: -3px; + border-bottom: 3px solid #ffc14e; + background-color: #164a7b !important; + } + /* line 1054, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 50px; + border-left-width: 0px; + font-family: OpenSans-Regular; + } + /* line 1064, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section li:not(.has-form).active a:not(.button) { + color: #fff; + font-family: OpenSans-Bold; + font-size: 18px; + } + /* line 1075, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section li:not(.has-form).has-dropdown a:not(.button) a:not(.not-click):hover { + color: #74b3dc; + border-bottom: 0px; + border-left: 3px solid #ffc14e; + } + /* line 1087, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + color: #fff; + } + /* line 1095, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section .profile-menu > a svg { + height: 52px; + width: 52px; + vertical-align: top; + background: #fff; + margin-right: 15px; + } + /* line 1106, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 1113, ../../../scss/_clix_styles.scss */ + .top-bar .top-bar-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar .top-bar-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #50c2fa; + border-bottom: 0px; + border-left: 2px solid #ffc14e; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/*Custom css*/ +/* line 1134, ../../../scss/_clix_styles.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 1138, ../../../scss/_clix_styles.scss */ +.icons-medium { + line-height: 23px; + vertical-align: sub; +} + +/* line 1143, ../../../scss/_clix_styles.scss */ +.icons-large { + line-height: 45px; +} + +/* line 1148, ../../../scss/_clix_styles.scss */ +.round-icon { + border-radius: 100%; + height: 20px; + padding: 2px 5px; +} + +/* line 1155, ../../../scss/_clix_styles.scss */ +.hide { + display: none !important; +} + +/* line 1158, ../../../scss/_clix_styles.scss */ +.badge { + display: inline-block; + height: 21px; + width: 21px; + border-radius: 100%; + line-height: 21px; + text-align: center; +} +/* line 1167, ../../../scss/_clix_styles.scss */ +.badge.badge-blue { + background-color: #74b3dc; + color: #fff; +} + +/* line 1175, ../../../scss/_clix_styles.scss */ +#menu_bar_gstudio .user-profile-pic-small { + height: 46px; + width: 46px; + margin: 0px 10px; +} +/* line 1181, ../../../scss/_clix_styles.scss */ +#menu_bar_gstudio .loggedin-user { + # background: #505e6c; + border-radius: 100%; + height: 45px; + width: 45px; + display: inline-block; + margin: 5px 5px 0px 5px; + overflow: hidden; +} +/* line 1191, ../../../scss/_clix_styles.scss */ +#menu_bar_gstudio .loggedin-user img { + height: 100%; + width: 100%; +} + +/* group_list */ +/* line 1198, ../../../scss/_clix_styles.scss */ +.group_breadcumbs { + color: #6e8ba6; +} +/* line 1200, ../../../scss/_clix_styles.scss */ +.group_breadcumbs a { + display: inline-block; + margin: 15px auto; + color: #6e8ba6; + letter-spacing: 1px; +} + +/* line 1208, ../../../scss/_clix_styles.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 1217, ../../../scss/_clix_styles.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 1220, ../../../scss/_clix_styles.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 1227, ../../../scss/_clix_styles.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 1234, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 1237, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 1240, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 1248, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 1252, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 1254, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 1264, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 1269, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 1275, ../../../scss/_clix_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 1282, ../../../scss/_clix_styles.scss */ +.max-width { + max-width: 100%; +} + +/* line 1287, ../../../scss/_clix_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + height: 300px; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 1296, ../../../scss/_clix_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 1309, ../../../scss/_clix_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 1318, ../../../scss/_clix_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 1323, ../../../scss/_clix_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 1328, ../../../scss/_clix_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 1334, ../../../scss/_clix_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 1338, ../../../scss/_clix_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 1351, ../../../scss/_clix_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 1366, ../../../scss/_clix_styles.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 1375, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 1382, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 1388, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 1390, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 1397, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 1401, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 1407, ../../../scss/_clix_styles.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1418, ../../../scss/_clix_styles.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 1427, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 1434, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 1439, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 1443, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 1453, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 1460, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 1469, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 1476, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 1483, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 1491, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 1507, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 1514, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 1525, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 1536, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 1547, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 1558, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 1574, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 1581, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 1592, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 1603, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 1614, ../../../scss/_clix_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 1625, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 1627, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 1635, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 1641, ../../../scss/_clix_styles.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1652, ../../../scss/_clix_styles.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 1662, ../../../scss/_clix_styles.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 1665, ../../../scss/_clix_styles.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 1670, ../../../scss/_clix_styles.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 1680, ../../../scss/_clix_styles.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 1690, ../../../scss/_clix_styles.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 1693, ../../../scss/_clix_styles.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 1697, ../../../scss/_clix_styles.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 1703, ../../../scss/_clix_styles.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 1705, ../../../scss/_clix_styles.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 1714, ../../../scss/_clix_styles.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1728, ../../../scss/_clix_styles.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 485px; + min-height: 350px; + margin-left: 14px; +} + +/* line 1736, ../../../scss/_clix_styles.scss */ +h6 { + margin-left: 15px; +} + +/*Custom css*/ +/* line 1742, ../../../scss/_clix_styles.scss */ +.add_more_files { + color: #aaa; + letter-spacing: 0.6px; + margin-left: 10px; +} + +/* line 1750, ../../../scss/_clix_styles.scss */ +input.trans-sub[type="text"], input.trans-sub[type="file"] { + margin-top: 5px; + margin-left: 20px; +} + +/* line 1756, ../../../scss/_clix_styles.scss */ +input.trans-sub[type="file"]::-webkit-file-upload-button { + visibility: hidden; +} + +/* line 1759, ../../../scss/_clix_styles.scss */ +input.trans-sub[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; + margin-left: 20px; +} + +/* line 1776, ../../../scss/_clix_styles.scss */ +input.trans-sub[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 20px; + border-radius: 4px; + border: 1px solid #ccc; + width: 98%; +} + +/* line 1784, ../../../scss/_clix_styles.scss */ +input.trans-sub[type="text"] { + text-align: left; +} + +/* line 1789, ../../../scss/_clix_styles.scss */ +input[type="text"], input[type="file"] { + margin-top: 5px; +} + +/* line 1792, ../../../scss/_clix_styles.scss */ +label { + font-size: 12px; + text-transform: uppercase; + color: #99aaba; + margin-bottom: 7px; + margin-left: 20px; +} + +/* line 1801, ../../../scss/_clix_styles.scss */ +input[type="file"]::-webkit-file-upload-button { + visibility: hidden; +} + +/* line 1804, ../../../scss/_clix_styles.scss */ +input[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; +} + +/* line 1820, ../../../scss/_clix_styles.scss */ +input[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 30.4px; + border-radius: 4px; + border: 1px solid #ccc; + width: 95%; +} + +/* line 1832, ../../../scss/_clix_styles.scss */ +input[type="button"] { + -webkit-appearance: button; + cursor: pointer; + margin-top: 15px; + width: 8%; +} + +/* line 1843, ../../../scss/_clix_styles.scss */ +.select-language { + display: block; + border: 1px solid #999; + border-radius: 5px; + margin-left: 20px; + width: 457px; + border-radius: 4px solid #cc7769; + height: 47px; + border-color: #cc7769; +} + +/* line 1855, ../../../scss/_clix_styles.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 1860, ../../../scss/_clix_styles.scss */ +#asset_content_desc, #asset_content_name { + color: black !important; + font-size: 13px; +} + +/* Buttons custom css */ +/* line 1866, ../../../scss/_clix_styles.scss */ +.button-hollow-white { + background: inherit; + border: 2px solid #fff; + border-radius: 5px; + color: #fff; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* Buttons custom css */ +/* line 1879, ../../../scss/_clix_styles.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 1888, ../../../scss/_clix_styles.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 1892, ../../../scss/_clix_styles.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; + font-weight: 600; +} + +/* line 1901, ../../../scss/_clix_styles.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; +} +/* line 1913, ../../../scss/_clix_styles.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 1919, ../../../scss/_clix_styles.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 1931, ../../../scss/_clix_styles.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1937, ../../../scss/_clix_styles.scss */ +.pink-button { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 1948, ../../../scss/_clix_styles.scss */ +.pink-button:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} + +/* line 1953, ../../../scss/_clix_styles.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 1964, ../../../scss/_clix_styles.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1972, ../../../scss/_clix_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 1983, ../../../scss/_clix_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1990, ../../../scss/_clix_styles.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; +} +/* line 2000, ../../../scss/_clix_styles.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 2007, ../../../scss/_clix_styles.scss */ +.disab-button { + margin-right: 10px; + background-color: #fff; + text-transform: none; + font-size: 14px; +} + +/* line 2015, ../../../scss/_clix_styles.scss */ +.save-asset { + margin-top: 9px; + margin-right: -133px; +} + +/* line 2019, ../../../scss/_clix_styles.scss */ +.asset-save-button { + color: #ce7869; + display: inline-block; + border: 1px solid #ce7869; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; + background: #fff; + margin-right: 5px; + margin-top: 5px; +} + +/* line 2039, ../../../scss/_clix_styles.scss */ +.blue-white-button { + color: #fff; + background: #164A7B; + border-radius: 4px; + padding: 5px; + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + +/* line 2049, ../../../scss/_clix_styles.scss */ +button[disabled], .button.disabled, .button[disabled] { + background-color: #eefaff; + border-color: #eefaff; + color: gray; + cursor: default; + opacity: 0.7; + box-shadow: none; + border-radius: 4px; + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + +/* line 2065, ../../../scss/_clix_styles.scss */ +.button-small { + padding: 1px 5px; +} + +/* Create Curriculum */ +/* line 2070, ../../../scss/_clix_styles.scss */ +ul.jqtree_common { + position: relative; +} +/* line 2072, ../../../scss/_clix_styles.scss */ +ul.jqtree_common:before { + border-width: 0px 0px 1px 1px; + position: absolute; + left: 9px; + border-style: dashed; + border-color: #ccc; + top: 12px; + height: calc(100% - 27px); + width: 16px; +} + +/*li.jqtree-folder { + position: relative; + &:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 7px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 15px; + } +}*/ +/* line 2097, ../../../scss/_clix_styles.scss */ +ul:not(:only-child) li:first-child { + position: relative; +} +/* line 2099, ../../../scss/_clix_styles.scss */ +ul:not(:only-child) li:first-child:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: -22px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 30px; +} + +/* line 2110, ../../../scss/_clix_styles.scss */ +.jqtree_common .jqtree-element:not(.leaf_node):not(:only-child), .jqtree_common .jqtree-element.leaf_node { + position: relative; +} +/* line 2112, ../../../scss/_clix_styles.scss */ +.jqtree_common .jqtree-element:not(.leaf_node):not(:only-child):before, .jqtree_common .jqtree-element.leaf_node:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 12px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 10px; +} + +/* line 2125, ../../../scss/_clix_styles.scss */ +ul.jqtree-tree .jqtree-element { + margin-top: 15px; +} + +/* line 2129, ../../../scss/_clix_styles.scss */ +ul.jqtree-tree ul.jqtree_common { + margin-left: 35px; +} + +/* line 2133, ../../../scss/_clix_styles.scss */ +ul.jqtree-tree li.jqtree-selected > .jqtree-element, ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover { + background: transparent; +} + +/* line 2137, ../../../scss/_clix_styles.scss */ +ul.jqtree-tree .jqtree-toggler { + color: #aaa; +} +/* line 2139, ../../../scss/_clix_styles.scss */ +ul.jqtree-tree .jqtree-toggler:hover { + color: #aaa; +} + +/* line 2144, ../../../scss/_clix_styles.scss */ +.curriculum_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 20px auto; + padding: 0px 0px; + min-height: calc(100vh - 100px); + overflow-y: auto; + padding: 15px; +} + +/* line 2153, ../../../scss/_clix_styles.scss */ +.curriculum_creator_header { + width: 100%; + height: 60px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 13px #000; +} +/* line 2160, ../../../scss/_clix_styles.scss */ +.curriculum_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 2170, ../../../scss/_clix_styles.scss */ +.curriculum_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #999999; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 2180, ../../../scss/_clix_styles.scss */ +.curriculum_creator_header .course_actions ul li.active, .curriculum_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} + +/* line 2188, ../../../scss/_clix_styles.scss */ +.curriculum_list { + width: 100%; + height: 60px; + background: #fff; + padding: 17px 81px; + box-shadow: 0px 1px 4px #004; + color: #2b78e4; +} +/* line 2195, ../../../scss/_clix_styles.scss */ +.curriculum_list a { + color: #164A7B; + font-size: 20px; + font-weight: 600; +} + +/* line 2202, ../../../scss/_clix_styles.scss */ +.curriculum_list_header { + max-width: 1176px !important; + margin: 0 auto !important; + box-sizing: border-box !important; + padding-left: 20px !important; + padding-right: 20px !important; + padding: 8px !important; + padding-top: 20px !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + justify-content: space-between !important; + border-bottom: 1px solid #D6D8DA !important; + -moz-box-sizing: border-box !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + box-shadow: 0px 3px 6px #000; + background-color: #ffffff; +} +/* line 2223, ../../../scss/_clix_styles.scss */ +.curriculum_list_header .title-curriculum { + font-family: inherit !important; + font-weight: bold !important; + line-height: 23px !important; + color: #21242C !important; + padding: 0px 0px 0px 10px !important; + font-weight: 500 !important; + font-size: 20px !important; +} +/* line 2233, ../../../scss/_clix_styles.scss */ +.curriculum_list_header .add-curriculum { + position: relative !important; + display: -moz-box !important; + display: -ms-inline-flexbox !important; + display: -webkit-box !important; + display: -webkit-inline-flex !important; + display: inline-flex !important; + align-items: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + font-size: 19px !important; + font-weight: 500 !important; +} + +/* line 2249, ../../../scss/_clix_styles.scss */ +.curriculum_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 2266, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 2285, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content:hover { + background: #F0F1F2 !important; +} +/* line 2288, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 2299, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; +} +/* line 2316, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: #164A7B !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; +} +/* line 2328, ../../../scss/_clix_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + +/* line 2341, ../../../scss/_clix_styles.scss */ +.explore-header { + line-height: 4em; +} +/* line 2343, ../../../scss/_clix_styles.scss */ +.explore-header > div { + vertical-align: middle; + display: inline-block; +} +/* line 2349, ../../../scss/_clix_styles.scss */ +.explore-header .heading a { + color: #fff; +} + +/* line 2366, ../../../scss/_clix_styles.scss */ +.node_name_empty { + border-radius: 5px; + margin-top: 11px; +} + +/*Common css*/ +/* line 2376, ../../../scss/_clix_styles.scss */ +.toggleButtons a { + padding: 0.5em 1em; + margin: 0px; + background: #dddddd; + color: #000; + border: 1px solid #B7B7B7; + display: inline; +} +/* line 2384, ../../../scss/_clix_styles.scss */ +.toggleButtons a:first-child { + margin-right: -3px; + border-right: 0px solid #000; +} +/* line 2388, ../../../scss/_clix_styles.scss */ +.toggleButtons a:first-child { + border-radius: 10px 0px 0px 10px; +} +/* line 2391, ../../../scss/_clix_styles.scss */ +.toggleButtons a:last-child { + border-radius: 0px 10px 10px 0px; +} +/* line 2394, ../../../scss/_clix_styles.scss */ +.toggleButtons a.active { + background-color: #908F8F; + color: #fff; +} + +/* about_course style */ +/* abput and modules */ +/* line 2405, ../../../scss/_clix_styles.scss */ +.about-course { + background-color: #fff; + padding: 10px 23px; +} +/* line 2408, ../../../scss/_clix_styles.scss */ +.about-course > h5 { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + display: block; + margin: 2px 0px 0px; + color: #99aaba; + margin-left: 5px; +} + +/* line 2419, ../../../scss/_clix_styles.scss */ +.course-desc { + letter-spacing: 0.7px; + font-weight: 400; + color: #164A7B; + font-size: 14px; + margin-left: 4px 0px 0px; + margin-top: 5px; +} + +/* line 2429, ../../../scss/_clix_styles.scss */ +.course-highlight { + letter-spacing: 0.7px; + font-weight: 400; + color: #164A7B; + font-size: 14px; + margin-top: -11px; + margin-left: 4px 0px 0px; + margin-left: 4px; + margin-bottom: 5px; +} +/* line 2440, ../../../scss/_clix_styles.scss */ +.course-highlight > span { + color: #164a7b; +} + +/* group analytics and notifications */ +/* line 2450, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-overview > .columns { + padding: 0px 10px; +} +/* line 2453, ../../../scss/_clix_styles.scss */ +.course-overview-container h5 { + text-transform: uppercase; +} +/* line 2456, ../../../scss/_clix_styles.scss */ +.course-overview-container .correct-count { + color: #367714; +} +/* line 2459, ../../../scss/_clix_styles.scss */ +.course-overview-container .incorrect-count { + color: #9b0000; +} +/* line 2462, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-metric-heading { + text-transform: uppercase; + letter-spacing: 0.9px; + font-weight: 500; + color: #000000; + display: block; +} +/* line 2470, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-metric-count { + font-weight: 600; + letter-spacing: 0.5px; + display: block; + color: #000000; + font-size: 17px; +} +/* line 2478, ../../../scss/_clix_styles.scss */ +.course-overview-container .ongoing-session { + border-bottom: 1px solid #ccc; + margin-bottom: 12px; + padding-bottom: 15px; +} +/* line 2483, ../../../scss/_clix_styles.scss */ +.course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { + color: #2b78e4; +} +/* line 2486, ../../../scss/_clix_styles.scss */ +.course-overview-container .ongoing-session button { + padding: 7px; + margin: 0px; + background-color: #2B78E4; +} +/* line 2494, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-status > h5 { + color: #888; +} +/* line 2497, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-status > .row { + margin: 10px 0px; +} +/* line 2500, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-status .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2505, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-status .tabs .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 2513, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-status .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} +/* line 2524, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-notif-logs ul { + list-style: none; +} +/* line 2528, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-section { + border: 1px solid #ccc; + padding: 10px; + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); + margin: 40px 0px; + position: relative; +} +/* line 2535, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-section > .row { + margin: 20px 0px; +} +/* line 2539, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-section .course-section-heading { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + display: block; + margin: 2px 0px 15px; + color: #888; +} +/* line 2549, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-section .course-section-icon { + font-size: 20px; + top: -35px; + color: #000000; + background: #ffffff; + margin-left: 22px; +} +/* line 2574, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-warning { + background-color: #fffdd7; +} +/* line 2576, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-warning > h5 { + color: #c09100; +} +/* line 2579, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-warning i { + padding: 10px; + margin-right: 5px; + color: #c09100; +} +/* line 2584, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-warning a { + text-decoration: underline; +} +/* line 2588, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-students-data { + margin: 20px 0px; +} +/* line 2592, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 2595, ../../../scss/_clix_styles.scss */ +.course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} +/* line 2602, ../../../scss/_clix_styles.scss */ +.course-overview-container .student-overview-table { + width: 100%; + margin: 15px 0px; +} +/* line 2606, ../../../scss/_clix_styles.scss */ +.course-overview-container .student-overview-table tr { + border: none; +} +/* line 2610, ../../../scss/_clix_styles.scss */ +.course-overview-container .student-overview-table .progress .merter-val { + margin-left: 5px; +} + +/* line 2618, ../../../scss/_clix_styles.scss */ +.notifications-analytics-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2623, ../../../scss/_clix_styles.scss */ +.notifications-analytics-tabs .tabs .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 2631, ../../../scss/_clix_styles.scss */ +.notifications-analytics-tabs .tabs .tab-title.active { + border: 1px solid #CCC; + border-bottom: 0px; +} + +/* The notification Dashboard */ +/* line 2647, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, +.course-dashboard .course-performance > ul { + list-style: none; +} +/* line 2651, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, +.course-dashboard .course-performance > .row { + padding: 0px; + min-height: 22rem; + position: relative; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + background-color: #F9F9F9; + min-height: 20em; + margin: 0em 0em; + border-radius: 10px; +} +/* line 2663, ../../../scss/_clix_styles.scss */ +.course-dashboard .dash-tile-heading { + padding: 0.2em 0.7em; + border-bottom: 1px solid #DADADA; + font-weight: 500; +} +/* line 2669, ../../../scss/_clix_styles.scss */ +.course-dashboard .dash-tile-row { + padding: 1em; +} +/* line 2672, ../../../scss/_clix_styles.scss */ +.course-dashboard .dash-tile-row:nth-child(n+3) { + border-top: 1px solid #DCDCDC; +} +/* line 2678, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-status .course-update .course-current-state { + color: #000; + font-weight: bold; + padding: 0.5em 0.8em 0.6em; +} +/* line 2688, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-notifications { + position: relative; +} +/* line 2693, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-notifications .notification-row .notification-text { + letter-spacing: 0em; + word-spacing: 0.2em; +} +/* line 2698, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-notifications .notification-row .time-elapsed { + color: #424242; + cursor: pointer; +} +/* line 2705, ../../../scss/_clix_styles.scss */ +.course-dashboard .course-notifications .notification-count { + position: absolute; + right: 0.5em; + top: 0.3em; +} + +/* line 2722, ../../../scss/_clix_styles.scss */ +.notebook .notebook-header a, .notebook .notebook-header input { + margin: 0px; +} +/* line 2725, ../../../scss/_clix_styles.scss */ +.notebook .notebook-header .notes-count { + text-align: center; +} +/* line 2730, ../../../scss/_clix_styles.scss */ +.notebook .notebook-header .notes-count span:first-child { + font-weight: 600; + padding: 15px; +} +/* line 2735, ../../../scss/_clix_styles.scss */ +.notebook .notebook-header .notes-count span:last-child { + background: lightgrey; + padding: 2px 5px; + vertical-align: text-bottom; +} +/* line 2745, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body { + padding: 0px 0px; +} +/* line 2748, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .row { + margin: 30px 0px; +} +/* line 2751, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { + border: 1px solid #ccc; + padding: 10px 15px; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + border-radius: 5px; + line-height: 23px; + cursor: pointer; + position: relative; +} +/* line 2760, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { + font-weight: 800; +} +/* line 2764, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { + position: absolute; + right: 7px; + top: 3px; + font-weight: 700; + color: #929292; +} +/* line 2772, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { + margin: 15px 0px; +} +/* line 2775, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { + color: #989898; + letter-spacing: 0.9px; + font-weight: 500; +} +/* line 2781, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { + margin-right: 5px; +} +/* line 2786, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { + display: inline-block; + margin: 10px; + background: #ffebb2; + color: #cba552; + padding: 2px 5px; +} +/* line 2794, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { + color: #989898; + cursor: pointer; +} +/* line 2798, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { + margin-right: 10px 5px; +} +/* line 2804, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { + display: inline-block; + margin-right: 10px; +} +/* line 2811, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-details .note-tags { + float: right; +} +/* line 2813, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-cards .note-details .note-tags > span { + margin: 0px; +} +/* line 2822, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body > div { + padding: 0px; +} +/* line 2828, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index { + border-right: 1px solid #AFAEAE; + padding: 4px 0px; + background-color: #F1F1F1; +} +/* line 2833, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs-content { + padding: 0px; +} +/* line 2836, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs-content .active { + padding: 0px; +} +/* line 2840, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2845, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title { + width: 50%; + /*background-color: #DEDEDE;*/ + border-radius: 5px 5px 0px 0px; + position: relative; + top: 1px; +} +/* line 2852, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title a { + border-radius: inherit; + text-align: center; + color: #989898; +} +/* line 2859, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} +/* line 2863, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title.active a { + color: #3a3169; +} +/* line 2870, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .tab-content { + padding: 0px; +} +/* line 2875, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .date { + font-weight: bold; + background: #EFEFEF; + padding: 7px 10px; +} +/* line 2881, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .date .note-count { + line-height: 2em; +} +/* line 2886, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes > div { + border-bottom: 1px solid #AFAEAE; +} +/* line 2889, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note { + padding: 5px 15px; + background: #FFF; + cursor: pointer; + color: #A2A2A2; +} +/* line 2895, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-heading { + font-weight: 400; +} +/* line 2903, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { + font-weight: 600; + color: #717171; +} +/* line 2910, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-footer { + color: #888888; +} +/* line 2913, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-footer span { + margin-right: 10px; +} +/* line 2918, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note.active { + border-left: 5px solid #6153AE; + background: #F4E7FF; + font-weight: 800; + color: #6153AE; +} +/* line 2924, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note.active .note-heading { + font-weight: 500; +} +/* line 2928, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { + color: #6153AE; +} +/* line 2936, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page { + margin-left: 15px; + background-color: #fff; +} +/* line 2942, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .group_sections_content { + margin-top: 5px; +} +/* line 2946, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page > div { + background-color: #fff; +} +/* line 2950, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-toolbar { + padding: 1.8em 1.2em 0em; + margin: 0em; + background-color: #FFF; +} +/* line 2955, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-toolbar .note-creator { + font-weight: bold; +} +/* line 2958, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-title { + text-align: left; + color: #C3C3C3; + letter-spacing: 0.3px; + margin-top: 5px; +} +/* line 2965, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-rating { + text-align: right; +} +/* line 2967, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-rating > div { + display: inline-block; +} +/* line 2972, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-title { + font-size: 20px; + font-weight: 500; + margin-right: 1em; +} +/* line 2978, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-content { + padding: 2em 2em 1em; + background: #fff; + margin: 0em; +} +/* line 2984, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-content .note-header > div { + display: inline-block; +} +/* line 2989, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-content .note-text { + letter-spacing: 0.7px; +} +/* line 2992, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .note-content .note-text p { + padding: 0px; +} +/* line 2998, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections { + padding: 0em 1em 0em; +} +/* line 3002, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections .comments-header span { + font-weight: bold; +} +/* line 3005, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { + margin-left: 15px; +} +/* line 3010, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment { + border-top: 1px solid grey; + padding: 15px 10px; + margin-top: 5px; +} +/* line 3015, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, +.notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { + min-height: 200px; + margin-top: 0px; +} +/* line 3021, ../../../scss/_clix_styles.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { + line-height: 0em; +} + +/* Explore badges */ +/* line 3033, ../../../scss/_clix_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 3049, ../../../scss/_clix_styles.scss */ +.badge_ex { + background: #67c1ef; + border-color: #30aae9; + background-image: -webkit-linear-gradient(top, #acddf6, #67c1ef); + background-image: -moz-linear-gradient(top, #acddf6, #67c1ef); + background-image: -o-linear-gradient(top, #acddf6, #67c1ef); + background-image: linear-gradient(to bottom, #acddf6, #67c1ef); +} + +/* line 4120, ../../../scss/_app_styles.scss */ +/* line 3059, ../../../scss/_clix_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 4129, ../../../scss/_app_styles.scss */ +/* line 3069, ../../../scss/_clix_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 4139, ../../../scss/_app_styles.scss */ +/* line 3079, ../../../scss/_clix_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/* Create_Unit styles */ +/* line 3090, ../../../scss/_clix_styles.scss */ +.course_creator_header { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 3097, ../../../scss/_clix_styles.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 3106, ../../../scss/_clix_styles.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 3112, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 3121, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 3125, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 3133, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 3144, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 3152, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 3156, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 3166, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 3171, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 3179, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 3182, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 3191, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 3196, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 3208, ../../../scss/_clix_styles.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 3226, ../../../scss/_clix_styles.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 3234, ../../../scss/_clix_styles.scss */ +.button-hollow-black { + background: #fff; + border: 2px solid #164A7B; + border-radius: 5px; + color: #164A7B; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; +} + +/* line 3244, ../../../scss/_clix_styles.scss */ +.vertically-center { + top: 50%; + transform: translateY(-50%); +} + +/* Unit_Structure styles */ +/* line 3252, ../../../scss/_clix_styles.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 3260, ../../../scss/_clix_styles.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 3264, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 3270, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 3276, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 3281, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 3290, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 3294, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 3299, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 3308, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3315, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 3324, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 3329, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 3332, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 3342, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 3348, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 3356, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 3358, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 3365, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3374, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 3383, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 3393, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 3399, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 3402, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 3411, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 3416, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 3420, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 3422, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 3425, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 3431, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 3446, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 3454, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 3460, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 3469, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 3474, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 3481, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 3486, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3491, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 3493, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 3497, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 3508, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 3513, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 3519, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 3525, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 3532, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 3539, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3550, ../../../scss/_clix_styles.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 3569, ../../../scss/_clix_styles.scss */ +.tile_modal .editor_modal_content .modal_tile .th { + width: 100%; + height: 210px; + box-shadow: none; +} +/* line 3574, ../../../scss/_clix_styles.scss */ +.tile_modal .editor_modal_content .modal_tile .th > img { + height: 180px; + width: 100%; +} +/* line 3579, ../../../scss/_clix_styles.scss */ +.tile_modal .editor_modal_content .modal_tile .th > span { + display: block; + width: 100%; + text-align: center; + line-height: 22px; +} + +/* line 3593, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content > div { + width: 100%; +} +/* line 3595, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content > div > div { + display: inline-block; + vertical-align: top; +} +/* line 3600, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content .app_row { + margin-bottom: 39px; +} +/* line 3603, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content .app_row .app_image { + padding: 10px; +} +/* line 3606, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content .app_row .app_image > div { + border: 1px solid #999; + height: 222px; +} +/* line 3612, ../../../scss/_clix_styles.scss */ +#appModal .editor_modal_content .app_row .app_desc { + padding-left: 10px; +} + +/* line 3621, ../../../scss/_clix_styles.scss */ +.editor_modal .editor_modal_title { + color: #3c5264; +} +/* line 3626, ../../../scss/_clix_styles.scss */ +.editor_modal .editor_modal_actions > a { + display: inline-block; +} +/* line 3629, ../../../scss/_clix_styles.scss */ +.editor_modal .editor_modal_actions > a.close-reveal-modal { + line-height: inherit; + position: inherit; + color: #c601bc; +} + +/* line 3639, ../../../scss/_clix_styles.scss */ +.reveal-modal-overlay, dialog { + padding: 0px; + padding-bottom: 13px; +} + +/* line 3644, ../../../scss/_clix_styles.scss */ +.overlay-title { + margin: 15px 10px 10px 14px; + letter-spacing: -1px; + font-size: 24px; +} +@media only screen and (max-width: 320px) { + /* line 3644, ../../../scss/_clix_styles.scss */ + .overlay-title { + font-size: 16px; + } +} + +/* line 3654, ../../../scss/_clix_styles.scss */ +.custom_dropdown { + position: relative; + z-index: 10; + display: inline-block; +} +/* line 3660, ../../../scss/_clix_styles.scss */ +.custom_dropdown > a { + height: 30px; + display: block; +} +/* line 3666, ../../../scss/_clix_styles.scss */ +.custom_dropdown:hover .dropdown_content { + display: block; +} +/* line 3671, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content { + background-color: #fff; + border-radius: 10px; + display: none; + position: absolute; + top: 30px; + border: 1px solid #ccc; +} +/* line 3679, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content.left_align { + left: -54px; +} +/* line 3683, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content.right_align { + right: -10px; +} +/* line 3687, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content li { + padding: 10px 35px; + list-style: none; + white-space: nowrap; +} +/* line 3692, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content li a { + margin: 0px; + width: 70px; +} +/* line 3697, ../../../scss/_clix_styles.scss */ +.custom_dropdown .dropdown_content li:hover { + background-color: #d5f2ff; +} +/* line 3704, ../../../scss/_clix_styles.scss */ +.custom_dropdown a { + color: #999999; +} + +/* line 3710, ../../../scss/_clix_styles.scss */ +.button-hollow-purple { + background: inherit; + border: 2px solid #c601bc; + border-radius: 5px; + color: #c601bc; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* line 3723, ../../../scss/_clix_styles.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* line 3736, ../../../scss/_clix_styles.scss */ +.button-hollow-blue { + background: inherit; + border: 2px solid #5097b5; + border-radius: 5px; + color: #5097b5; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* line 3747, ../../../scss/_clix_styles.scss */ +.save_edit_activity { + margin-right: 16.9px; + margin-top: 37.3px; +} + +/* line 3752, ../../../scss/_clix_styles.scss */ +.activity-name { + margin-left: 20px; + margin-top: 5px; +} + +/* line 3757, ../../../scss/_clix_styles.scss */ +.activity-name-label { + width: 80%; + margin-left: 20px; + margin-top: 5px; +} + +/* line 3764, ../../../scss/_clix_styles.scss */ +.create_activity_new { + margin-left: -15px; +} + +/* line 3768, ../../../scss/_clix_styles.scss */ +.create-discussion { + position: relative; + margin-bottom: 20px; +} +/* line 3772, ../../../scss/_clix_styles.scss */ +.create-discussion > div { + display: inline-block; + vertical-align: top; + margin: 5px 0px; +} +/* line 3778, ../../../scss/_clix_styles.scss */ +.create-discussion .button { + margin: 5px 0px; +} +/* line 3781, ../../../scss/_clix_styles.scss */ +.create-discussion .ckeditor-content-comment { + width: 85%; + margin-left: 1em; +} +/* line 3785, ../../../scss/_clix_styles.scss */ +.create-discussion .ckeditor-content-comment > div { + display: inline-block; + vertical-align: top; +} +/* line 3790, ../../../scss/_clix_styles.scss */ +.create-discussion .ckeditor-content-comment .ckeditor-reply-area { + width: 90%; +} + +/* line 3797, ../../../scss/_clix_styles.scss */ +#replies-area .ckeditor-content-reply { + margin-top: 1em; + /*width: 97%;*/ +} +/* line 3801, ../../../scss/_clix_styles.scss */ +#replies-area .ckeditor-content-reply .ckeditor-reply-area { + display: inline-block; + width: 90%; + margin-left: 1em; +} +/* line 3806, ../../../scss/_clix_styles.scss */ +#replies-area .ckeditor-content-reply .post-btn-div { + display: inline-block; + vertical-align: top; +} +/* line 3810, ../../../scss/_clix_styles.scss */ +#replies-area .ckeditor-content-reply .post-btn { + background-color: #720f5e; + width: 77px; + margin-left: 17px; +} +/* line 3814, ../../../scss/_clix_styles.scss */ +#replies-area .ckeditor-content-reply .post-btn:hover { + color: #720f5e; + background-color: #ffffff; +} +/* line 3823, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies { + /*background-color:#ddd;*/ + margin-left: 48px; + margin-top: 10px; + padding-bottom: 0em; + border-top: 1px solid #B1B1B1; + width: 80%; +} +/* line 3832, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .reply-btn { + cursor: pointer; + color: grey !important; +} +/* line 3837, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .reply-btn:hover { + color: #000 !important; +} +/* line 3840, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .discussion-title-username { + color: #ffffff !important; + height: 2em; + padding-right: 10px; + padding-left: 10px; + line-height: 1.5em; +} +/* line 3850, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .discussion-footer { + /*background-color:#CCCCCC;*/ + color: gray !important; + height: 2em; + padding-right: 10px; + padding-left: 10px; + border-radius: 0px 0px 5px 5px; + /*background-color: #f2f2f2;*/ +} +/* line 3859, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .discussion-footer > a { + vertical-align: middle; + line-height: 2em; +} +/* line 3865, ../../../scss/_clix_styles.scss */ +#replies-area .disc-replies .discussion-content { + color: #262626; + word-wrap: break-word; + /*background-color: #f2f2f2;*/ +} + +/* line 3877, ../../../scss/_clix_styles.scss */ +.bg-img { + background: url(/static/ndf/images/i2c-bg.png); + height: 100%; + background-size: 100%; + background-repeat: no-repeat; +} + +/* line 3885, ../../../scss/_clix_styles.scss */ +.clix-text { + z-index: -1; +} + +/* line 3888, ../../../scss/_clix_styles.scss */ +.panel-mod { + background-color: transparent; + border: none; +} + +/* line 3893, ../../../scss/_clix_styles.scss */ +.asset_content_upload { + width: 100% !important; +} + +/* line 3897, ../../../scss/_clix_styles.scss */ +#upload_asset { + margin-top: 60px !important; +} + +/* line 3901, ../../../scss/_clix_styles.scss */ +#profile-img { + height: 40px; + margin-right: 5px; +} + +/* line 3906, ../../../scss/_clix_styles.scss */ +.profile-img { + height: 40px; + width: 40px; + margin-right: 5px; + border-radius: 2px; +} + +/* line 3913, ../../../scss/_clix_styles.scss */ +.activity-detail-page { + margin-top: 20px; + margin-left: 15px; +} + +/* line 3918, ../../../scss/_clix_styles.scss */ +.activity-detail-content { + margin-left: 20px !important; +} + +/* line 3922, ../../../scss/_clix_styles.scss */ +.activity-detail-content #scstyle header { + margin-top: 0px !important; +} + +/* line 3926, ../../../scss/_clix_styles.scss */ +.activity-editor { + margin: 50px; + margin-left: 15px; +} + +/* line 3932, ../../../scss/_clix_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; + margin-right: -11px; +} + +/* Tags styles */ +/* line 3955, ../../../scss/_clix_styles.scss */ +.asset-tags-container { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + margin-bottom: 65px; +} +/* line 3962, ../../../scss/_clix_styles.scss */ +.asset-tags-container .tag-input-ele { + margin-left: 17px; + width: 96%; +} +/* line 3967, ../../../scss/_clix_styles.scss */ +.asset-tags-container .added-tags-div { + margin-left: -206px; +} +/* line 3972, ../../../scss/_clix_styles.scss */ +.asset-tags-container #add-tag-btn { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; +} +/* line 3985, ../../../scss/_clix_styles.scss */ +.asset-tags-container #add-tag-btn:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 3993, ../../../scss/_clix_styles.scss */ +.tags-container { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + margin-bottom: 65px; +} +/* line 4001, ../../../scss/_clix_styles.scss */ +.tags-container .add-tag-heading span { + width: 40%; + color: #99aaba; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 2px; + margin-top: 15px; + margin-left: 8px; + font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; +} +/* line 4012, ../../../scss/_clix_styles.scss */ +.tags-container .tag-input-ele { + margin-left: 193px; + width: 54%; +} +/* line 4017, ../../../scss/_clix_styles.scss */ +.tags-container .added-tags-div { + margin-left: 293px !important; + width: 54%; +} +/* line 4022, ../../../scss/_clix_styles.scss */ +.tags-container #add-tag-btn { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; +} +/* line 4035, ../../../scss/_clix_styles.scss */ +.tags-container #add-tag-btn:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 4043, ../../../scss/_clix_styles.scss */ +.activity-lang { + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 45%; + font-size: 14px; +} + +/* +.asset-lang{ + height: 40px; + margin-left: 20px; + width: 99%; +} +*/ +/* line 4060, ../../../scss/_clix_styles.scss */ +.editor-div { + height: 100%; +} + +/* line 4064, ../../../scss/_clix_styles.scss */ +#asset-descid { + margin-bottom: 7px; +} + +/* line 4068, ../../../scss/_clix_styles.scss */ +.page-name { + margin-top: 4px; +} + +/* line 4072, ../../../scss/_clix_styles.scss */ +.asset_list { + margin-left: 30px; +} + +/* line 4076, ../../../scss/_clix_styles.scss */ +.interaction-settings-div { + margin-left: 25px; + margin-top: 10px; +} +/* line 4080, ../../../scss/_clix_styles.scss */ +.interaction-settings-div .yes_no_disc_div { + text-align: center; + font-size: 24px; + font-weight: 300; +} + +/* line 4092, ../../../scss/_clix_styles.scss */ +body { + background-color: #fff; +} + +/* + Styling for the Secondary header 2 +*/ +/* line 4102, ../../../scss/_clix_styles.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 4105, ../../../scss/_clix_styles.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 4113, ../../../scss/_clix_styles.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 4122, ../../../scss/_clix_styles.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 4131, ../../../scss/_clix_styles.scss */ +.activity_player_header .header_title a { + color: #ffc14f; +} +@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { + /* line 4122, ../../../scss/_clix_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 938px); + } +} +@media only screen and (min-device-width: 2131px) { + /* line 4122, ../../../scss/_clix_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 970px); + } +} +@media only screen and (max-device-width: 1024px) { + /* line 4122, ../../../scss/_clix_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 753px); + } +} +/* line 4208, ../../../scss/_clix_styles.scss */ +.activity_player_header .header_icon { + font-size: 16px; + line-height: 45px; + color: #ffc14f; +} +/* line 4214, ../../../scss/_clix_styles.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 4220, ../../../scss/_clix_styles.scss */ +.activity_player_header .header_text_sm_block { + padding: 0px 10px; +} +@media screen and (min-width: 1025px) { + /* line 4220, ../../../scss/_clix_styles.scss */ + .activity_player_header .header_text_sm_block { + padding: 0px 15px; + } +} +@media screen and (min-width: 1025px) { + /* line 4227, ../../../scss/_clix_styles.scss */ + .activity_player_header .lesson-nav { + float: right; + margin-right: 70px; + background-color: rgba(107, 0, 84, 0.97); + } +} +@media screen and (max-width: 1024px) { + /* line 4227, ../../../scss/_clix_styles.scss */ + .activity_player_header .lesson-nav { + background-color: rgba(107, 0, 84, 0.97); + } +} +/* line 4240, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 4246, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 4250, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .header_text_block a { + color: #ffc14f; +} +/* line 4256, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 9px; +} +@media screen and (min-width: 1025px) { + /* line 4256, ../../../scss/_clix_styles.scss */ + .activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 15px; + } +} +/* line 4264, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 7px; +} +@media screen and (min-width: 1025px) { + /* line 4264, ../../../scss/_clix_styles.scss */ + .activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 15px; + } +} +/* line 4273, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 4276, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .back_button i { + color: #71318b; +} +/* line 4282, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 4286, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 4292, ../../../scss/_clix_styles.scss */ +.activity_player_header .lesson-nav .pagination:not(i) { + color: #a983b9; +} + +/* line 4301, ../../../scss/_clix_styles.scss */ +.float-right { + float: right; +} + +/* line 4305, ../../../scss/_clix_styles.scss */ +.float-left { + float: left; +} + +/* +Buddy Vertical Bar Css +*/ +/* line 4314, ../../../scss/_clix_styles.scss */ +.buddy_panel { + position: fixed; + right: 0px; + top: 0px; + width: 70px; + height: 100vh; + padding: 10px; + background-color: rgba(16, 29, 41, 0.64); + overflow-y: auto; + z-index: 100; +} +/* line 4327, ../../../scss/_clix_styles.scss */ +.buddy_panel .add_buddy_icon { + height: 50px; + width: 50px; + border-radius: 4px; + cursor: pointer; +} + +/* line 4335, ../../../scss/_clix_styles.scss */ +.buddy_icon { + border-radius: 4px; + overflow: hidden; + height: 50px; + width: 50px; + cursor: pointer; + margin-bottom: 10px; + position: relative; +} +/* line 4344, ../../../scss/_clix_styles.scss */ +.buddy_icon svg { + height: 50px; + width: 50px; + background-color: #fff; +} +/* line 4350, ../../../scss/_clix_styles.scss */ +.buddy_icon.buddy_inactive:before { + content: ''; + position: absolute; + left: 0px; + top: 0px; + height: 100%; + width: 100%; + display: block; + background: rgba(0, 0, 0, 0.5); +} +/* line 4361, ../../../scss/_clix_styles.scss */ +.buddy_icon .buddy_edit, .buddy_icon .buddy_delete { + display: none; +} +/* line 4366, ../../../scss/_clix_styles.scss */ +.buddy_icon.buddy_editable:hover .buddy_edit { + position: absolute; + background: rgba(255, 255, 255, 0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; +} +/* line 4377, ../../../scss/_clix_styles.scss */ +.buddy_icon.buddy_deleteable:hover .buddy_delete { + position: absolute; + background: rgba(255, 255, 255, 0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; +} + +/* line 4388, ../../../scss/_clix_styles.scss */ +.add_buddy_modal { + padding: 0px; +} +/* line 4390, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_header { + padding: 10px 20px; + position: relative; +} +/* line 4394, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_header .modal_title { + font-size: 25px; + color: #CE7869; + letter-spacing: 0; + line-height: 35px; +} +/* line 4400, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_header .modal_meta { + font-size: 14px; + color: #9DBEDD; + letter-spacing: 0; + line-height: 30px; +} +/* line 4407, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_header .sample_buddy { + position: absolute; + right: 30px; + top: 15px; +} +/* line 4414, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body { + background-color: #101d29; + padding: 10px 20px; + max-height: 500px; + overflow: auto; +} +/* line 4420, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .step_title { + font-size: 20px; + font-weight: 400; + color: #fff; + letter-spacing: 0.9px; + margin: 10px 0px; +} +/* line 4427, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .step_title .step_number { + color: #82A4C3; +} +/* line 4432, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_color_option { + max-width: 75px; + display: inline-block; + vertical-align: top; + margin: 10px 20px; + cursor: pointer; +} +/* line 4439, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_color_option .color_sample { + display: block; + width: 50px; + height: 50px; + border-radius: 100%; + margin: 0px auto; +} +/* line 4447, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_color_option .color_name { + text-transform: capitalize; + font-size: 15px; + color: #82A4C3; + text-align: center; + font-weight: 400; + letter-spacing: 1px; + margin-top: 10px; +} +/* line 4458, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_color_option:hover .color_sample, .add_buddy_modal .modal_body .buddy_color_option.selected .color_sample { + border: 3px solid #bfe0ff; +} +/* line 4464, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_animal { + display: inline-block; + margin: 10px; + cursor: pointer; +} +/* line 4469, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_animal svg { + height: 80px; + width: 80px; +} +/* line 4473, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_animal svg path { + fill: #374B5E; +} +/* line 4478, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_animal .buddy_animal_name { + color: #fff; + text-align: center; + text-transform: capitalize; + letter-spacing: 1px; +} +/* line 4486, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_body .buddy_animal:hover path, .add_buddy_modal .modal_body .buddy_animal.selected path { + fill: #bfe0ff; +} +/* line 4493, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_footer { + height: 70px; + padding: 20px; +} +/* line 4498, ../../../scss/_clix_styles.scss */ +.add_buddy_modal .modal_footer .removeBuddy i { + color: #bd2b2b; + font-size: 25px; +} + +/* + Common css that can be kept at a single place. +*/ +/* line 4513, ../../../scss/_clix_styles.scss */ +.blue_round_button { + background-color: #00a9ee; + color: #fff; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/* line 4522, ../../../scss/_clix_styles.scss */ +.text_button { + background-color: #fff; + color: #949494; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/* line 4532, ../../../scss/_clix_styles.scss */ +.edit_button { + background-color: #fff; + color: #717171; + border-radius: 4px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; + text-transform: none; + margin-top: 10px; + margin-right: -50px; +} +/* line 4542, ../../../scss/_clix_styles.scss */ +.edit_button:hover { + color: #ce7869; +} + +/* line 4551, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 4554, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; +} +/* line 4557, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 10px 10px 9px; + color: #ce7869; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 5px solid transparent; +} +/* line 4568, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + font-weight: bold; + border-bottom: 3px solid #ffc14e; +} + +/* line 4577, ../../../scss/_clix_styles.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 4584, ../../../scss/_clix_styles.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 4588, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 4594, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 4600, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 4605, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 4614, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 4618, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 4623, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 4632, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 4639, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 4648, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 4653, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 4656, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 4666, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 4672, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 4680, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 4682, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 4689, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 4698, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 4707, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 4717, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 4722, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 4725, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 4734, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 4739, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 4743, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 4745, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 4748, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 4754, ../../../scss/_clix_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 4770, ../../../scss/_clix_styles.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + min-width: 910px; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 4776, ../../../scss/_clix_styles.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 4781, ../../../scss/_clix_styles.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 4787, ../../../scss/_clix_styles.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 4793, ../../../scss/_clix_styles.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 4802, ../../../scss/_clix_styles.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 4806, ../../../scss/_clix_styles.scss */ +.activity-title > li > a { + color: black; +} + +/* line 4815, ../../../scss/_clix_styles.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* Rating css */ +/* line 4823, ../../../scss/_clix_styles.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 4825, ../../../scss/_clix_styles.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 4833, ../../../scss/_clix_styles.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 4835, ../../../scss/_clix_styles.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 4841, ../../../scss/_clix_styles.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 4843, ../../../scss/_clix_styles.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 4855, ../../../scss/_clix_styles.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 4862, ../../../scss/_clix_styles.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 4873, ../../../scss/_clix_styles.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 4880, ../../../scss/_clix_styles.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 4888, ../../../scss/_clix_styles.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 4893, ../../../scss/_clix_styles.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/** + * Sass styles related to unit cards + */ +/* line 4912, ../../../scss/_clix_styles.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; + height: 210px; +} +/* line 4926, ../../../scss/_clix_styles.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 4937, ../../../scss/_clix_styles.scss */ +.unit_card .unit_header { + display: table; +} +/* line 4939, ../../../scss/_clix_styles.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; +} +/* line 4947, ../../../scss/_clix_styles.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 20px; + font-weight: 500; + letter-spacing: 0.6px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; +} +/* line 4961, ../../../scss/_clix_styles.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 4977, ../../../scss/_clix_styles.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 4983, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions { + padding: 5px 0px; +} +/* line 4988, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .unit-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 5000, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .unit-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5005, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .unit-card-analytics { + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom: 2px solid #a2238d; +} +/* line 5013, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .unit-card-analytics-points { + background: #ffffff; + color: #a2238d; + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight: bold; + cursor: default; +} +/* line 5024, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .view_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 5032, ../../../scss/_clix_styles.scss */ +.unit_card .unit_actions .view_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/* + Common css + */ +/* line 5043, ../../../scss/_clix_styles.scss */ +.text-button-blue { + background-color: transparent; + color: #00A9EE; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/** + Status styles added for the unit styles. + */ +/* line 5062, ../../../scss/_clix_styles.scss */ +.in-progress-status { + color: #fff; + background-color: #fd9e29; +} + +/* line 5067, ../../../scss/_clix_styles.scss */ +.in-complete-status { + color: #fff; + background-color: #fd9e29; +} + +/* line 5072, ../../../scss/_clix_styles.scss */ +.thumbnail_style { + margin-top: -30px; + margin-left: -30px; +} + +/* line 5077, ../../../scss/_clix_styles.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 5083, ../../../scss/_clix_styles.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + margin-top: -29px; + padding-left: 10px; +} +/* line 5087, ../../../scss/_clix_styles.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 5097, ../../../scss/_clix_styles.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 5102, ../../../scss/_clix_styles.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 5105, ../../../scss/_clix_styles.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 5122, ../../../scss/_clix_styles.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 5136, ../../../scss/_clix_styles.scss */ +.dropdown-settings { + text-align: left; + text-transform: none; + margin-top: 0px; + margin-right: 0px; + width: 198px; + background: white; + border-radius: 1px; +} +/* line 5144, ../../../scss/_clix_styles.scss */ +.dropdown-settings:hover { + color: #ce7869; + border-left: 2px solid #ffc14e; +} + +/* line 5150, ../../../scss/_clix_styles.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 5159, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 5164, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 5170, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 5178, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 5184, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 5193, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 5198, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 5200, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 5203, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 5213, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 5217, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 5220, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 5225, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 5229, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 5240, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 5248, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 5250, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 5253, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 5262, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 5268, ../../../scss/_clix_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/** + * Sass styles related to module cards + */ +/* line 5283, ../../../scss/_clix_styles.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 5293, ../../../scss/_clix_styles.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5297, ../../../scss/_clix_styles.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 5302, ../../../scss/_clix_styles.scss */ +.module_card .card_banner { + width: 250px; + height: 290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 5315, ../../../scss/_clix_styles.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 5320, ../../../scss/_clix_styles.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 5332, ../../../scss/_clix_styles.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 5347, ../../../scss/_clix_styles.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-size: 24px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 5358, ../../../scss/_clix_styles.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 5361, ../../../scss/_clix_styles.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 5366, ../../../scss/_clix_styles.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 5370, ../../../scss/_clix_styles.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 5373, ../../../scss/_clix_styles.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 5377, ../../../scss/_clix_styles.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 5391, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 5397, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 5401, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 5404, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 5408, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 5416, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 5429, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5435, ../../../scss/_clix_styles.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 5459, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; +} +/* line 5467, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 5480, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; +} +/* line 5485, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; +} +/* line 5493, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; +} +/* line 5497, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 5503, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; +} +/* line 5514, ../../../scss/_clix_styles.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; +} + +/* line 5523, ../../../scss/_clix_styles.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 5528, ../../../scss/_clix_styles.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); +} +/* line 5534, ../../../scss/_clix_styles.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; +} +/* line 5537, ../../../scss/_clix_styles.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; +} +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5551, ../../../scss/_clix_styles.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5554, ../../../scss/_clix_styles.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } +} + +/* line 5574, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 5577, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; +} +/* line 5580, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #164a7b; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5591, ../../../scss/_clix_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +/* line 5599, ../../../scss/_clix_styles.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 5607, ../../../scss/_clix_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 5610, ../../../scss/_clix_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 35px; +} +/* line 5612, ../../../scss/_clix_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 5619, ../../../scss/_clix_styles.scss */ +.course-content .course-unit-name { + padding-left: 20px; +} +/* line 5621, ../../../scss/_clix_styles.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 5626, ../../../scss/_clix_styles.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; +} +/* line 5634, ../../../scss/_clix_styles.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 5640, ../../../scss/_clix_styles.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 5647, ../../../scss/_clix_styles.scss */ +.listing-row { + margin-top: 10px !important; +} + +/* line 5651, ../../../scss/_clix_styles.scss */ +.raw_material_asset { + width: auto; + top: -0.50em; + position: absolute; + display: inline-block; + color: #ce7869; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 12px; + border-radius: 4px; + border: 2px solid #ffc14e; + background-color: #eefaff; + letter-spacing: 0.3px; +} + +/* line 5667, ../../../scss/_clix_styles.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} + +/* line 5683, ../../../scss/_clix_styles.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5700, ../../../scss/_clix_styles.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5717, ../../../scss/_clix_styles.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5735, ../../../scss/_clix_styles.scss */ +.lesson-dropdown ul { + display: none; +} + +/* line 5739, ../../../scss/_clix_styles.scss */ +.lesson-dropdown:hover ul { + display: block; +} + +/* line 5743, ../../../scss/_clix_styles.scss */ +.lesson_name_in_export { + list-style: none; +} +/* line 5745, ../../../scss/_clix_styles.scss */ +.lesson_name_in_export:hover { + border-left: 2.5px solid #ce7869; +} + +/* line 5750, ../../../scss/_clix_styles.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 5756, ../../../scss/_clix_styles.scss */ +.lms_explore_head { + width: 100%; + height: 45px; + background-color: #fff; + color: #164A7B; + margin-top: -30px; +} +/* line 5762, ../../../scss/_clix_styles.scss */ +.lms_explore_head > p { + margin-left: 81px; + padding: 12px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 5768, ../../../scss/_clix_styles.scss */ +.lms_explore_head > a { + padding: 12px 85px 3px 0px; +} + +/* line 5772, ../../../scss/_clix_styles.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 5777, ../../../scss/_clix_styles.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 5783, ../../../scss/_clix_styles.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 5788, ../../../scss/_clix_styles.scss */ +.lms_explore_back { + background-color: #fff; +} + +/* line 5792, ../../../scss/_clix_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -23.3px; +} + +/* line 5797, ../../../scss/_clix_styles.scss */ +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; +} +/* line 5802, ../../../scss/_clix_styles.scss */ +.empty-dashboard-message > p { + font-size: 24px; + color: #646464; + margin-bottom: 20px; + text-shadow: 0 1px rgba(255, 255, 255, 0.6); +} +/* line 5808, ../../../scss/_clix_styles.scss */ +.empty-dashboard-message > a { + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; +} +/* line 5821, ../../../scss/_clix_styles.scss */ +.empty-dashboard-message .button-explore-courses { + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; +} + +/* line 5834, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 5841, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 5855, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 5860, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 5868, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 5873, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 5878, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 5883, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 5891, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 5895, ../../../scss/_clix_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 5905, ../../../scss/_clix_styles.scss */ +.input_links { + margin-left: 10px; +} +/* line 5907, ../../../scss/_clix_styles.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 5913, ../../../scss/_clix_styles.scss */ +#course-notification +#status { + width: 100% !important; +} + +/* line 5919, ../../../scss/_clix_styles.scss */ +.add-note-btn { + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +/* line 5930, ../../../scss/_clix_styles.scss */ +.bef-note-btn { + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +/* line 5941, ../../../scss/_clix_styles.scss */ +.edit-note-btn { + float: right; + border: 1px solid #CFCFCF; + padding: 1px 16px; + border-radius: 3px; + color: #A2A2A2; + background-color: #f7f7f7; + width: 85px; +} +/* line 5949, ../../../scss/_clix_styles.scss */ +.edit-note-btn i { + margin-right: 5px; +} + +/* line 5953, ../../../scss/_clix_styles.scss */ +.delete-note-btn { + float: right; + border: 1px solid #CFCFCF; + padding: 1px 6px; + margin-right: 25px; + border-radius: 3px; + color: #A2A2A2; + background-color: #f7f7f7; + width: 85px; +} +/* line 5962, ../../../scss/_clix_styles.scss */ +.delete-note-btn i { + margin-right: 5px; +} + +/* line 5967, ../../../scss/_clix_styles.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 5970, ../../../scss/_clix_styles.scss */ +.jqtree-title > .fa-check-circle-o { + color: green; +} + +/* line 5973, ../../../scss/_clix_styles.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 5976, ../../../scss/_clix_styles.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* line 5980, ../../../scss/_clix_styles.scss */ +.img-height { + height: 150px; + width: 1351px; +} + +/* line 5985, ../../../scss/_clix_styles.scss */ +.wrapper-footer { + box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.1); + border-top: 1px solid #c5c6c7; + padding: 0px 0px 0px 3px; + right: 0; + bottom: 0; + left: 0; + z-index: 10; + max-width: 1200px; + display: flex; + background: rgba(221, 221, 221, 0.18); + clear: both; +} +/* line 6001, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix { + box-sizing: border-box; + max-width: 1200px; + margin-left: auto; + margin-right: auto; + margin: 0 auto; +} +/* line 6009, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos { + float: left; + display: block; + margin-right: 2.35765%; + width: 65.88078%; +} +/* line 6015, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-links-logos { + margin: 10px 0px 0px 18px; +} +/* line 6018, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-links-logos ol { + display: inline; + list-style-type: none; +} +/* line 6021, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li { + float: left; + margin-right: 15px; +} +/* line 6024, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a { + color: #ce7869; +} +/* line 6026, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a:hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; +} +/* line 6037, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-legal { + margin: 0px 0px 0px 20px; +} +/* line 6039, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-legal ol { + display: inline; + list-style-type: none; +} +/* line 6042, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-legal ol li { + float: left; + margin-right: 15px; + display: inline-block; + font-size: 0.6875em; +} +/* line 6047, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-legal ol li > a { + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; +} +/* line 6052, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .nav-legal ol li > a:hover { + color: #777; + border-bottom: 3px solid #c90d97; +} +/* line 6062, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .wrapper-logo { + margin: 13px 0; + display: inline-block; +} +/* line 6065, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .wrapper-logo p { + color: inherit; + margin: 0; + display: inline-block; +} +/* line 6069, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .wrapper-logo p a { + display: inline-block; +} +/* line 6075, ../../../scss/_clix_styles.scss */ +.wrapper-footer #footer-clix .links-logos .wrapper-logo .footer-logo > img { + height: 10px; +} + +/* line 6085, ../../../scss/_clix_styles.scss */ +#overlay { + /* we set all of the properties for are overlay */ + height: 116px; + width: 1024px; + margin: 0 auto; + background: white; + color: #999999; + padding: 28px 10px 10px 0px; + position: absolute; + top: 40%; + left: 10%; + z-index: 1000; + text-align: center; + display: none; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; + border-radius: 10px; +} + +/* line 6105, ../../../scss/_clix_styles.scss */ +#mask { + /* create are mask */ + position: fixed; + top: 0; + left: 0; + background: rgba(0, 0, 0, 0.6); + z-index: 500; + width: 100%; + height: 100%; + display: none; +} + +/* use :target to look for a link to the overlay then we find are mask */ +/* line 6116, ../../../scss/_clix_styles.scss */ +#overlay:target, #overlay:target + #mask { + display: block; + opacity: 1; +} + +/* line 6120, ../../../scss/_clix_styles.scss */ +.close { + /* to make a nice looking pure CSS3 close button */ + display: block; + position: absolute; + top: -20px; + right: -16px; + background: rgba(0, 0, 0, 0.5); + color: white; + height: 40px; + width: 40px; + line-height: 40px; + font-size: 34px; + text-decoration: none; + text-align: center; + font-weight: bold; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + -o-border-radius: 40px; + border-radius: 38px; +} + +/* line 6139, ../../../scss/_clix_styles.scss */ +#open-overlay { + /* open the overlay */ + padding: 0px 0px; + color: gray; + text-decoration: none; + display: inline-block; + margin: 0px; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; +} + +/* line 6150, ../../../scss/_clix_styles.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 6172, ../../../scss/_clix_styles.scss */ +.img-style-land { + margin-top: 28px; + margin-left: -56px; +} + +/* line 6177, ../../../scss/_clix_styles.scss */ +.top-margin-translation { + margin-top: 0px; +} + +/* line 6181, ../../../scss/_clix_styles.scss */ +.activity-editor-header-top { + margin-top: -50px; +} + +/* line 6185, ../../../scss/_clix_styles.scss */ +.add-lesson-top-margin { + margin-top: 5px; +} + +/* line 6188, ../../../scss/_clix_styles.scss */ +.translation-detail-top-margin { + margin-top: 0px; +} + +/* line 6191, ../../../scss/_clix_styles.scss */ +.outer { + width: 100%; + text-align: center; +} + +/* line 6196, ../../../scss/_clix_styles.scss */ +.inner { + display: inline-block !important; +} + +/* line 6201, ../../../scss/_clix_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 6217, ../../../scss/_clix_styles.scss */ +.double-buttons { + margin-top: 100px; + margin-left: 729px; +} + +/* line 6222, ../../../scss/_clix_styles.scss */ +.lesson-form-name { + padding-top: 10px; +} + +/* line 6226, ../../../scss/_clix_styles.scss */ +.lesson-form-desc { + padding-top: 25px; +} + +/* line 6230, ../../../scss/_clix_styles.scss */ +.enroll_chkbox { + transform: scale(1.5); +} + +/* line 6233, ../../../scss/_clix_styles.scss */ +.enroll_all_users { + width: 15% !important; +} + +/* line 6237, ../../../scss/_clix_styles.scss */ +.enrollBtn { + background: #a2238d; + height: 50px; + text-align: center; + color: #ffffff; + /* font-weight: bold; */ + width: 172px; + font-size: 28px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +/* line 6271, ../../../scss/_clix_styles.scss */ +.enroll-act_lbl { + color: #0c2944; +} + +/* line 6276, ../../../scss/_clix_styles.scss */ +.wrkspace { + margin-right: 80px; +} + +/* line 6280, ../../../scss/_clix_styles.scss */ +.status-btn { + background-color: #fff; + margin-right: auto; + padding-bottom: 0px; + text-transform: none; +} +/* line 6285, ../../../scss/_clix_styles.scss */ +.status-btn .disabled { + background-color: #008cba; + border-color: #007095; + color: white; + cursor: default; + opacity: 0.7; + box-shadow: none; +} + +/* line 6295, ../../../scss/_clix_styles.scss */ +.margin-right-50 { + margin-right: 50px; +} + +/* line 6304, ../../../scss/_clix_styles.scss */ +.color-btn { + background-color: #720f5e; + width: 77px; + margin-left: 17px; +} +/* line 6308, ../../../scss/_clix_styles.scss */ +.color-btn:hover { + color: #720f5e; + background-color: #ffffff; +} + +/* line 6314, ../../../scss/_clix_styles.scss */ +.mid_label { + margin-top: 15px; + font-size: 15px; +} + +/* line 6319, ../../../scss/_clix_styles.scss */ +.compulsory { + color: red; + font-size: smaller; +} + +/* line 6324, ../../../scss/_clix_styles.scss */ +.select-drop { + height: auto; +} + +/* line 6328, ../../../scss/_clix_styles.scss */ +.template-select { + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 40%; + font-size: 14px; +} + +/* line 6336, ../../../scss/_clix_styles.scss */ +.white-text { + color: white; +} + +/* line 6341, ../../../scss/_clix_styles.scss */ +.quiz-player .quiz_qtn { + margin-left: 20px !important; + font-size: 20px; +} +/* line 6345, ../../../scss/_clix_styles.scss */ +.quiz-player .question_edit { + margin-left: 20px !important; +} +/* line 6349, ../../../scss/_clix_styles.scss */ +.quiz-player input[type=checkbox], .quiz-player input[type=radio] { + margin-right: 10px; + width: 15px; + height: 15px; +} +/* line 6355, ../../../scss/_clix_styles.scss */ +.quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { + font-size: 22px; + margin-left: 5px; +} +/* line 6360, ../../../scss/_clix_styles.scss */ +.quiz-player .fi-check { + color: green; +} +/* line 6364, ../../../scss/_clix_styles.scss */ +.quiz-player .fi-x { + color: red; +} + +/* line 6369, ../../../scss/_clix_styles.scss */ +.hyperlink-tag { + cursor: pointer; + cursor: pointer; + /* text-align: center; */ + vertical-align: middle; + /* margin: 12px 10px 10px 10px; */ + height: 10px; + margin-left: 79px; + font-size: 24px; + color: #164A7B; +} + +/* line 6381, ../../../scss/_clix_styles.scss */ +.scard { + background: #FFF; + border: 1px solid #AAA; + border-bottom: 3px solid #BBB; + padding: 0px; + margin: 5px; + overflow: hidden; + width: 11rem; + height: 9rem; + /*float:left;*/ +} +/* line 6390, ../../../scss/_clix_styles.scss */ +.scard:hover { + box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); + transition: box-shadow 0.5s ease; +} +/* line 6396, ../../../scss/_clix_styles.scss */ +.scard .scard_header { + text-align: center; + position: fixed; + height: 20rem; + border: 1px solid #AAA; + border-bottom: 3px solid #BBB; + padding: 0px; + margin: 5px; + left: 0px; + right: 0px; + background: #FFF; + padding: 25px 0px 5px 0px; + border-bottom: 5px solid #CCC; + font-size: 20px; + font-weight: bold; +} + +/* line 6413, ../../../scss/_clix_styles.scss */ +.scard-content { + height: 2.7em; + padding: 0.5rem; + margin: 5px; + padding-top: 0.5cm; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + margin-top: -0.3em; + /*height: 8.25rem;*/ + background-color: #3e3e3e; +} +/* line 6424, ../../../scss/_clix_styles.scss */ +.scard-content .scard-title { + font-size: 0.8em; + margin-top: -1em; + float: left; + color: #ececec; + display: inline-block; + text-align: center; +} + +/* line 6437, ../../../scss/_clix_styles.scss */ +.scard-action { + height: height; + font-size: 0.6em; + padding: 0.5rem; + margin: 5px; + padding-top: 0.1cm; + margin-top: -0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + background-color: #CCCCCC; +} + +/* line 6452, ../../../scss/_clix_styles.scss */ +.scard-desc { + font-size: 0.7em; + color: #333333; + height: 40px; + padding: 0.5rem; + margin: 5px; + padding-top: 0.1cm; + margin-top: -0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + background-color: #E6E6E6; + display-inline: block; +} + +/* line 6469, ../../../scss/_clix_styles.scss */ +.scard-image { + padding: 0px; + margin: 0px; + height: 100%; + background-position: center; + background-repeat: no-repeat; + position: relative; + overflow: hidden; + background-color: #f2f2f2; +} +/* line 6478, ../../../scss/_clix_styles.scss */ +.scard-image img { + border-radius: 2px 2px 0 0; + display: block; + margin: 0 auto; + opacity: 0.9; + height: 100%; +} + +/* line 6490, ../../../scss/_clix_styles.scss */ +.published.scard-action { + background: #A6D9CB; +} + +/* line 6494, ../../../scss/_clix_styles.scss */ +.draft.scard-action { + content: "Draft"; + background: #DCDCDC; +} + +/* line 6500, ../../../scss/_clix_styles.scss */ +.scard_footer { + border-top: 1px solid rgba(160, 160, 160, 0.2); + padding: 0.25rem 0.5rem; + color: gray; + font-size: small; + height: 2rem; +} + +/* line 6508, ../../../scss/_clix_styles.scss */ +.auto_width { + width: auto !important; +} + +/* line 6512, ../../../scss/_clix_styles.scss */ +.explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 6515, ../../../scss/_clix_styles.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 6526, ../../../scss/_clix_styles.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 6532, ../../../scss/_clix_styles.scss */ +.explore-settings-drop a { + font-size: 16px; +} +/* line 6535, ../../../scss/_clix_styles.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 6543, ../../../scss/_clix_styles.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 6547, ../../../scss/_clix_styles.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} + +/* line 6554, ../../../scss/_clix_styles.scss */ +.attempts_count { + color: #000000 !important; +} + +/* line 6560, ../../../scss/_clix_styles.scss */ +#course-settings-drop li a { + text-align: left; +} + +/* line 6568, ../../../scss/_clix_styles.scss */ +#asset-settings-drop li a { + text-align: left; +} + +/* line 6575, ../../../scss/_clix_styles.scss */ +.button-bg { + background-color: #74b3dc; +} + +/* Tools page css listing*/ +/* line 6582, ../../../scss/_clix_styles.scss */ +.polaroid { + width: 330px; + background-color: white; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + margin-bottom: 25px; + margin-top: 25px; + padding: 10px 10px 10px 10px; + -moz-transition: all 0.3s; + -webkit-transition: all 0.3s; + transition: all 0.3s; + cursor: pointer; +} + +/* line 6595, ../../../scss/_clix_styles.scss */ +.polaroid:hover img { + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + -o-transform: scale(1.05); + transform: scale(1.05); +} + +/* line 6604, ../../../scss/_clix_styles.scss */ +.container { + text-align: center; + padding: 10px 20px; + border-top: 5px solid #164a7b; + margin-top: 0px; +} +/* line 6610, ../../../scss/_clix_styles.scss */ +.container > p { + color: black; + font-size: 16px; + font-weight: 500; +} + +/* line 6619, ../../../scss/_clix_styles.scss */ +.tool-bg { + background-color: rgba(87, 198, 250, 0.07); +} + +/* line 6622, ../../../scss/_clix_styles.scss */ +.purple-btn { + width: inherit; + text-transform: uppercase; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background-color: #6a0054; + color: #ffffff !important; + border: 2px solid #6a0054; +} + +/* line 6632, ../../../scss/_clix_styles.scss */ +.disable-purple-btn { + width: inherit; + text-transform: uppercase !important; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background: #4b4852; + color: #ffffff !important; + border: 2px solid #4b4852; +} + +/* line 6642, ../../../scss/_clix_styles.scss */ +.user-analytics-data { + margin: 42px 37px 37px 37px; + border: 2px solid #aaaaaa; +} +/* line 6645, ../../../scss/_clix_styles.scss */ +.user-analytics-data .close-reveal-modal { + font-size: 20px; +} + +/* line 6649, ../../../scss/_clix_styles.scss */ +.left-space { + margin-left: 0.5em; +} + +/* line 6657, ../../../scss/_clix_styles.scss */ +.top-right-menu { + margin-right: 80px !important; +} + +/* line 6662, ../../../scss/_clix_styles.scss */ +html, body { + height: 100%; +} + +/* line 6665, ../../../scss/_clix_styles.scss */ +#gbase_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; +} + +/* line 6673, ../../../scss/_clix_styles.scss */ +#base_wrap { + min-height: auto; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 10px; +} + +/* line 6682, ../../../scss/_clix_styles.scss */ +body > footer { + padding: 10px 5px; + position: relative; + background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; +} +/* line 6691, ../../../scss/_clix_styles.scss */ +body > footer ul { + list-style-type: none; + text-decoration: none; +} +/* line 6694, ../../../scss/_clix_styles.scss */ +body > footer ul li { + font-size: 15px; + margin-bottom: 5px; +} +/* line 6699, ../../../scss/_clix_styles.scss */ +body > footer p { + margin: 10px; + font-size: 18px; +} +/* line 6703, ../../../scss/_clix_styles.scss */ +body > footer h2 { + font-size: 25px; +} +/* line 6706, ../../../scss/_clix_styles.scss */ +body > footer li { + color: #bbbbbb; +} +/* line 6709, ../../../scss/_clix_styles.scss */ +body > footer a { + color: #bbbbbb; + margin-top: 0; + padding: 0; + display: inline; +} +/* line 6714, ../../../scss/_clix_styles.scss */ +body > footer a:hover { + text-decoration: none; + color: #ffffff; + margin-top: 0; + padding: 0; + display: inline; +} +/* line 6722, ../../../scss/_clix_styles.scss */ +body > footer .myfooter { + display: table-row; + height: 1px; +} +/* line 6727, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer-section { + color: #ffffff; + text-align: center; +} +/* line 6731, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .inline_mar-right { + display: inline-block; + margin: 0 25px 15px 0; +} +/* line 6736, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_content { + margin: 20px; +} +/* line 6739, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_content .footer-logo { + height: 65px; + width: 150px; +} +/* line 6744, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .links_collapse { + max-height: 78px; + overflow: hidden; + transition: all 0.5s ease-out; +} +/* line 6749, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .links_collapse ul { + display: inline; + padding: 0; + margin: 0px !important; +} +/* line 6755, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont { + display: inline-block; + vertical-align: top; + /*margin: 20px;*/ + text-align: left; +} +/* line 6761, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont .links_show { + max-height: 600px; +} +/* line 6765, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont h4 { + color: #999; +} +/* line 6768, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links { + font-size: 24px; + margin-right: 5px; +} +/* line 6773, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links { + color: #777777; + cursor: pointer; +} +/* line 6776, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 6779, ../../../scss/_clix_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links:hover { + text-decoration: underline; +} +/* line 6786, ../../../scss/_clix_styles.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 6792, ../../../scss/_clix_styles.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 6798, ../../../scss/_clix_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 6804, ../../../scss/_clix_styles.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} + +/* line 6808, ../../../scss/_clix_styles.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 6814, ../../../scss/_clix_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 6819, ../../../scss/_clix_styles.scss */ +.coll-arrows { + cursor: pointer; + display: block; + padding: 0.5rem; +} +/* line 6824, ../../../scss/_clix_styles.scss */ +.coll-arrows:hover { + background-color: #D3D3D3; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index da69486c66..2b8f4f7c9a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -23477,7 +23477,7 @@ th.hide-for-touch { /* * Foundation extensions */ -/* line 37, ../../../scss/_app_styles.scss */ +/* line 38, ../../../scss/_app_styles.scss */ pre { width: 92%; overflow: auto; @@ -23516,61 +23516,61 @@ pre { @import url('../../../fonts/ubuntu/Ubuntu-Medium.ttf'); @import url('../../../fonts/ubuntu/Ubuntu-Regular.ttf'); */ -/* line 75, ../../../scss/_app_styles.scss */ +/* line 76, ../../../scss/_app_styles.scss */ .fixme { opacity: 0.5; } -/* line 78, ../../../scss/_app_styles.scss */ +/* line 79, ../../../scss/_app_styles.scss */ .fixme:hover { opacity: 1; color: inherit; } -/* line 81, ../../../scss/_app_styles.scss */ +/* line 82, ../../../scss/_app_styles.scss */ .fixme:hover:after { content: " fixme"; color: orange; } /* Utility class to display the child spans of this element on hover */ -/* line 90, ../../../scss/_app_styles.scss */ +/* line 91, ../../../scss/_app_styles.scss */ .show-span-on-hover span { display: none; } -/* line 93, ../../../scss/_app_styles.scss */ +/* line 94, ../../../scss/_app_styles.scss */ .show-span-on-hover:hover span { display: inline; } -/* line 99, ../../../scss/_app_styles.scss */ +/* line 100, ../../../scss/_app_styles.scss */ .show-on-hover .show { display: none; z-index: 1000; } -/* line 103, ../../../scss/_app_styles.scss */ +/* line 104, ../../../scss/_app_styles.scss */ .show-on-hover:hover .show { display: block; } /* Utility class to display the next siblings on hoverr */ -/* line 108, ../../../scss/_app_styles.scss */ +/* line 109, ../../../scss/_app_styles.scss */ .extra.app { display: none; } /* Effects */ -/* line 114, ../../../scss/_app_styles.scss */ +/* line 115, ../../../scss/_app_styles.scss */ .drop-shadow { -webkit-box-shadow: 0px 0px 5px 1px black; box-shadow: 0px 0px 5px 1px black; } -/* line 118, ../../../scss/_app_styles.scss */ +/* line 119, ../../../scss/_app_styles.scss */ .rounded { border-radius: 2px; -webkit-border-radius: 2px; } -/* line 122, ../../../scss/_app_styles.scss */ +/* line 123, ../../../scss/_app_styles.scss */ .transition-opacity { transition: opacity .3s ease; -moz-transition: opacity .3s ease; @@ -23579,13 +23579,13 @@ pre { } /*Ratings bar based on http://codepen.io/lsirivong/pen/ekBxI */ -/* line 131, ../../../scss/_app_styles.scss */ +/* line 132, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 133, ../../../scss/_app_styles.scss */ +/* line 134, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -23593,19 +23593,19 @@ pre { unicode-bidi: bidi-override; direction: rtl; } -/* line 141, ../../../scss/_app_styles.scss */ +/* line 142, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 143, ../../../scss/_app_styles.scss */ +/* line 144, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #a9b2b3; } -/* line 149, ../../../scss/_app_styles.scss */ +/* line 150, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 151, ../../../scss/_app_styles.scss */ +/* line 152, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -23618,7 +23618,7 @@ pre { margin: 0; vertical-align: bottom; } -/* line 163, ../../../scss/_app_styles.scss */ +/* line 164, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -23626,32 +23626,32 @@ pre { /* WHITE STAR */ color: #888; } -/* line 170, ../../../scss/_app_styles.scss */ +/* line 171, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 181, ../../../scss/_app_styles.scss */ +/* line 182, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 188, ../../../scss/_app_styles.scss */ +/* line 189, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 196, ../../../scss/_app_styles.scss */ +/* line 197, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 201, ../../../scss/_app_styles.scss */ +/* line 202, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -23660,113 +23660,107 @@ pre { text-shadow: 0 0 1px #333; } -/* line 216, ../../../scss/_app_styles.scss */ +/* line 217, ../../../scss/_app_styles.scss */ .progress .meter { float: left; } -/* line 222, ../../../scss/_app_styles.scss */ -body { - background-color: #F2F2F2; - font-family: 'ubuntu-regular'; -} - -/* line 228, ../../../scss/_app_styles.scss */ +/* line 226, ../../../scss/_app_styles.scss */ #top-headers { margin-bottom: 0.5rem; } -/* line 233, ../../../scss/_app_styles.scss */ +/* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { background-color: #3e3e3e; } @media only screen and (min-width: 40.063em) { - /* line 233, ../../../scss/_app_styles.scss */ + /* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { height: auto; } } -/* line 243, ../../../scss/_app_styles.scss */ +/* line 241, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a { height: auto; } -/* line 246, ../../../scss/_app_styles.scss */ +/* line 244, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a img { height: 45px; } -/* line 258, ../../../scss/_app_styles.scss */ +/* line 256, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { color: #ececec; } -/* line 260, ../../../scss/_app_styles.scss */ +/* line 258, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { background-color: #3e3e3e; color: #ececec; } -/* line 267, ../../../scss/_app_styles.scss */ +/* line 265, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #075b60 !important; color: #ececec; } -/* line 274, ../../../scss/_app_styles.scss */ +/* line 272, ../../../scss/_app_styles.scss */ #top-headers #group-level-header { opacity: 0.9; background-color: #E1E1E1; } -/* line 279, ../../../scss/_app_styles.scss */ +/* line 277, ../../../scss/_app_styles.scss */ #top-headers #group-level-header:hover { opacity: 1; transition: 0.1s all; box-shadow: 0px 2px 3px #E1E1E1; } -/* line 287, ../../../scss/_app_styles.scss */ +/* line 285, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #group-apps .back-btn.fi-play:before { transform: rotate(180deg); } -/* line 292, ../../../scss/_app_styles.scss */ +/* line 290, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar { background-color: #fafafa; border-top: solid thin gray; height: 52px; } -/* line 296, ../../../scss/_app_styles.scss */ +/* line 294, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar span { font-size: 1em !important; } -/* line 301, ../../../scss/_app_styles.scss */ +/* line 299, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar img { height: 45px; width: 50px; } -/* line 312, ../../../scss/_app_styles.scss */ +/* line 310, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { background-color: #fafafa !important; color: #000; border-bottom: solid 1px gray !important; } -/* line 318, ../../../scss/_app_styles.scss */ +/* line 316, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { background-color: #075b60 !important; } -/* line 322, ../../../scss/_app_styles.scss */ +/* line 320, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { background-color: #096f75; } -/* line 327, ../../../scss/_app_styles.scss */ +/* line 325, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { background-color: #fafafa; color: gray; } -/* line 334, ../../../scss/_app_styles.scss */ +/* line 332, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #075b60; color: #fff; } -/* line 342, ../../../scss/_app_styles.scss */ +/* line 340, ../../../scss/_app_styles.scss */ #top-headers ul.dropdown { box-shadow: 0px 2px 5px black; opacity: 1; } -/* line 347, ../../../scss/_app_styles.scss */ +/* line 345, ../../../scss/_app_styles.scss */ #top-headers #search_text { border-bottom: solid thin #E1E1E1; background-color: #fafafa; @@ -23779,21 +23773,20 @@ body { box-shadow: none; top: 10px; } -/* line 359, ../../../scss/_app_styles.scss */ +/* line 357, ../../../scss/_app_styles.scss */ #top-headers #search_text:focus { border-bottom-color: #2b2c2d; transition: 1s ease-out; } -/* line 365, ../../../scss/_app_styles.scss */ +/* line 363, ../../../scss/_app_styles.scss */ #top-headers #search-submit { - background-color: #fafafa; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; + /* background-color: #fafafa;*/ + /*color: gray; + top: -3px;*/ + width: 60px; + /* height:-40px;*/ } -/* line 375, ../../../scss/_app_styles.scss */ +/* line 372, ../../../scss/_app_styles.scss */ #top-headers #search-submit:hover { opacity: 1; color: white; @@ -23801,57 +23794,88 @@ body { transition: 0.8s ease-out; } -/* line 413, ../../../scss/_app_styles.scss */ +/* line 410, ../../../scss/_app_styles.scss */ .top-bar .active { background-color: #0b838a !important; } -/* line 419, ../../../scss/_app_styles.scss */ +/* line 416, ../../../scss/_app_styles.scss */ .top-bar .logout { background-color: #f04124 !important; } -/* line 423, ../../../scss/_app_styles.scss */ +/* line 420, ../../../scss/_app_styles.scss */ .top-bar .logout:hover { background-color: #d32a0e !important; transition: background-color 400ms ease-out; } -/* line 465, ../../../scss/_app_styles.scss */ +/* line 460, ../../../scss/_app_styles.scss */ +html, body { + height: 100%; + /* +overflow-x: hidden;*/ +} + +/* line 464, ../../../scss/_app_styles.scss */ +#gbase_wrap { + /*min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; + overflow-x: hidden; +} + +/* line 473, ../../../scss/_app_styles.scss */ +#base_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 -60px; +} + +/* line 484, ../../../scss/_app_styles.scss */ body > footer { padding: 10px 5px; position: relative; background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; } -/* line 471, ../../../scss/_app_styles.scss */ +/* line 494, ../../../scss/_app_styles.scss */ body > footer ul { list-style-type: none; text-decoration: none; } -/* line 474, ../../../scss/_app_styles.scss */ +/* line 497, ../../../scss/_app_styles.scss */ body > footer ul li { font-size: 15px; margin-bottom: 5px; } -/* line 479, ../../../scss/_app_styles.scss */ +/* line 502, ../../../scss/_app_styles.scss */ body > footer p { margin: 10px; font-size: 18px; } -/* line 483, ../../../scss/_app_styles.scss */ +/* line 506, ../../../scss/_app_styles.scss */ body > footer h2 { font-size: 25px; } -/* line 486, ../../../scss/_app_styles.scss */ +/* line 509, ../../../scss/_app_styles.scss */ body > footer li { color: #bbbbbb; } -/* line 489, ../../../scss/_app_styles.scss */ +/* line 512, ../../../scss/_app_styles.scss */ body > footer a { color: #bbbbbb; margin-top: 0; padding: 0; display: inline; } -/* line 494, ../../../scss/_app_styles.scss */ +/* line 517, ../../../scss/_app_styles.scss */ body > footer a:hover { text-decoration: none; color: #ffffff; @@ -23859,95 +23883,147 @@ body > footer a:hover { padding: 0; display: inline; } -/* line 504, ../../../scss/_app_styles.scss */ +/* line 525, ../../../scss/_app_styles.scss */ +body > footer .myfooter { + display: table-row; + height: 1px; +} +/* line 530, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer-section { color: #ffffff; text-align: center; } -/* line 508, ../../../scss/_app_styles.scss */ +/* line 534, ../../../scss/_app_styles.scss */ body > footer .myfooter .inline_mar-right { display: inline-block; margin: 0 25px 15px 0; } -/* line 513, ../../../scss/_app_styles.scss */ +/* line 539, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content { margin: 20px; } -/* line 516, ../../../scss/_app_styles.scss */ +/* line 542, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content .footer-logo { height: 65px; width: 150px; } -/* line 521, ../../../scss/_app_styles.scss */ +/* line 547, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse { max-height: 78px; overflow: hidden; transition: all 0.5s ease-out; } -/* line 526, ../../../scss/_app_styles.scss */ +/* line 552, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse ul { display: inline; padding: 0; margin: 0px !important; } -/* line 532, ../../../scss/_app_styles.scss */ +/* line 558, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - margin: 20px; text-align: left; } -/* line 538, ../../../scss/_app_styles.scss */ +/* line 563, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 542, ../../../scss/_app_styles.scss */ +/* line 567, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .flinks { + font-size: 20px; + color: #999; + line-height: 1px; +} +/* line 572, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { + font-size: 24px; + margin-right: 5px; +} +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 546, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 583, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } +/* line 590, ../../../scss/_app_styles.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 596, ../../../scss/_app_styles.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 602, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 608, ../../../scss/_app_styles.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} + +/* line 612, ../../../scss/_app_styles.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 618, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} -/* line 555, ../../../scss/_app_styles.scss */ +/* line 623, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 560, ../../../scss/_app_styles.scss */ +/* line 628, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 566, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 569, ../../../scss/_app_styles.scss */ +/* line 638, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 573, ../../../scss/_app_styles.scss */ +/* line 642, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 644, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 577, ../../../scss/_app_styles.scss */ +/* line 646, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 583, ../../../scss/_app_styles.scss */ +/* line 652, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -23956,135 +24032,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 587, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 590, ../../../scss/_app_styles.scss */ +/* line 659, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 595, ../../../scss/_app_styles.scss */ +/* line 664, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 669, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 604, ../../../scss/_app_styles.scss */ +/* line 673, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 612, ../../../scss/_app_styles.scss */ +/* line 681, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 618, ../../../scss/_app_styles.scss */ +/* line 687, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 695, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 639, ../../../scss/_app_styles.scss */ +/* line 708, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 647, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 719, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 723, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 658, ../../../scss/_app_styles.scss */ +/* line 727, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 731, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 669, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 672, ../../../scss/_app_styles.scss */ +/* line 741, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 754, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 690, ../../../scss/_app_styles.scss */ +/* line 759, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 692, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 695, ../../../scss/_app_styles.scss */ +/* line 764, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 708, ../../../scss/_app_styles.scss */ +/* line 777, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 713, ../../../scss/_app_styles.scss */ +/* line 782, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 726, ../../../scss/_app_styles.scss */ +/* line 795, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 732, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 735, ../../../scss/_app_styles.scss */ +/* line 804, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24094,13 +24170,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 745, ../../../scss/_app_styles.scss */ +/* line 814, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 755, ../../../scss/_app_styles.scss */ +/* line 824, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24111,51 +24187,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 767, ../../../scss/_app_styles.scss */ +/* line 836, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 778, ../../../scss/_app_styles.scss */ +/* line 847, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 783, ../../../scss/_app_styles.scss */ +/* line 852, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 788, ../../../scss/_app_styles.scss */ +/* line 857, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 862, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 798, ../../../scss/_app_styles.scss */ +/* line 867, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 804, ../../../scss/_app_styles.scss */ +/* line 873, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 810, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 813, ../../../scss/_app_styles.scss */ +/* line 882, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 818, ../../../scss/_app_styles.scss */ +/* line 887, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24164,28 +24240,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 827, ../../../scss/_app_styles.scss */ +/* line 896, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 832, ../../../scss/_app_styles.scss */ +/* line 901, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 836, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 839, ../../../scss/_app_styles.scss */ +/* line 908, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 914, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24193,23 +24269,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 851, ../../../scss/_app_styles.scss */ +/* line 920, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 924, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 859, ../../../scss/_app_styles.scss */ +/* line 928, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 864, ../../../scss/_app_styles.scss */ +/* line 933, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24219,7 +24295,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 875, ../../../scss/_app_styles.scss */ +/* line 944, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24228,40 +24304,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 888, ../../../scss/_app_styles.scss */ +/* line 957, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 890, ../../../scss/_app_styles.scss */ +/* line 959, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 963, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 898, ../../../scss/_app_styles.scss */ +/* line 967, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 902, ../../../scss/_app_styles.scss */ +/* line 971, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 975, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 981, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 919, ../../../scss/_app_styles.scss */ +/* line 988, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24270,31 +24346,31 @@ article section.content { } /* Default card */ -/* line 927, ../../../scss/_app_styles.scss */ +/* line 996, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 932, ../../../scss/_app_styles.scss */ +/* line 1001, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 940, ../../../scss/_app_styles.scss */ +/* line 1009, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 944, ../../../scss/_app_styles.scss */ +/* line 1013, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 952, ../../../scss/_app_styles.scss */ +/* line 1021, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24302,20 +24378,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 961, ../../../scss/_app_styles.scss */ +/* line 1030, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 1034, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 1038, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 981, ../../../scss/_app_styles.scss */ +/* line 1050, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24336,39 +24412,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1001, ../../../scss/_app_styles.scss */ +/* line 1070, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1006, ../../../scss/_app_styles.scss */ +/* line 1075, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1010, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1013, ../../../scss/_app_styles.scss */ +/* line 1082, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1017, ../../../scss/_app_styles.scss */ +/* line 1086, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1021, ../../../scss/_app_styles.scss */ +/* line 1090, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1029, ../../../scss/_app_styles.scss */ +/* line 1098, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24376,13 +24452,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1105, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1041, ../../../scss/_app_styles.scss */ +/* line 1110, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24396,13 +24472,13 @@ input.node-title { } /*for graph and location*/ -/* line 1051, ../../../scss/_app_styles.scss */ +/* line 1120, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1056, ../../../scss/_app_styles.scss */ +/* line 1125, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24413,7 +24489,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1067, ../../../scss/_app_styles.scss */ +/* line 1136, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24426,7 +24502,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1082, ../../../scss/_app_styles.scss */ +/* line 1151, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24436,102 +24512,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1093, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1165, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1100, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1106, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1109, ../../../scss/_app_styles.scss */ +/* line 1178, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1121, ../../../scss/_app_styles.scss */ +/* line 1190, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1128, ../../../scss/_app_styles.scss */ +/* line 1197, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1203, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1142, ../../../scss/_app_styles.scss */ +/* line 1211, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1146, ../../../scss/_app_styles.scss */ +/* line 1215, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1152, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1155, ../../../scss/_app_styles.scss */ +/* line 1224, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1159, ../../../scss/_app_styles.scss */ +/* line 1228, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1164, ../../../scss/_app_styles.scss */ +/* line 1233, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1171, ../../../scss/_app_styles.scss */ +/* line 1240, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1175, ../../../scss/_app_styles.scss */ +/* line 1244, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1180, ../../../scss/_app_styles.scss */ +/* line 1249, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1186, ../../../scss/_app_styles.scss */ +/* line 1255, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24540,16 +24616,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1264, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1200, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1203, ../../../scss/_app_styles.scss */ +/* line 1272, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24557,7 +24633,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1282, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24567,12 +24643,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1291, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1228, ../../../scss/_app_styles.scss */ +/* line 1297, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24598,7 +24674,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1256, ../../../scss/_app_styles.scss */ +/* line 1325, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24610,12 +24686,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1265, ../../../scss/_app_styles.scss */ +/* line 1334, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1271, ../../../scss/_app_styles.scss */ +/* line 1340, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24633,7 +24709,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1288, ../../../scss/_app_styles.scss */ +/* line 1357, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24646,7 +24722,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1299, ../../../scss/_app_styles.scss */ +/* line 1368, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24656,7 +24732,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1312, ../../../scss/_app_styles.scss */ +/* line 1381, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24670,7 +24746,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1327, ../../../scss/_app_styles.scss */ +/* line 1396, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24686,13 +24762,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1342, ../../../scss/_app_styles.scss */ +/* line 1411, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1347, ../../../scss/_app_styles.scss */ +/* line 1416, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24703,7 +24779,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1356, ../../../scss/_app_styles.scss */ +/* line 1425, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24711,7 +24787,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1365, ../../../scss/_app_styles.scss */ +/* line 1434, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24725,83 +24801,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1382, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1385, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1388, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1391, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1397, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1400, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1403, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1406, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1412, ../../../scss/_app_styles.scss */ +/* line 1481, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1418, ../../../scss/_app_styles.scss */ +/* line 1487, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1422, ../../../scss/_app_styles.scss */ +/* line 1491, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1428, ../../../scss/_app_styles.scss */ +/* line 1497, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1433, ../../../scss/_app_styles.scss */ +/* line 1502, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1437, ../../../scss/_app_styles.scss */ +/* line 1506, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1441, ../../../scss/_app_styles.scss */ +/* line 1510, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24812,7 +24888,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1579, ../../../scss/_app_styles.scss */ +/* line 1648, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24825,26 +24901,26 @@ p { height: 100%; } -/* line 1590, ../../../scss/_app_styles.scss */ +/* line 1659, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1595, ../../../scss/_app_styles.scss */ +/* line 1664, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1600, ../../../scss/_app_styles.scss */ +/* line 1669, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1604, ../../../scss/_app_styles.scss */ +/* line 1673, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24871,12 +24947,12 @@ p { border-top-right-radius: 5px; } -/* line 1630, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1633, ../../../scss/_app_styles.scss */ +/* line 1702, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24885,7 +24961,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1642, ../../../scss/_app_styles.scss */ +/* line 1711, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24899,7 +24975,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1660, ../../../scss/_app_styles.scss */ +/* line 1729, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24907,56 +24983,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1740, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1676, ../../../scss/_app_styles.scss */ +/* line 1745, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1682, ../../../scss/_app_styles.scss */ +/* line 1751, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1689, ../../../scss/_app_styles.scss */ +/* line 1758, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1693, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1696, ../../../scss/_app_styles.scss */ +/* line 1765, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1702, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1705, ../../../scss/_app_styles.scss */ +/* line 1774, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1711, ../../../scss/_app_styles.scss */ +/* line 1780, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1717, ../../../scss/_app_styles.scss */ +/* line 1786, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1724, ../../../scss/_app_styles.scss */ +/* line 1793, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24964,15 +25040,15 @@ p { font-size: small; height: 2rem; } -/* line 1731, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1734, ../../../scss/_app_styles.scss */ +/* line 1803, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1748, ../../../scss/_app_styles.scss */ +/* line 1817, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -24980,7 +25056,7 @@ p { height: 8em; overflow: hidden; } -/* line 1758, ../../../scss/_app_styles.scss */ +/* line 1827, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -24992,7 +25068,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1771, ../../../scss/_app_styles.scss */ +/* line 1840, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25002,14 +25078,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1783, ../../../scss/_app_styles.scss */ +/* line 1852, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1792, ../../../scss/_app_styles.scss */ +/* line 1861, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25023,51 +25099,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1809, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1810, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1811, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1813, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1814, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1816, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1817, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1818, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1819, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1820, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1823, ../../../scss/_app_styles.scss */ +/* line 1892, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25080,59 +25156,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1836, ../../../scss/_app_styles.scss */ +/* line 1905, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1841, ../../../scss/_app_styles.scss */ +/* line 1910, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1845, ../../../scss/_app_styles.scss */ +/* line 1914, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1853, ../../../scss/_app_styles.scss */ +/* line 1922, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1857, ../../../scss/_app_styles.scss */ +/* line 1926, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1862, ../../../scss/_app_styles.scss */ +/* line 1931, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1866, ../../../scss/_app_styles.scss */ +/* line 1935, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1871, ../../../scss/_app_styles.scss */ +/* line 1940, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1875, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1947, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1954, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25143,7 +25219,7 @@ p { transform: rotate(30deg); } -/* line 1899, ../../../scss/_app_styles.scss */ +/* line 1968, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25151,19 +25227,17 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1907, ../../../scss/_app_styles.scss */ -.allow.draft { - background-size: 10%; - background-repeat: repeat; - background-image: url("/static/ndf/images/draft-watermark.png"); -} - -/* line 1915, ../../../scss/_app_styles.scss */ +/*.allow.draft{ + background-size: 10%; + background-repeat:repeat; + background-image:url("/static/ndf/images/draft-watermark.png"); +}*/ +/* line 1984, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1989, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25176,7 +25250,7 @@ p { text-align: center; } -/* line 1932, ../../../scss/_app_styles.scss */ +/* line 2001, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25188,12 +25262,12 @@ p { margin-left: 4px; } -/* line 1943, ../../../scss/_app_styles.scss */ +/* line 2012, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 1947, ../../../scss/_app_styles.scss */ +/* line 2016, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25203,14 +25277,14 @@ p { max-width: calc(70rem + 70px); } -/* line 1956, ../../../scss/_app_styles.scss */ +/* line 2025, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 1962, ../../../scss/_app_styles.scss */ +/* line 2031, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25221,7 +25295,7 @@ p { border: thin solid #D3D3D3; } -/* line 1972, ../../../scss/_app_styles.scss */ +/* line 2041, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25229,26 +25303,26 @@ p { transition: all 0.6s ease 0s; } -/* line 1979, ../../../scss/_app_styles.scss */ +/* line 2048, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 1985, ../../../scss/_app_styles.scss */ +/* line 2054, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 1989, ../../../scss/_app_styles.scss */ +/* line 2058, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 1996, ../../../scss/_app_styles.scss */ +/* line 2065, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25264,58 +25338,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2015, ../../../scss/_app_styles.scss */ +/* line 2084, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2021, ../../../scss/_app_styles.scss */ +/* line 2090, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2025, ../../../scss/_app_styles.scss */ +/* line 2094, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2031, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2034, ../../../scss/_app_styles.scss */ +/* line 2103, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2038, ../../../scss/_app_styles.scss */ +/* line 2107, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2043, ../../../scss/_app_styles.scss */ +/* line 2112, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2050, ../../../scss/_app_styles.scss */ +/* line 2119, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2054, ../../../scss/_app_styles.scss */ +/* line 2123, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2059, ../../../scss/_app_styles.scss */ +/* line 2128, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2065, ../../../scss/_app_styles.scss */ +/* line 2134, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25323,16 +25397,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2073, ../../../scss/_app_styles.scss */ +/* line 2142, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2078, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2081, ../../../scss/_app_styles.scss */ +/* line 2150, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25342,7 +25416,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2091, ../../../scss/_app_styles.scss */ +/* line 2160, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25351,12 +25425,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2099, ../../../scss/_app_styles.scss */ +/* line 2168, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2174, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25364,7 +25438,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2113, ../../../scss/_app_styles.scss */ + /* line 2182, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25372,7 +25446,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2121, ../../../scss/_app_styles.scss */ + /* line 2190, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25380,7 +25454,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2129, ../../../scss/_app_styles.scss */ + /* line 2198, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25388,20 +25462,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2137, ../../../scss/_app_styles.scss */ + /* line 2206, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2143, ../../../scss/_app_styles.scss */ +/* line 2212, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2149, ../../../scss/_app_styles.scss */ +/* line 2218, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25409,7 +25483,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2157, ../../../scss/_app_styles.scss */ +/* line 2226, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25423,12 +25497,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2171, ../../../scss/_app_styles.scss */ +/* line 2240, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2175, ../../../scss/_app_styles.scss */ +/* line 2244, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25438,11 +25512,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2184, ../../../scss/_app_styles.scss */ +/* line 2253, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2188, ../../../scss/_app_styles.scss */ +/* line 2257, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25451,17 +25525,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2195, ../../../scss/_app_styles.scss */ +/* line 2264, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2201, ../../../scss/_app_styles.scss */ +/* line 2270, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2206, ../../../scss/_app_styles.scss */ +/* line 2275, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25469,20 +25543,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2212, ../../../scss/_app_styles.scss */ +/* line 2281, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2214, ../../../scss/_app_styles.scss */ +/* line 2283, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2218, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2219, ../../../scss/_app_styles.scss */ +/* line 2288, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25490,11 +25564,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2225, ../../../scss/_app_styles.scss */ +/* line 2294, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2232, ../../../scss/_app_styles.scss */ +/* line 2301, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25505,30 +25579,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2311, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2249, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2252, ../../../scss/_app_styles.scss */ +/* line 2321, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2259, ../../../scss/_app_styles.scss */ +/* line 2328, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2264, ../../../scss/_app_styles.scss */ +/* line 2333, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2337, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25538,27 +25612,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2278, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2350, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2354, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2361, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2297, ../../../scss/_app_styles.scss */ +/* line 2366, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25570,7 +25644,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2308, ../../../scss/_app_styles.scss */ +/* line 2377, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25580,7 +25654,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2317, ../../../scss/_app_styles.scss */ +/* line 2386, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25588,25 +25662,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2325, ../../../scss/_app_styles.scss */ +/* line 2394, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2329, ../../../scss/_app_styles.scss */ +/* line 2398, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2342, ../../../scss/_app_styles.scss */ +/* line 2411, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2349, ../../../scss/_app_styles.scss */ +/* line 2418, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25615,69 +25689,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2357, ../../../scss/_app_styles.scss */ +/* line 2426, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2361, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2367, ../../../scss/_app_styles.scss */ +/* line 2436, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2374, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2377, ../../../scss/_app_styles.scss */ +/* line 2446, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2381, ../../../scss/_app_styles.scss */ +/* line 2450, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2394, ../../../scss/_app_styles.scss */ +/* line 2463, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2400, ../../../scss/_app_styles.scss */ +/* line 2469, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2404, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2407, ../../../scss/_app_styles.scss */ +/* line 2476, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2414, ../../../scss/_app_styles.scss */ +/* line 2483, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2421, ../../../scss/_app_styles.scss */ +/* line 2490, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2429, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25712,23 +25786,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2430, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2433, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2436, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2439, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2442, ../../../scss/_app_styles.scss */ +/* line 2511, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25737,45 +25811,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2450, ../../../scss/_app_styles.scss */ +/* line 2519, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2456, ../../../scss/_app_styles.scss */ +/* line 2525, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2464, ../../../scss/_app_styles.scss */ +/* line 2533, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2472, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2475, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2478, ../../../scss/_app_styles.scss */ +/* line 2547, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2483, ../../../scss/_app_styles.scss */ +/* line 2552, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25784,17 +25858,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2491, ../../../scss/_app_styles.scss */ +/* line 2560, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2501, ../../../scss/_app_styles.scss */ +/* line 2570, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2505, ../../../scss/_app_styles.scss */ +/* line 2574, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25802,11 +25876,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2512, ../../../scss/_app_styles.scss */ +/* line 2581, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2516, ../../../scss/_app_styles.scss */ +/* line 2585, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25816,7 +25890,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2526, ../../../scss/_app_styles.scss */ +/* line 2595, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25825,58 +25899,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2619, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2552, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2555, ../../../scss/_app_styles.scss */ +/* line 2624, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2560, ../../../scss/_app_styles.scss */ +/* line 2629, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2564, ../../../scss/_app_styles.scss */ +/* line 2633, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2571, ../../../scss/_app_styles.scss */ +/* line 2640, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2578, ../../../scss/_app_styles.scss */ +/* line 2647, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2582, ../../../scss/_app_styles.scss */ +/* line 2651, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2586, ../../../scss/_app_styles.scss */ +/* line 2655, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2624, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2696, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25887,7 +25961,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2707, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25897,7 +25971,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2646, ../../../scss/_app_styles.scss */ +/* line 2715, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25908,25 +25982,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2656, ../../../scss/_app_styles.scss */ +/* line 2725, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2662, ../../../scss/_app_styles.scss */ +/* line 2731, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2671, ../../../scss/_app_styles.scss */ +/* line 2740, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2676, ../../../scss/_app_styles.scss */ +/* line 2745, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25935,96 +26009,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2684, ../../../scss/_app_styles.scss */ +/* line 2753, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2693, ../../../scss/_app_styles.scss */ +/* line 2762, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2701, ../../../scss/_app_styles.scss */ +/* line 2770, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2707, ../../../scss/_app_styles.scss */ +/* line 2776, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2709, ../../../scss/_app_styles.scss */ +/* line 2778, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2782, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2719, ../../../scss/_app_styles.scss */ +/* line 2788, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2732, ../../../scss/_app_styles.scss */ +/* line 2801, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2737, ../../../scss/_app_styles.scss */ +/* line 2806, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2746, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2749, ../../../scss/_app_styles.scss */ +/* line 2818, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2755, ../../../scss/_app_styles.scss */ +/* line 2824, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2762, ../../../scss/_app_styles.scss */ +/* line 2831, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2766, ../../../scss/_app_styles.scss */ +/* line 2835, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2770, ../../../scss/_app_styles.scss */ +/* line 2839, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2775, ../../../scss/_app_styles.scss */ +/* line 2844, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26033,12 +26107,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2789, ../../../scss/_app_styles.scss */ +/* line 2858, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2793, ../../../scss/_app_styles.scss */ +/* line 2862, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26050,45 +26124,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2805, ../../../scss/_app_styles.scss */ +/* line 2874, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2811, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2814, ../../../scss/_app_styles.scss */ +/* line 2883, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2820, ../../../scss/_app_styles.scss */ +/* line 2889, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2830, ../../../scss/_app_styles.scss */ +/* line 2899, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2835, ../../../scss/_app_styles.scss */ +/* line 2904, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2840, ../../../scss/_app_styles.scss */ +/* line 2909, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2847, ../../../scss/_app_styles.scss */ +/* line 2916, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26096,42 +26170,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2857, ../../../scss/_app_styles.scss */ +/* line 2926, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2863, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2866, ../../../scss/_app_styles.scss */ +/* line 2935, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2871, ../../../scss/_app_styles.scss */ +/* line 2940, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2876, ../../../scss/_app_styles.scss */ +/* line 2945, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2886, ../../../scss/_app_styles.scss */ +/* line 2955, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2890, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2893, ../../../scss/_app_styles.scss */ +/* line 2962, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26141,12 +26215,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2971, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2906, ../../../scss/_app_styles.scss */ +/* line 2975, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26155,22 +26229,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2917, ../../../scss/_app_styles.scss */ +/* line 2986, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2923, ../../../scss/_app_styles.scss */ +/* line 2992, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2928, ../../../scss/_app_styles.scss */ +/* line 2997, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26178,53 +26252,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 2936, ../../../scss/_app_styles.scss */ +/* line 3005, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 2940, ../../../scss/_app_styles.scss */ +/* line 3009, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 2946, ../../../scss/_app_styles.scss */ +/* line 3015, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 3022, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 2955, ../../../scss/_app_styles.scss */ +/* line 3024, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 2964, ../../../scss/_app_styles.scss */ +/* line 3033, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 2970, ../../../scss/_app_styles.scss */ +/* line 3039, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 2975, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 2978, ../../../scss/_app_styles.scss */ +/* line 3047, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 2982, ../../../scss/_app_styles.scss */ +/* line 3051, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2987, ../../../scss/_app_styles.scss */ +/* line 3056, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26232,114 +26306,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 2994, ../../../scss/_app_styles.scss */ +/* line 3063, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3001, ../../../scss/_app_styles.scss */ +/* line 3070, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3005, ../../../scss/_app_styles.scss */ +/* line 3074, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3012, ../../../scss/_app_styles.scss */ +/* line 3081, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3017, ../../../scss/_app_styles.scss */ +/* line 3086, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3023, ../../../scss/_app_styles.scss */ +/* line 3092, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3028, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3100, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3106, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3114, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3052, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3055, ../../../scss/_app_styles.scss */ +/* line 3124, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3060, ../../../scss/_app_styles.scss */ +/* line 3129, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3066, ../../../scss/_app_styles.scss */ +/* line 3135, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3070, ../../../scss/_app_styles.scss */ +/* line 3139, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3078, ../../../scss/_app_styles.scss */ +/* line 3147, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3085, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3094, ../../../scss/_app_styles.scss */ +/* line 3163, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3099, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3102, ../../../scss/_app_styles.scss */ +/* line 3171, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26347,102 +26421,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3111, ../../../scss/_app_styles.scss */ +/* line 3180, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3116, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3121, ../../../scss/_app_styles.scss */ +/* line 3190, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3128, ../../../scss/_app_styles.scss */ +/* line 3197, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3136, ../../../scss/_app_styles.scss */ +/* line 3205, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3142, ../../../scss/_app_styles.scss */ +/* line 3211, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3146, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3149, ../../../scss/_app_styles.scss */ +/* line 3218, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3154, ../../../scss/_app_styles.scss */ +/* line 3223, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3159, ../../../scss/_app_styles.scss */ +/* line 3228, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3165, ../../../scss/_app_styles.scss */ +/* line 3234, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3175, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3247, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3182, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3185, ../../../scss/_app_styles.scss */ +/* line 3254, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3189, ../../../scss/_app_styles.scss */ +/* line 3258, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3269, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3208, ../../../scss/_app_styles.scss */ +/* line 3277, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26450,33 +26524,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3215, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3219, ../../../scss/_app_styles.scss */ +/* line 3288, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3224, ../../../scss/_app_styles.scss */ +/* line 3293, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3230, ../../../scss/_app_styles.scss */ +/* line 3299, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3236, ../../../scss/_app_styles.scss */ +/* line 3305, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3240, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3243, ../../../scss/_app_styles.scss */ +/* line 3312, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26486,73 +26560,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3321, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3257, ../../../scss/_app_styles.scss */ +/* line 3326, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3264, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3336, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3274, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3281, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3284, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3287, ../../../scss/_app_styles.scss */ +/* line 3356, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3360, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3296, ../../../scss/_app_styles.scss */ +/* line 3365, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3300, ../../../scss/_app_styles.scss */ +/* line 3369, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3313, ../../../scss/_app_styles.scss */ +/* line 3382, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3318, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26560,11 +26634,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3329, ../../../scss/_app_styles.scss */ +/* line 3398, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3333, ../../../scss/_app_styles.scss */ +/* line 3402, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26575,17 +26649,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3343, ../../../scss/_app_styles.scss */ +/* line 3412, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3417, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3353, ../../../scss/_app_styles.scss */ +/* line 3422, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26594,11 +26668,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3361, ../../../scss/_app_styles.scss */ +/* line 3430, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3366, ../../../scss/_app_styles.scss */ +/* line 3435, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26609,24 +26683,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3449, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3384, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3387, ../../../scss/_app_styles.scss */ +/* line 3456, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3395, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26690,49 +26764,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3459, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3531, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3464, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3468, ../../../scss/_app_styles.scss */ +/* line 3537, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3473, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3477, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3481, ../../../scss/_app_styles.scss */ +/* line 3550, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3488, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3491, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3497, ../../../scss/_app_styles.scss */ +/* line 3566, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26740,7 +26814,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3506, ../../../scss/_app_styles.scss */ +/* line 3575, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26752,32 +26826,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3517, ../../../scss/_app_styles.scss */ +/* line 3586, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3521, ../../../scss/_app_styles.scss */ +/* line 3590, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3525, ../../../scss/_app_styles.scss */ +/* line 3594, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3533, ../../../scss/_app_styles.scss */ +/* line 3602, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3538, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3542, ../../../scss/_app_styles.scss */ +/* line 3611, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26798,31 +26872,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3546, ../../../scss/_app_styles.scss */ +/* line 3615, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3553, ../../../scss/_app_styles.scss */ +/* line 3622, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3560, ../../../scss/_app_styles.scss */ +/* line 3629, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3565, ../../../scss/_app_styles.scss */ +/* line 3634, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3571, ../../../scss/_app_styles.scss */ +/* line 3640, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26832,13 +26906,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3582, ../../../scss/_app_styles.scss */ +/* line 3651, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3587, ../../../scss/_app_styles.scss */ +/* line 3656, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26847,17 +26921,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3595, ../../../scss/_app_styles.scss */ +/* line 3664, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3599, ../../../scss/_app_styles.scss */ +/* line 3668, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3607, ../../../scss/_app_styles.scss */ +/* line 3676, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26865,20 +26939,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3637, ../../../scss/_app_styles.scss */ +/* line 3706, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3641, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3644, ../../../scss/_app_styles.scss */ +/* line 3713, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3718, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26886,71 +26960,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3657, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3661, ../../../scss/_app_styles.scss */ +/* line 3730, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3735, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3672, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3675, ../../../scss/_app_styles.scss */ +/* line 3744, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3681, ../../../scss/_app_styles.scss */ +/* line 3750, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3685, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3692, ../../../scss/_app_styles.scss */ +/* line 3761, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3694, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3698, ../../../scss/_app_styles.scss */ +/* line 3767, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3702, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3705, ../../../scss/_app_styles.scss */ +/* line 3774, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3712, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3715, ../../../scss/_app_styles.scss */ +/* line 3784, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26960,17 +27034,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3726, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3729, ../../../scss/_app_styles.scss */ +/* line 3798, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3736, ../../../scss/_app_styles.scss */ +/* line 3805, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26979,58 +27053,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3754, ../../../scss/_app_styles.scss */ +/* line 3823, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3828, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3763, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3766, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3773, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3776, ../../../scss/_app_styles.scss */ +/* line 3845, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3786, ../../../scss/_app_styles.scss */ +/* line 3855, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3792, ../../../scss/_app_styles.scss */ +/* line 3861, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3865, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3800, ../../../scss/_app_styles.scss */ +/* line 3869, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3804, ../../../scss/_app_styles.scss */ +/* line 3873, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27038,27 +27112,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3813, ../../../scss/_app_styles.scss */ +/* line 3882, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3817, ../../../scss/_app_styles.scss */ +/* line 3886, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3825, ../../../scss/_app_styles.scss */ +/* line 3894, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3899, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27066,11 +27140,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3838, ../../../scss/_app_styles.scss */ +/* line 3907, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27078,18 +27152,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3850, ../../../scss/_app_styles.scss */ +/* line 3919, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3854, ../../../scss/_app_styles.scss */ +/* line 3923, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3862, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27097,12 +27171,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3870, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3876, ../../../scss/_app_styles.scss */ +/* line 3945, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27111,21 +27185,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3885, ../../../scss/_app_styles.scss */ +/* line 3954, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3890, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3895, ../../../scss/_app_styles.scss */ +/* line 3964, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27136,24 +27210,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3974, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3909, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3912, ../../../scss/_app_styles.scss */ +/* line 3981, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3986, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3990, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27164,7 +27238,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3931, ../../../scss/_app_styles.scss */ +/* line 4000, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27172,15 +27246,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3939, ../../../scss/_app_styles.scss */ +/* line 4008, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3941, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3944, ../../../scss/_app_styles.scss */ +/* line 4013, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27190,27 +27264,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3953, ../../../scss/_app_styles.scss */ +/* line 4022, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 4028, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3966, ../../../scss/_app_styles.scss */ +/* line 4035, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3970, ../../../scss/_app_styles.scss */ +/* line 4039, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3975, ../../../scss/_app_styles.scss */ +/* line 4044, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27231,28 +27305,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3996, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 3999, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4003, ../../../scss/_app_styles.scss */ +/* line 4072, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4009, ../../../scss/_app_styles.scss */ +/* line 4078, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4014, ../../../scss/_app_styles.scss */ +/* line 4083, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27260,12 +27334,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4023, ../../../scss/_app_styles.scss */ +/* line 4092, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27276,14 +27350,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4102, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4038, ../../../scss/_app_styles.scss */ +/* line 4107, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27295,48 +27369,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4048, ../../../scss/_app_styles.scss */ +/* line 4117, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4052, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4055, ../../../scss/_app_styles.scss */ +/* line 4124, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4059, ../../../scss/_app_styles.scss */ +/* line 4128, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4132, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4068, ../../../scss/_app_styles.scss */ +/* line 4137, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4074, ../../../scss/_app_styles.scss */ +/* line 4143, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4080, ../../../scss/_app_styles.scss */ +/* line 4149, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27344,7 +27418,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4087, ../../../scss/_app_styles.scss */ + /* line 4156, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27352,7 +27426,7 @@ course-title { background-color: #999999; } - /* line 4093, ../../../scss/_app_styles.scss */ + /* line 4162, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27362,7 +27436,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4103, ../../../scss/_app_styles.scss */ + /* line 4172, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27370,7 +27444,7 @@ course-title { background-color: #999999; } - /* line 4109, ../../../scss/_app_styles.scss */ + /* line 4178, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27379,14 +27453,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4116, ../../../scss/_app_styles.scss */ +/* line 4185, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4123, ../../../scss/_app_styles.scss */ +/* line 4192, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27403,7 +27477,7 @@ course-title { font-size: 1.8em; } -/* line 4139, ../../../scss/_app_styles.scss */ +/* line 4208, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27413,7 +27487,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4148, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27423,7 +27497,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4157, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27433,7 +27507,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4167, ../../../scss/_app_styles.scss */ +/* line 4236, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27444,12 +27518,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4252, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4187, ../../../scss/_app_styles.scss */ +/* line 4256, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27458,12 +27532,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4195, ../../../scss/_app_styles.scss */ +/* line 4264, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4200, ../../../scss/_app_styles.scss */ +/* line 4269, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27478,31 +27552,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4214, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4217, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4220, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4223, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4226, ../../../scss/_app_styles.scss */ +/* line 4295, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4230, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4235, ../../../scss/_app_styles.scss */ +/* line 4304, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27511,46 +27585,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4243, ../../../scss/_app_styles.scss */ +/* line 4312, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4319, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4255, ../../../scss/_app_styles.scss */ +/* line 4324, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4259, ../../../scss/_app_styles.scss */ +/* line 4328, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4263, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4266, ../../../scss/_app_styles.scss */ +/* line 4335, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4270, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4274, ../../../scss/_app_styles.scss */ +/* line 4343, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4282, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27561,19 +27635,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4362, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4299, ../../../scss/_app_styles.scss */ +/* line 4368, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4305, ../../../scss/_app_styles.scss */ +/* line 4374, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27585,7 +27659,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4316, ../../../scss/_app_styles.scss */ +/* line 4385, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27594,7 +27668,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4325, ../../../scss/_app_styles.scss */ +/* line 4394, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27608,51 +27682,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4339, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4342, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4345, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4348, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4351, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4354, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4357, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4363, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4369, ../../../scss/_app_styles.scss */ +/* line 4438, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4373, ../../../scss/_app_styles.scss */ +/* line 4442, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27663,7 +27737,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4452, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27671,54 +27745,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4391, ../../../scss/_app_styles.scss */ +/* line 4460, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4396, ../../../scss/_app_styles.scss */ +/* line 4465, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4400, ../../../scss/_app_styles.scss */ +/* line 4469, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4404, ../../../scss/_app_styles.scss */ +/* line 4473, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4408, ../../../scss/_app_styles.scss */ +/* line 4477, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4481, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4416, ../../../scss/_app_styles.scss */ +/* line 4485, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4426, ../../../scss/_app_styles.scss */ +/* line 4495, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4499, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4434, ../../../scss/_app_styles.scss */ +/* line 4503, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27729,17 +27803,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4446, ../../../scss/_app_styles.scss */ +/* line 4515, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4519, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4455, ../../../scss/_app_styles.scss */ +/* line 4524, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27751,24 +27825,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4536, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4471, ../../../scss/_app_styles.scss */ + /* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27776,12 +27850,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4479, ../../../scss/_app_styles.scss */ + /* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4490, ../../../scss/_app_styles.scss */ +/* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27792,12 +27866,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4490, ../../../scss/_app_styles.scss */ + /* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4502, ../../../scss/_app_styles.scss */ +/* line 4571, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27808,7 +27882,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4512, ../../../scss/_app_styles.scss */ +/* line 4581, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27816,28 +27890,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4520, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4523, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4526, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4533, ../../../scss/_app_styles.scss */ +/* line 4602, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4539, ../../../scss/_app_styles.scss */ +/* line 4608, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27848,7 +27922,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4550, ../../../scss/_app_styles.scss */ +/* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27856,18 +27930,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4562, ../../../scss/_app_styles.scss */ +/* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27875,40 +27949,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4562, ../../../scss/_app_styles.scss */ + /* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4572, ../../../scss/_app_styles.scss */ +/* line 4641, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4576, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4648, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4585, ../../../scss/_app_styles.scss */ +/* line 4654, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4589, ../../../scss/_app_styles.scss */ +/* line 4658, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4595, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27921,25 +27995,25 @@ course-title { border: 1px solid #eee; } -/* line 4607, ../../../scss/_app_styles.scss */ +/* line 4676, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4611, ../../../scss/_app_styles.scss */ +/* line 4680, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4615, ../../../scss/_app_styles.scss */ +/* line 4684, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4621, ../../../scss/_app_styles.scss */ +/* line 4690, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27948,7 +28022,7 @@ h5 { margin-left: 5px; } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4698, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27957,12 +28031,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4636, ../../../scss/_app_styles.scss */ +/* line 4705, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4640, ../../../scss/_app_styles.scss */ +/* line 4709, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27971,12 +28045,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4647, ../../../scss/_app_styles.scss */ +/* line 4716, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4653, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27988,19 +28062,27 @@ h5 { color: #6153AE; } -/* line 4664, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; margin: 5px 5px 8px 0px; border: 1px solid #6153AE; - background: #fff; - font-size: 23px; + background: #f1f1f1; + font-size: 17px; + margin: 7px 19px; + display: inline-block; color: #6153AE; } +/* line 4745, ../../../scss/_app_styles.scss */ +.add-note-btn:hover { + cursor: pointer; + color: #6153AE; + background-color: #ffffff; +} -/* line 4675, ../../../scss/_app_styles.scss */ +/* line 4753, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28012,7 +28094,3790 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4686, ../../../scss/_app_styles.scss */ +/* line 4764, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } + +/*Blue color variable*/ +/*Orange color variables*/ +/* module detail settings drop */ +/* line 4795, ../../../scss/_app_styles.scss */ +.explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4798, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4809, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4815, ../../../scss/_app_styles.scss */ +.explore-settings-drop a { + font-size: 16px; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4821, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4832, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4838, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop a { + font-size: 16px; +} +/* line 4841, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4849, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4853, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} +/* line 4866, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4870, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} + +/* line 4877, ../../../scss/_app_styles.scss */ +.edit_button { + color: #717171; +} +/* line 4879, ../../../scss/_app_styles.scss */ +.edit_button:hover { + border-left: 2px solid #ce7869; +} + +/* line 4885, ../../../scss/_app_styles.scss */ +.left-btn { + margin-top: 0px; + margin-right: 0px; + text-transform: capitalize; + width: 100%; + background-color: #ffffff; + display: block; + padding: 0.5rem; + color: #555555; + font-size: 11px; +} +/* line 4895, ../../../scss/_app_styles.scss */ +.left-btn:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4904, ../../../scss/_app_styles.scss */ +.chnge-img:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4915, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; +} +/* line 4923, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 4936, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; +} +/* line 4941, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; +} +/* line 4949, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; +} +/* line 4953, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 4959, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; +} +/* line 4970, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; +} + +/* line 4979, ../../../scss/_app_styles.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 4984, ../../../scss/_app_styles.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); +} +/* line 4990, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; +} +/* line 4993, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; +} +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5007, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5010, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } +} + +/* line 5030, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 5033, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; + margin-left: -35px; +} +@media only screen and (max-width: 40em) { + /* line 5033, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + margin-left: 0px; + } +} +/* line 5040, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #164a7b; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5050, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5059, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; + } + /* line 5062, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + /* + display: inline-block;*/ + } + /* line 5065, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a { + list-style-type: none; + /*display: inline-block;*/ + padding: 1px 2px 3px; + color: #164a7b; + cursor: pointer; + font-size: 16px; + letter-spacing: 0.3px; + border-bottom: 2px solid transparent; + } + /* line 5076, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* line 5089, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 5093, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 5096, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 5107, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5115, ../../../scss/_app_styles.scss */ + ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; + } + /* line 5119, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li { + /* display: inline-block;*/ + background-color: #164a7b; + } + /* line 5122, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a { + list-style-type: none; + /*margin-right:-2px;*/ + background-color: #164a7b; + padding: 1px 1px 1px; + cursor: pointer; + font-size: 16px; + /* display: inline-block;*/ + letter-spacing: 0.3px; + border-bottom: 3px solid transparent; + color: #ffffff !important; + } + /* line 5133, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* Secondary Top Bar */ +/* line 5145, ../../../scss/_app_styles.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 5154, ../../../scss/_app_styles.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 5158, ../../../scss/_app_styles.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; + font-weight: 600; +} + +/* line 5168, ../../../scss/_app_styles.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; +} +/* line 5180, ../../../scss/_app_styles.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 5187, ../../../scss/_app_styles.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; + margin-top: -8px; +} + +/* line 5198, ../../../scss/_app_styles.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 5203, ../../../scss/_app_styles.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 5206, ../../../scss/_app_styles.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 5216, ../../../scss/_app_styles.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 5224, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; +} +/* line 5226, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 5237, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 5245, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { + display: none; +} +/* line 5251, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 5262, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 5264, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 5271, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 5278, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5284, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5292, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 5302, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 5311, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 5318, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/** + * Sass styles related to unit cards + */ +/* line 5346, ../../../scss/_app_styles.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; + height: 210px; +} +/* line 5360, ../../../scss/_app_styles.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 5371, ../../../scss/_app_styles.scss */ +.unit_card .unit_header { + display: table; +} +/* line 5373, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; +} +/* line 5381, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 17px; + font-weight: 500; + letter-spacing: 0.5px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + /* white-space: nowrap;*/ + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; +} +/* line 5395, ../../../scss/_app_styles.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 5411, ../../../scss/_app_styles.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 5417, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions { + padding: 5px 0px; +} +/* line 5422, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol { + background: #a2238d; + height: 24px; + text-align: center; + color: #ffffff; + font-size: 18px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 90px !important; + margin-top: 8px !important; + letter-spacing: 0.4px; +} +/* line 5434, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5439, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics { + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom: 2px solid #a2238d; +} +/* line 5447, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics-points { + background: #ffffff; + color: #a2238d; + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight: bold; + cursor: default; +} +/* line 5458, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + margin-left: -20px; +} +/* line 5467, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/* unit cards labels */ +/* line 5477, ../../../scss/_app_styles.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} + +/* line 5493, ../../../scss/_app_styles.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5510, ../../../scss/_app_styles.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5527, ../../../scss/_app_styles.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5545, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5562, ../../../scss/_app_styles.scss */ +.icon-widget { + font-size: 20px; +} +@media only screen and (max-width: 320px) { + /* line 5562, ../../../scss/_app_styles.scss */ + .icon-widget { + font-size: 12px; + } +} + +/* module detail css */ +/* line 5574, ../../../scss/_app_styles.scss */ +.thumbnail_style { + margin-left: -30px; +} + +/* line 5578, ../../../scss/_app_styles.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 5584, ../../../scss/_app_styles.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + padding-left: 10px; + height: auto; + min-height: 143px; +} +/* line 5590, ../../../scss/_app_styles.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 5600, ../../../scss/_app_styles.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 5605, ../../../scss/_app_styles.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 5608, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 5625, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* Creating and editing course Structure */ +/* line 5642, ../../../scss/_app_styles.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 5651, ../../../scss/_app_styles.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 5654, ../../../scss/_app_styles.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 5661, ../../../scss/_app_styles.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 5668, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 5671, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 5674, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 5682, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 5686, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 5688, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 5698, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 5703, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 5709, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 5716, ../../../scss/_app_styles.scss */ +.max-width { + max-width: 100%; +} + +/* line 5722, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 5731, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 5744, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 5753, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 5758, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background-color: #ffffff; +} +/* line 5763, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 5769, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 5773, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 5786, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* Unit_Structure styles */ +/* line 5804, ../../../scss/_app_styles.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 5812, ../../../scss/_app_styles.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 5816, ../../../scss/_app_styles.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 5822, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 5828, ../../../scss/_app_styles.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 5833, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 5842, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5846, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 5851, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 5860, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5867, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 5876, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 5881, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 5884, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 5894, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 5900, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 5908, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 5910, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5917, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5926, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 5935, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 5945, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 5951, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 5954, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 5963, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 5968, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 5972, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 5974, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 5977, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 5983, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 5998, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 6006, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 6012, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 6021, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 6026, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 6033, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6038, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6043, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 6045, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 6049, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 6060, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 6065, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 6071, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 6077, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 6084, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 6091, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6102, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 6119, ../../../scss/_app_styles.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* lesspn listing LMS */ +/* line 6135, ../../../scss/_app_styles.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 6143, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 6146, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 45px; +} +/* line 6148, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 6155, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name { + padding-left: 20px; + /* @media screen and (max-width: 480px) { + margin: 25px 10px; + height: 55px; + + >div { + .jqtree-title { + color: #3c5264; + font-size: 16px; + font-weight: 500; + padding-bottom: 1px; + } + } + + }*/ +} +/* line 6157, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 6162, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + padding-bottom: 2px; +} +/* line 6187, ../../../scss/_app_styles.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 6193, ../../../scss/_app_styles.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 6200, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 6203, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check-circle-o { + color: green; +} + +/* line 6206, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 6209, ../../../scss/_app_styles.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* activity player header */ +/* + Styling for the Secondary header 2 +*/ +/* line 6228, ../../../scss/_app_styles.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 6231, ../../../scss/_app_styles.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6239, ../../../scss/_app_styles.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 6248, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6257, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title a { + color: #ffc14f; +} +@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 938px); + } +} +@media only screen and (min-device-width: 2131px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 970px); + } +} +@media only screen and (max-device-width: 1024px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 753px); + } +} +/* line 6334, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon { + font-size: 16px; + line-height: 45px; + color: #ffc14f; +} +/* line 6340, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 6346, ../../../scss/_app_styles.scss */ +.activity_player_header .header_text_sm_block { + padding: 0px 10px; +} +@media screen and (min-width: 1025px) { + /* line 6346, ../../../scss/_app_styles.scss */ + .activity_player_header .header_text_sm_block { + padding: 0px 15px; + } +} +@media screen and (min-width: 1025px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + float: right; + margin-right: 70px; + background-color: rgba(107, 0, 84, 0.97); + } +} +@media screen and (max-width: 1024px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + background-color: rgba(107, 0, 84, 0.97); + } +} +/* line 6366, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6372, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6376, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block a { + color: #ffc14f; +} +/* line 6382, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 9px; +} +@media screen and (min-width: 1025px) { + /* line 6382, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 15px; + } +} +/* line 6390, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 7px; +} +@media screen and (min-width: 1025px) { + /* line 6390, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 15px; + } +} +/* line 6399, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 6402, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button i { + color: #71318b; +} +/* line 6408, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 6412, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 6418, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .pagination:not(i) { + color: #a983b9; +} + +/* line 6426, ../../../scss/_app_styles.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6433, ../../../scss/_app_styles.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6437, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6443, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6449, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6454, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6463, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6467, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6472, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6481, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6488, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6497, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6502, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6505, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6515, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6521, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6529, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6531, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6538, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6547, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6556, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6566, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6571, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6574, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6583, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6588, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6592, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6594, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6597, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6603, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 6621, ../../../scss/_app_styles.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + min-width: 910px; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 6627, ../../../scss/_app_styles.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 6632, ../../../scss/_app_styles.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 6638, ../../../scss/_app_styles.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 6644, ../../../scss/_app_styles.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 6653, ../../../scss/_app_styles.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 6657, ../../../scss/_app_styles.scss */ +.activity-title > li > a { + color: black; +} + +/* line 6666, ../../../scss/_app_styles.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* Rating css */ +/* line 6674, ../../../scss/_app_styles.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 6676, ../../../scss/_app_styles.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 6684, ../../../scss/_app_styles.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 6686, ../../../scss/_app_styles.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 6692, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 6694, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 6706, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 6713, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 6724, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 6731, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 6739, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 6744, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/* line 6754, ../../../scss/_app_styles.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 6758, ../../../scss/_app_styles.scss */ +.input_links { + margin-left: 10px; +} +/* line 6760, ../../../scss/_app_styles.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 6766, ../../../scss/_app_styles.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 6774, ../../../scss/_app_styles.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 6783, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 6787, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 6793, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 6801, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 6807, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 6816, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 6821, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 6823, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 6826, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 6836, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 6840, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 6843, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 6848, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 6852, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 6863, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 6871, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 6873, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 6876, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 6885, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 6891, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/* line 6900, ../../../scss/_app_styles.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* The asset tile */ +/* line 6910, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 6919, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 6932, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 6941, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 6946, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 6951, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 6957, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 6961, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 6974, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 6989, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7000, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7006, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 7021, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 7025, ../../../scss/_app_styles.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 7034, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7041, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 7047, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 7049, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7056, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 7060, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 7066, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7077, ../../../scss/_app_styles.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 280px; + border: 1px solid #164A7B; +} +/* line 7086, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7093, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 7098, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 7102, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 7112, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 7119, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 7128, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 7135, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 7142, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 7150, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7166, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 7173, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7184, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7195, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7206, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7217, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7233, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 7240, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7251, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7262, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7273, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7284, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 7286, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7294, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 7300, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7311, ../../../scss/_app_styles.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 7321, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 7324, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 7329, ../../../scss/_app_styles.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 7340, ../../../scss/_app_styles.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 7350, ../../../scss/_app_styles.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 7353, ../../../scss/_app_styles.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 7357, ../../../scss/_app_styles.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 7363, ../../../scss/_app_styles.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 7365, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 7374, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7388, ../../../scss/_app_styles.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 750px; + min-height: 445px; + margin-left: 0px; +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + width: 390px; + } +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + min-height: 20px; + } +} + +/* line 7402, ../../../scss/_app_styles.scss */ +.widget_video { + height: 360px; + width: 480px; +} +@media only screen and (max-width: 350px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 290px; + height: 230px; + } +} +@media screen and (min-width: 351px) and (max-width: 850px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 340px; + height: 280px; + } +} + +/* Asset detail */ +/* line 7418, ../../../scss/_app_styles.scss */ +.overlay-head { + height: 60px; + margin-bottom: 20px; +} + +/* line 7424, ../../../scss/_app_styles.scss */ +.listing-row { + margin-top: 10px !important; + background-color: #ffffff; +} + +/* line 7429, ../../../scss/_app_styles.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 7441, ../../../scss/_app_styles.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7448, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +@media screen and (max-width: 325px) { + /* line 7448, ../../../scss/_app_styles.scss */ + .orange-button-template { + font-size: 10px; + } +} +/* line 7462, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7467, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7470, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7473, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7484, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7491, ../../../scss/_app_styles.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 7502, ../../../scss/_app_styles.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* asset description */ +/* line 7511, ../../../scss/_app_styles.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 7518, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7522, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7540, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7556, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7561, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7571, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7578, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7593, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} + +/* line 7604, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 7611, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 7625, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 7630, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 7638, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 7643, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 7648, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 7653, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 7661, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 7665, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 7674, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 7679, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 7685, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 7691, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; +} + +/* line 7698, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7705, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7708, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} + +/* line 7716, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 7735, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 7744, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 7753, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7776, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7781, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 43%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + color: #fff; +} +/* line 7790, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #719dc7; + border: 1px solid #CCC; + border-bottom: 0px; + color: #fff; +} + +/* line 7803, ../../../scss/_app_styles.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 7811, ../../../scss/_app_styles.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; +} +/* line 7822, ../../../scss/_app_styles.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7828, ../../../scss/_app_styles.scss */ +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7835, ../../../scss/_app_styles.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7844, ../../../scss/_app_styles.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 7850, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7859, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 7863, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7871, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 7882, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7890, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 7894, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7904, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 7909, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 7917, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 7920, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 7929, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 7934, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 7946, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 7963, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: 2.7px; +} + +/* line 7968, ../../../scss/_app_styles.scss */ +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; +} +/* line 7974, ../../../scss/_app_styles.scss */ +.empty-dashboard-message > a { + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; +} +/* line 7988, ../../../scss/_app_styles.scss */ +.empty-dashboard-message .button-explore-courses { + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; +} + +/* line 8003, ../../../scss/_app_styles.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 8013, ../../../scss/_app_styles.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8017, ../../../scss/_app_styles.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 8022, ../../../scss/_app_styles.scss */ +.module_card .card_banner { + width: 250px; + height: 290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 8035, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 8040, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 8052, ../../../scss/_app_styles.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 8067, ../../../scss/_app_styles.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-size: 23px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 8078, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 8081, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8086, ../../../scss/_app_styles.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8090, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 8093, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 8097, ../../../scss/_app_styles.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 8111, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 8117, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 8121, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 8124, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 8128, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 8136, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 8149, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8155, ../../../scss/_app_styles.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 8172, ../../../scss/_app_styles.scss */ +.inner { + display: inline-block !important; +} + +/* line 8179, ../../../scss/_app_styles.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 8199, ../../../scss/_app_styles.scss */ +.enrollBtn { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +/*****Toolbar CSS******/ +/* line 8214, ../../../scss/_app_styles.scss */ +#toolbar { + background-color: #3e3e3e; +} + +/* line 8217, ../../../scss/_app_styles.scss */ +.datetime { + color: #eaeaea; + padding: 4px 0px 2px 5px; + font-size: 11px; +} + +/* line 8222, ../../../scss/_app_styles.scss */ +.changefont { + text-align: right; + padding: 2px 5px 1px 0px; +} +/* line 8226, ../../../scss/_app_styles.scss */ +.changefont .minus { + font-size: 60%; + color: #eaeaea; +} +/* line 8229, ../../../scss/_app_styles.scss */ +.changefont .normal { + font-size: 80%; + color: #eaeaea; +} +/* line 8232, ../../../scss/_app_styles.scss */ +.changefont .plus { + font-size: 100%; + color: #eaeaea; +} + +/***********Landing page***************/ +/* line 8241, ../../../scss/_app_styles.scss */ +.about_us { + background: #20ade0; +} + +/* line 8244, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8247, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8257, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8263, ../../../scss/_app_styles.scss */ +.box-content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8276, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8283, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8309, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} + +/* line 8313, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 18px; +} + +/* line 8321, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #107aa1; +} + +/*.searchbar { + margin: 0.8rem; +}*/ +/* line 8330, ../../../scss/_app_styles.scss */ +.search-field { + width: 0; + height: 40px; + margin-left: 1rem; + padding: 0; + border-radius: 50px; + border: none; + transition: all 0.5s ease; +} + +/* line 8340, ../../../scss/_app_styles.scss */ +.expand-search { + width: 80%; + max-width: calc(80% - 3rem); + border: 1px solid #c9c9c9; + padding: .5rem; +} + +/* line 8347, ../../../scss/_app_styles.scss */ +svg { + width: 20px; + height: 20px; +} + +/* line 8352, ../../../scss/_app_styles.scss */ +.button { + border-radius: 50px; +} + +/* line 8357, ../../../scss/_app_styles.scss */ +#page_content { + display: table; + height: auto; + display: table-row; +} + +/* line 8365, ../../../scss/_app_styles.scss */ +.footer_container { + height: auto; + display: table-row; +} + +/* line 8372, ../../../scss/_app_styles.scss */ +#footer { + height: 1px; +} + +/* ----New Footer For NROER -------*/ +/* line 8381, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8399, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8402, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8407, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8413, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8417, ../../../scss/_app_styles.scss */ +.second-has-form { + margin-top: 0px; + margin-bottom: -2px; +} + +/* line 8425, ../../../scss/_app_styles.scss */ +#course-settings-drop { + width: 181px; +} + +/* line 8428, ../../../scss/_app_styles.scss */ +.edit_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.5px; + margin-left: 0px; +} +/* line 8437, ../../../scss/_app_styles.scss */ +.edit_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/** New cards showing popular ***/ +/* +// font stuff +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900); + + +// colour stuff*/ +/*@white: #ffffff; +@lightBG: #dce1df; +@salmon: #ff6666; + +@teal: #0096a0; +@tealMid: #0ebac7; +@tealContrast: #33ffff; +@tealShade: #007c85; + +@darkGrey: #4f585e;*/ +/*body { + background: #dce1df; + color: #4f585e; + font-family: 'Source Sans Pro', sans-serif; + text-rendering: optimizeLegibility; +}*/ +/*a.btn { + background: #0096a0; + border-radius: 4px; + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25); + color: #ffffff; + display: inline-block; + padding: 6px 30px 8px; + position: relative; + text-decoration: none; + transition: all 0.1s 0s ease-out; + margin-top: -5px; +} + +.no-touch a.btn:hover { + background: lighten(#0096a0,2.5); + box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075); + transform: translateY(-2px); + transition: all 0.25s 0s ease-out; +} + +.no-touch a.btn:active, +a.btn:active { + background: darken(#0096a0,2.5); + box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25); + transform: translate3d(0,1px,0); + transition: all 0.025s 0s ease-out; +} + +div.cards { + margin: 80px auto; + max-width: 100%; + text-align: center; +} + +div.card { + background: #ffffff; + display: inline-block; + margin: 8px; + max-width: 215px; + perspective: 1000; + position: relative; + text-align: left; + transition: all 0.3s 0s ease-in; + z-index: 1; + + img { + max-width: 215px; + } + + div.card-title { + background: #ffffff; + padding: 6px 15px 10px; + position: relative; + z-index: 0; + + a.toggle-info { + border-radius: 32px; + height: 32px; + padding: 0; + position: absolute; + right: 15px; + top: 10px; + width: 32px; + + span { + background:#ffffff; + display: block; + height: 2px; + position: absolute; + top: 16px; + transition: all 0.15s 0s ease-out; + width: 12px; + } + + span.left { + right: 14px; + transform: rotate(45deg); + } + span.right { + left: 14px; + transform: rotate(-45deg); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + letter-spacing: -0.05em; + margin: 0; + padding: 0; + + small { + display: block; + font-size: 13px; + font-weight: 300; + letter-spacing: -0.025em; + } + } + } + + div.card-description { + padding: 0 15px 10px; + position: relative; + font-size: 14px; + } + + div.card-actions { + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075); + padding: 10px 15px 20px; + text-align: center; + } + + div.card-flap { + background: darken(#ffffff,15); + position: absolute; + width: 100%; + transform-origin: top; + transform: rotateX(-90deg); + } + div.flap1 { + transition: all 0.3s 0.3s ease-out; + z-index: -1; + } + div.flap2 { + transition: all 0.3s 0s ease-out; + z-index: -2; + } + +} + +div.cards.showing { + div.card { + cursor: pointer; + opacity: 0.6; + transform: scale(0.88); + } +} + +.no-touch div.cards.showing { + div.card:hover { + opacity: 0.94; + transform: scale(0.92); + } +} + +div.card.show { + opacity: 1 !important; + transform: scale(1) !important; + + div.card-title { + a.toggle-info { + background: #ff6666 !important; + span { + top: 15px; + } + span.left { + right: 10px; + } + span.right { + left: 10px; + } + } + } + div.card-flap { + background: #ffffff; + transform: rotateX(0deg); + } + div.flap1 { + transition: all 0.3s 0s ease-out; + } + div.flap2 { + transition: all 0.3s 0.2s ease-out; + } +} + +.accordion .content { + overflow: hidden; +} +*/ +/* line 8650, ../../../scss/_app_styles.scss */ +.analytics-cards a, .analytics-cards h4 { + font-size: 16px; +} +@media only screen and (max-width: 320px) { + /* line 8650, ../../../scss/_app_styles.scss */ + .analytics-cards a, .analytics-cards h4 { + font-size: 12px; + } +} + +/* line 8658, ../../../scss/_app_styles.scss */ +.reg-users-box { + margin-left: 0px; +} +@media only screen and (max-width: 320px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 52px; + } +} +@media screen and (min-width: 321px) and (max-width: 850px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 70px; + } +} + +/* line 8668, ../../../scss/_app_styles.scss */ +.login-box { + background: #fff; + border: 1px solid #ddd; + margin: 100px 0; + padding: 40px 20px 0 20px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 0760a08789..3796e0f7bf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -23432,9 +23432,13 @@ th.hide-for-touch { */ /* line 6, ../../../scss/_nroer_styles.scss */ .workspace { - background: url("watermark.png") no-repeat 1% 65%; + background: url("watermark.png") no-repeat 0% 88%; + /* @media screen and (min-width: 321px) and (max-width: 850px) { + background: url("watermark.png") no-repeat 70% 70%; + }*/ min-height: 100%; margin-bottom: -130px !important; + margin-top: 0px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; @@ -23443,33 +23447,45 @@ th.hide-for-touch { .workspace .app.button-bar { height: 45px; } -/* line 21, ../../../scss/_nroer_styles.scss */ +@media only screen and (max-width: 320px) { + /* line 6, ../../../scss/_nroer_styles.scss */ + .workspace { + background: url("watermark.png") no-repeat 50% 120%; + } +} +@media only screen and (max-width: 320px) { + /* line 6, ../../../scss/_nroer_styles.scss */ + .workspace { + margin-bottom: 20px !important; + } +} +/* line 32, ../../../scss/_nroer_styles.scss */ .workspace:after { content: ""; display: block; height: 130px; } -/* line 31, ../../../scss/_nroer_styles.scss */ +/* line 42, ../../../scss/_nroer_styles.scss */ .landing { position: relative; } -/* line 34, ../../../scss/_nroer_styles.scss */ +/* line 45, ../../../scss/_nroer_styles.scss */ .landing h2 { margin-top: 2rem; } -/* line 40, ../../../scss/_nroer_styles.scss */ +/* line 51, ../../../scss/_nroer_styles.scss */ div.banner { padding: 0 2rem; } -/* line 45, ../../../scss/_nroer_styles.scss */ +/* line 56, ../../../scss/_nroer_styles.scss */ div.banner > * { background-color: #03a9f4; color: #eee; margin: 0; } -/* line 47, ../../../scss/_nroer_styles.scss */ +/* line 58, ../../../scss/_nroer_styles.scss */ div.banner > * .slide { padding: 1rem; margin: 0; @@ -23477,7 +23493,7 @@ div.banner > * .slide { height: 24em !important; min-height: 50vh !important; } -/* line 54, ../../../scss/_nroer_styles.scss */ +/* line 65, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .slide-back-image { position: absolute; font-size: 17rem; @@ -23487,62 +23503,270 @@ div.banner > * .slide .slide-back-image { opacity: 0.08; right: 7%; } -/* line 63, ../../../scss/_nroer_styles.scss */ +/* line 74, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .count-box { font-size: 120%; font-size: 1.35vw; opacity: 0.8; padding-bottom: 1em; } -/* line 69, ../../../scss/_nroer_styles.scss */ +/* line 80, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .count-box .count { font-size: 1.75vw; padding-right: 5px; } -/* line 73, ../../../scss/_nroer_styles.scss */ +/* line 84, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .count-box a { font-size: 1.35vw; } -/* line 78, ../../../scss/_nroer_styles.scss */ +/* line 89, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .quotes { opacity: 0.75; font-family: "Times new Roman"; font-size: 200%; font-size: 3vw; } -/* line 85, ../../../scss/_nroer_styles.scss */ +/* line 96, ../../../scss/_nroer_styles.scss */ div.banner > * .slide .slide-2-icons { opacity: 0.5; font-size: 280%; font-size: 3vw; } -/* line 93, ../../../scss/_nroer_styles.scss */ +/* line 104, ../../../scss/_nroer_styles.scss */ div.banner > * h2, div.banner > * h3, div.banner > * h4, div.banner > * h5, div.banner > * h6, div.banner > * blockquote { color: white; } -/* line 96, ../../../scss/_nroer_styles.scss */ +/* line 107, ../../../scss/_nroer_styles.scss */ div.banner > * h2 { font-size: 280%; font-size: 3vw; } -/* line 100, ../../../scss/_nroer_styles.scss */ +/* line 111, ../../../scss/_nroer_styles.scss */ div.banner > * h3 { font-size: 180%; font-size: 2vw; } -/* line 104, ../../../scss/_nroer_styles.scss */ +/* line 115, ../../../scss/_nroer_styles.scss */ div.banner > * blockquote { font-size: 120%; font-size: 1.35vw; font-style: italic; } -/* line 109, ../../../scss/_nroer_styles.scss */ +/* line 120, ../../../scss/_nroer_styles.scss */ div.banner > * p { color: white; font-size: 120%; font-size: 1.35vw; } +/* line 132, ../../../scss/_nroer_styles.scss */ +.curriculum_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 20px auto; + padding: 0px 0px; + min-height: calc(100vh - 100px); + overflow-y: auto; + padding: 15px; +} + +/* line 141, ../../../scss/_nroer_styles.scss */ +.curriculum_creator_header { + width: 100%; + height: 60px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 13px #000; +} +/* line 148, ../../../scss/_nroer_styles.scss */ +.curriculum_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 158, ../../../scss/_nroer_styles.scss */ +.curriculum_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #999999; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 168, ../../../scss/_nroer_styles.scss */ +.curriculum_creator_header .course_actions ul li.active, .curriculum_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} + +/* line 176, ../../../scss/_nroer_styles.scss */ +.curriculum_list { + width: 100%; + height: 60px; + background: #fff; + padding: 17px 81px; + box-shadow: 0px 1px 4px #004; + color: #2b78e4; +} +/* line 183, ../../../scss/_nroer_styles.scss */ +.curriculum_list a { + color: #164A7B; + font-size: 20px; + font-weight: 600; +} + +/* line 190, ../../../scss/_nroer_styles.scss */ +.curriculum_list_header { + max-width: 1176px !important; + margin: 0 auto !important; + box-sizing: border-box !important; + padding-left: 20px !important; + padding-right: 20px !important; + padding: 8px !important; + padding-top: 20px !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + justify-content: space-between !important; + border-bottom: 1px solid #D6D8DA !important; + -moz-box-sizing: border-box !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + box-shadow: 0px 3px 6px #000; + background-color: #ffffff; +} +/* line 211, ../../../scss/_nroer_styles.scss */ +.curriculum_list_header .title-curriculum { + font-family: inherit !important; + font-weight: bold !important; + line-height: 23px !important; + color: #21242C !important; + padding: 0px 0px 0px 10px !important; + font-weight: 500 !important; + font-size: 20px !important; +} +/* line 221, ../../../scss/_nroer_styles.scss */ +.curriculum_list_header .add-curriculum { + position: relative !important; + display: -moz-box !important; + display: -ms-inline-flexbox !important; + display: -webkit-box !important; + display: -webkit-inline-flex !important; + display: inline-flex !important; + align-items: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + font-size: 19px !important; + font-weight: 500 !important; +} + +/* line 237, ../../../scss/_nroer_styles.scss */ +.curriculum_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 254, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 273, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content:hover { + background: #F0F1F2 !important; +} +/* line 276, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 287, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; +} +/* line 304, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 309, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: #164A7B !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; +} +/* line 322, ../../../scss/_nroer_styles.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + /* * The Foundation Stylesheet * You can paste sass snippets from compass or foundation here @@ -23570,7 +23794,7 @@ div.banner > * p { /* * Foundation extensions */ -/* line 37, ../../../scss/_app_styles.scss */ +/* line 38, ../../../scss/_app_styles.scss */ pre { width: 92%; overflow: auto; @@ -23609,61 +23833,61 @@ pre { @import url('../../../fonts/ubuntu/Ubuntu-Medium.ttf'); @import url('../../../fonts/ubuntu/Ubuntu-Regular.ttf'); */ -/* line 75, ../../../scss/_app_styles.scss */ +/* line 76, ../../../scss/_app_styles.scss */ .fixme { opacity: 0.5; } -/* line 78, ../../../scss/_app_styles.scss */ +/* line 79, ../../../scss/_app_styles.scss */ .fixme:hover { opacity: 1; color: inherit; } -/* line 81, ../../../scss/_app_styles.scss */ +/* line 82, ../../../scss/_app_styles.scss */ .fixme:hover:after { content: " fixme"; color: orange; } /* Utility class to display the child spans of this element on hover */ -/* line 90, ../../../scss/_app_styles.scss */ +/* line 91, ../../../scss/_app_styles.scss */ .show-span-on-hover span { display: none; } -/* line 93, ../../../scss/_app_styles.scss */ +/* line 94, ../../../scss/_app_styles.scss */ .show-span-on-hover:hover span { display: inline; } -/* line 99, ../../../scss/_app_styles.scss */ +/* line 100, ../../../scss/_app_styles.scss */ .show-on-hover .show { display: none; z-index: 1000; } -/* line 103, ../../../scss/_app_styles.scss */ +/* line 104, ../../../scss/_app_styles.scss */ .show-on-hover:hover .show { display: block; } /* Utility class to display the next siblings on hoverr */ -/* line 108, ../../../scss/_app_styles.scss */ +/* line 109, ../../../scss/_app_styles.scss */ .extra.app { display: none; } /* Effects */ -/* line 114, ../../../scss/_app_styles.scss */ +/* line 115, ../../../scss/_app_styles.scss */ .drop-shadow { -webkit-box-shadow: 0px 0px 5px 1px black; box-shadow: 0px 0px 5px 1px black; } -/* line 118, ../../../scss/_app_styles.scss */ +/* line 119, ../../../scss/_app_styles.scss */ .rounded { border-radius: 2px; -webkit-border-radius: 2px; } -/* line 122, ../../../scss/_app_styles.scss */ +/* line 123, ../../../scss/_app_styles.scss */ .transition-opacity { transition: opacity .3s ease; -moz-transition: opacity .3s ease; @@ -23672,13 +23896,13 @@ pre { } /*Ratings bar based on http://codepen.io/lsirivong/pen/ekBxI */ -/* line 131, ../../../scss/_app_styles.scss */ +/* line 132, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 133, ../../../scss/_app_styles.scss */ +/* line 134, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -23686,19 +23910,19 @@ pre { unicode-bidi: bidi-override; direction: rtl; } -/* line 141, ../../../scss/_app_styles.scss */ +/* line 142, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 143, ../../../scss/_app_styles.scss */ +/* line 144, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #beccd2; } -/* line 149, ../../../scss/_app_styles.scss */ +/* line 150, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 151, ../../../scss/_app_styles.scss */ +/* line 152, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -23711,7 +23935,7 @@ pre { margin: 0; vertical-align: bottom; } -/* line 163, ../../../scss/_app_styles.scss */ +/* line 164, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -23719,32 +23943,32 @@ pre { /* WHITE STAR */ color: #888; } -/* line 170, ../../../scss/_app_styles.scss */ +/* line 171, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 181, ../../../scss/_app_styles.scss */ +/* line 182, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 188, ../../../scss/_app_styles.scss */ +/* line 189, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 196, ../../../scss/_app_styles.scss */ +/* line 197, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 201, ../../../scss/_app_styles.scss */ +/* line 202, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -23753,113 +23977,107 @@ pre { text-shadow: 0 0 1px #333; } -/* line 216, ../../../scss/_app_styles.scss */ +/* line 217, ../../../scss/_app_styles.scss */ .progress .meter { float: left; } -/* line 222, ../../../scss/_app_styles.scss */ -body { - background-color: #F2F2F2; - font-family: 'ubuntu-regular'; -} - -/* line 228, ../../../scss/_app_styles.scss */ +/* line 226, ../../../scss/_app_styles.scss */ #top-headers { margin-bottom: 0.5rem; } -/* line 233, ../../../scss/_app_styles.scss */ +/* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { background-color: #3e3e3e; } @media only screen and (min-width: 40.063em) { - /* line 233, ../../../scss/_app_styles.scss */ + /* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { height: auto; } } -/* line 243, ../../../scss/_app_styles.scss */ +/* line 241, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a { height: auto; } -/* line 246, ../../../scss/_app_styles.scss */ +/* line 244, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a img { height: 45px; } -/* line 258, ../../../scss/_app_styles.scss */ +/* line 256, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { color: #ececec; } -/* line 260, ../../../scss/_app_styles.scss */ +/* line 258, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { background-color: #3e3e3e; color: #ececec; } -/* line 267, ../../../scss/_app_styles.scss */ +/* line 265, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #015174 !important; color: #ececec; } -/* line 274, ../../../scss/_app_styles.scss */ +/* line 272, ../../../scss/_app_styles.scss */ #top-headers #group-level-header { opacity: 0.9; background-color: #E1E1E1; } -/* line 279, ../../../scss/_app_styles.scss */ +/* line 277, ../../../scss/_app_styles.scss */ #top-headers #group-level-header:hover { opacity: 1; transition: 0.1s all; box-shadow: 0px 2px 3px #E1E1E1; } -/* line 287, ../../../scss/_app_styles.scss */ +/* line 285, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #group-apps .back-btn.fi-play:before { transform: rotate(180deg); } -/* line 292, ../../../scss/_app_styles.scss */ +/* line 290, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar { background-color: #fafafa; border-top: solid thin gray; height: 52px; } -/* line 296, ../../../scss/_app_styles.scss */ +/* line 294, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar span { font-size: 1em !important; } -/* line 301, ../../../scss/_app_styles.scss */ +/* line 299, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar img { height: 45px; width: 50px; } -/* line 312, ../../../scss/_app_styles.scss */ +/* line 310, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { background-color: #fafafa !important; color: #000; border-bottom: solid 1px gray !important; } -/* line 318, ../../../scss/_app_styles.scss */ +/* line 316, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { background-color: #015174 !important; } -/* line 322, ../../../scss/_app_styles.scss */ +/* line 320, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { background-color: #025f8a; } -/* line 327, ../../../scss/_app_styles.scss */ +/* line 325, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { background-color: #fafafa; color: gray; } -/* line 334, ../../../scss/_app_styles.scss */ +/* line 332, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #015174; color: #fff; } -/* line 342, ../../../scss/_app_styles.scss */ +/* line 340, ../../../scss/_app_styles.scss */ #top-headers ul.dropdown { box-shadow: 0px 2px 5px black; opacity: 1; } -/* line 347, ../../../scss/_app_styles.scss */ +/* line 345, ../../../scss/_app_styles.scss */ #top-headers #search_text { border-bottom: solid thin #E1E1E1; background-color: #fafafa; @@ -23872,21 +24090,20 @@ body { box-shadow: none; top: 10px; } -/* line 359, ../../../scss/_app_styles.scss */ +/* line 357, ../../../scss/_app_styles.scss */ #top-headers #search_text:focus { border-bottom-color: #2b2c2d; transition: 1s ease-out; } -/* line 365, ../../../scss/_app_styles.scss */ +/* line 363, ../../../scss/_app_styles.scss */ #top-headers #search-submit { - background-color: #fafafa; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; + /* background-color: #fafafa;*/ + /*color: gray; + top: -3px;*/ + width: 60px; + /* height:-40px;*/ } -/* line 375, ../../../scss/_app_styles.scss */ +/* line 372, ../../../scss/_app_styles.scss */ #top-headers #search-submit:hover { opacity: 1; color: white; @@ -23894,57 +24111,88 @@ body { transition: 0.8s ease-out; } -/* line 413, ../../../scss/_app_styles.scss */ +/* line 410, ../../../scss/_app_styles.scss */ .top-bar .active { background-color: #026e9f !important; } -/* line 419, ../../../scss/_app_styles.scss */ +/* line 416, ../../../scss/_app_styles.scss */ .top-bar .logout { background-color: #f04124 !important; } -/* line 423, ../../../scss/_app_styles.scss */ +/* line 420, ../../../scss/_app_styles.scss */ .top-bar .logout:hover { background-color: #d32a0e !important; transition: background-color 400ms ease-out; } -/* line 465, ../../../scss/_app_styles.scss */ +/* line 460, ../../../scss/_app_styles.scss */ +html, body { + height: 100%; + /* +overflow-x: hidden;*/ +} + +/* line 464, ../../../scss/_app_styles.scss */ +#gbase_wrap { + /*min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; + overflow-x: hidden; +} + +/* line 473, ../../../scss/_app_styles.scss */ +#base_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 -60px; +} + +/* line 484, ../../../scss/_app_styles.scss */ body > footer { padding: 10px 5px; position: relative; background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; } -/* line 471, ../../../scss/_app_styles.scss */ +/* line 494, ../../../scss/_app_styles.scss */ body > footer ul { list-style-type: none; text-decoration: none; } -/* line 474, ../../../scss/_app_styles.scss */ +/* line 497, ../../../scss/_app_styles.scss */ body > footer ul li { font-size: 15px; margin-bottom: 5px; } -/* line 479, ../../../scss/_app_styles.scss */ +/* line 502, ../../../scss/_app_styles.scss */ body > footer p { margin: 10px; font-size: 18px; } -/* line 483, ../../../scss/_app_styles.scss */ +/* line 506, ../../../scss/_app_styles.scss */ body > footer h2 { font-size: 25px; } -/* line 486, ../../../scss/_app_styles.scss */ +/* line 509, ../../../scss/_app_styles.scss */ body > footer li { color: #bbbbbb; } -/* line 489, ../../../scss/_app_styles.scss */ +/* line 512, ../../../scss/_app_styles.scss */ body > footer a { color: #bbbbbb; margin-top: 0; padding: 0; display: inline; } -/* line 494, ../../../scss/_app_styles.scss */ +/* line 517, ../../../scss/_app_styles.scss */ body > footer a:hover { text-decoration: none; color: #ffffff; @@ -23952,95 +24200,147 @@ body > footer a:hover { padding: 0; display: inline; } -/* line 504, ../../../scss/_app_styles.scss */ +/* line 525, ../../../scss/_app_styles.scss */ +body > footer .myfooter { + display: table-row; + height: 1px; +} +/* line 530, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer-section { color: #ffffff; text-align: center; } -/* line 508, ../../../scss/_app_styles.scss */ +/* line 534, ../../../scss/_app_styles.scss */ body > footer .myfooter .inline_mar-right { display: inline-block; margin: 0 25px 15px 0; } -/* line 513, ../../../scss/_app_styles.scss */ +/* line 539, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content { margin: 20px; } -/* line 516, ../../../scss/_app_styles.scss */ +/* line 542, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content .footer-logo { height: 65px; width: 150px; } -/* line 521, ../../../scss/_app_styles.scss */ +/* line 547, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse { max-height: 78px; overflow: hidden; transition: all 0.5s ease-out; } -/* line 526, ../../../scss/_app_styles.scss */ +/* line 552, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse ul { display: inline; padding: 0; margin: 0px !important; } -/* line 532, ../../../scss/_app_styles.scss */ +/* line 558, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - margin: 20px; text-align: left; } -/* line 538, ../../../scss/_app_styles.scss */ +/* line 563, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 542, ../../../scss/_app_styles.scss */ +/* line 567, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .flinks { + font-size: 20px; + color: #999; + line-height: 1px; +} +/* line 572, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { + font-size: 24px; + margin-right: 5px; +} +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 546, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 583, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } +/* line 590, ../../../scss/_app_styles.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 596, ../../../scss/_app_styles.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 602, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 608, ../../../scss/_app_styles.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} -/* line 555, ../../../scss/_app_styles.scss */ +/* line 612, ../../../scss/_app_styles.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 618, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 623, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 560, ../../../scss/_app_styles.scss */ +/* line 628, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 566, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 569, ../../../scss/_app_styles.scss */ +/* line 638, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 573, ../../../scss/_app_styles.scss */ +/* line 642, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #03abf7; /* Hide icons till we can retreive custom icons from the system */ } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 644, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 577, ../../../scss/_app_styles.scss */ +/* line 646, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 583, ../../../scss/_app_styles.scss */ +/* line 652, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24049,135 +24349,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 587, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 590, ../../../scss/_app_styles.scss */ +/* line 659, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 595, ../../../scss/_app_styles.scss */ +/* line 664, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 669, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 604, ../../../scss/_app_styles.scss */ +/* line 673, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 612, ../../../scss/_app_styles.scss */ +/* line 681, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 618, ../../../scss/_app_styles.scss */ +/* line 687, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #03a9f4; color: white; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 695, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 639, ../../../scss/_app_styles.scss */ +/* line 708, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 647, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 719, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 723, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 658, ../../../scss/_app_styles.scss */ +/* line 727, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 731, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 669, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 672, ../../../scss/_app_styles.scss */ +/* line 741, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 754, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #03abf7; margin: 0; } -/* line 690, ../../../scss/_app_styles.scss */ +/* line 759, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 692, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 695, ../../../scss/_app_styles.scss */ +/* line 764, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #03abf7; background-color: #03abf7; } -/* line 708, ../../../scss/_app_styles.scss */ +/* line 777, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 713, ../../../scss/_app_styles.scss */ +/* line 782, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 726, ../../../scss/_app_styles.scss */ +/* line 795, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 732, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 735, ../../../scss/_app_styles.scss */ +/* line 804, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24187,13 +24487,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 745, ../../../scss/_app_styles.scss */ +/* line 814, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 755, ../../../scss/_app_styles.scss */ +/* line 824, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24204,51 +24504,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 767, ../../../scss/_app_styles.scss */ +/* line 836, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 778, ../../../scss/_app_styles.scss */ +/* line 847, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 783, ../../../scss/_app_styles.scss */ +/* line 852, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 788, ../../../scss/_app_styles.scss */ +/* line 857, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 862, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 798, ../../../scss/_app_styles.scss */ +/* line 867, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 804, ../../../scss/_app_styles.scss */ +/* line 873, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 810, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 813, ../../../scss/_app_styles.scss */ +/* line 882, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 818, ../../../scss/_app_styles.scss */ +/* line 887, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24257,28 +24557,28 @@ article h1:not(.subheader) div input:hover { color: #03a9f4; opacity: 0.3; } -/* line 827, ../../../scss/_app_styles.scss */ +/* line 896, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 832, ../../../scss/_app_styles.scss */ +/* line 901, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 836, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 839, ../../../scss/_app_styles.scss */ +/* line 908, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 914, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24286,23 +24586,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 851, ../../../scss/_app_styles.scss */ +/* line 920, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 924, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 859, ../../../scss/_app_styles.scss */ +/* line 928, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 864, ../../../scss/_app_styles.scss */ +/* line 933, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24312,7 +24612,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 875, ../../../scss/_app_styles.scss */ +/* line 944, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24321,40 +24621,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 888, ../../../scss/_app_styles.scss */ +/* line 957, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 890, ../../../scss/_app_styles.scss */ +/* line 959, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 963, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #03abf7; border: 1px solid; } -/* line 898, ../../../scss/_app_styles.scss */ +/* line 967, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #03abf7; } -/* line 902, ../../../scss/_app_styles.scss */ +/* line 971, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 975, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 981, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 919, ../../../scss/_app_styles.scss */ +/* line 988, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24363,31 +24663,31 @@ article section.content { } /* Default card */ -/* line 927, ../../../scss/_app_styles.scss */ +/* line 996, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 932, ../../../scss/_app_styles.scss */ +/* line 1001, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 940, ../../../scss/_app_styles.scss */ +/* line 1009, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 944, ../../../scss/_app_styles.scss */ +/* line 1013, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 952, ../../../scss/_app_styles.scss */ +/* line 1021, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24395,20 +24695,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 961, ../../../scss/_app_styles.scss */ +/* line 1030, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 1034, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 1038, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 981, ../../../scss/_app_styles.scss */ +/* line 1050, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24429,39 +24729,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1001, ../../../scss/_app_styles.scss */ +/* line 1070, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1006, ../../../scss/_app_styles.scss */ +/* line 1075, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1010, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1013, ../../../scss/_app_styles.scss */ +/* line 1082, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1017, ../../../scss/_app_styles.scss */ +/* line 1086, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1021, ../../../scss/_app_styles.scss */ +/* line 1090, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1029, ../../../scss/_app_styles.scss */ +/* line 1098, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24469,13 +24769,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1105, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1041, ../../../scss/_app_styles.scss */ +/* line 1110, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24489,13 +24789,13 @@ input.node-title { } /*for graph and location*/ -/* line 1051, ../../../scss/_app_styles.scss */ +/* line 1120, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1056, ../../../scss/_app_styles.scss */ +/* line 1125, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24506,7 +24806,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1067, ../../../scss/_app_styles.scss */ +/* line 1136, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24519,7 +24819,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1082, ../../../scss/_app_styles.scss */ +/* line 1151, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24529,102 +24829,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1093, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1165, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1100, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1106, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1109, ../../../scss/_app_styles.scss */ +/* line 1178, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1121, ../../../scss/_app_styles.scss */ +/* line 1190, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1128, ../../../scss/_app_styles.scss */ +/* line 1197, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1203, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1142, ../../../scss/_app_styles.scss */ +/* line 1211, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1146, ../../../scss/_app_styles.scss */ +/* line 1215, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1152, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1155, ../../../scss/_app_styles.scss */ +/* line 1224, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1159, ../../../scss/_app_styles.scss */ +/* line 1228, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1164, ../../../scss/_app_styles.scss */ +/* line 1233, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1171, ../../../scss/_app_styles.scss */ +/* line 1240, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1175, ../../../scss/_app_styles.scss */ +/* line 1244, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1180, ../../../scss/_app_styles.scss */ +/* line 1249, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1186, ../../../scss/_app_styles.scss */ +/* line 1255, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24633,16 +24933,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1264, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1200, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1203, ../../../scss/_app_styles.scss */ +/* line 1272, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24650,7 +24950,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1282, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24660,12 +24960,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1291, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1228, ../../../scss/_app_styles.scss */ +/* line 1297, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24691,7 +24991,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1256, ../../../scss/_app_styles.scss */ +/* line 1325, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24703,12 +25003,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1265, ../../../scss/_app_styles.scss */ +/* line 1334, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1271, ../../../scss/_app_styles.scss */ +/* line 1340, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24726,7 +25026,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1288, ../../../scss/_app_styles.scss */ +/* line 1357, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24739,7 +25039,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1299, ../../../scss/_app_styles.scss */ +/* line 1368, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24749,7 +25049,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1312, ../../../scss/_app_styles.scss */ +/* line 1381, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24763,7 +25063,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1327, ../../../scss/_app_styles.scss */ +/* line 1396, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24779,13 +25079,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1342, ../../../scss/_app_styles.scss */ +/* line 1411, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1347, ../../../scss/_app_styles.scss */ +/* line 1416, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24796,7 +25096,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1356, ../../../scss/_app_styles.scss */ +/* line 1425, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24804,7 +25104,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1365, ../../../scss/_app_styles.scss */ +/* line 1434, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24818,83 +25118,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1382, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1385, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1388, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1391, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1397, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1400, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1403, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1406, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1412, ../../../scss/_app_styles.scss */ +/* line 1481, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1418, ../../../scss/_app_styles.scss */ +/* line 1487, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1422, ../../../scss/_app_styles.scss */ +/* line 1491, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1428, ../../../scss/_app_styles.scss */ +/* line 1497, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1433, ../../../scss/_app_styles.scss */ +/* line 1502, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1437, ../../../scss/_app_styles.scss */ +/* line 1506, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1441, ../../../scss/_app_styles.scss */ +/* line 1510, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24905,7 +25205,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1579, ../../../scss/_app_styles.scss */ +/* line 1648, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24918,26 +25218,26 @@ p { height: 100%; } -/* line 1590, ../../../scss/_app_styles.scss */ +/* line 1659, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1595, ../../../scss/_app_styles.scss */ +/* line 1664, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1600, ../../../scss/_app_styles.scss */ +/* line 1669, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1604, ../../../scss/_app_styles.scss */ +/* line 1673, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24964,12 +25264,12 @@ p { border-top-right-radius: 5px; } -/* line 1630, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1633, ../../../scss/_app_styles.scss */ +/* line 1702, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24978,7 +25278,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1642, ../../../scss/_app_styles.scss */ +/* line 1711, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24992,7 +25292,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1660, ../../../scss/_app_styles.scss */ +/* line 1729, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -25000,56 +25300,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1740, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1676, ../../../scss/_app_styles.scss */ +/* line 1745, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1682, ../../../scss/_app_styles.scss */ +/* line 1751, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1689, ../../../scss/_app_styles.scss */ +/* line 1758, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1693, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1696, ../../../scss/_app_styles.scss */ +/* line 1765, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1702, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1705, ../../../scss/_app_styles.scss */ +/* line 1774, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1711, ../../../scss/_app_styles.scss */ +/* line 1780, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1717, ../../../scss/_app_styles.scss */ +/* line 1786, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1724, ../../../scss/_app_styles.scss */ +/* line 1793, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25057,15 +25357,15 @@ p { font-size: small; height: 2rem; } -/* line 1731, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1734, ../../../scss/_app_styles.scss */ +/* line 1803, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1748, ../../../scss/_app_styles.scss */ +/* line 1817, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25073,7 +25373,7 @@ p { height: 8em; overflow: hidden; } -/* line 1758, ../../../scss/_app_styles.scss */ +/* line 1827, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25085,7 +25385,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1771, ../../../scss/_app_styles.scss */ +/* line 1840, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25095,14 +25395,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1783, ../../../scss/_app_styles.scss */ +/* line 1852, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1792, ../../../scss/_app_styles.scss */ +/* line 1861, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25116,51 +25416,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1809, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1810, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1811, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1813, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1814, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1816, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1817, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1818, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1819, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1820, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1823, ../../../scss/_app_styles.scss */ +/* line 1892, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25173,59 +25473,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1836, ../../../scss/_app_styles.scss */ +/* line 1905, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1841, ../../../scss/_app_styles.scss */ +/* line 1910, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1845, ../../../scss/_app_styles.scss */ +/* line 1914, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1853, ../../../scss/_app_styles.scss */ +/* line 1922, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #beccd2 transparent transparent; border-color: rgba(255, 255, 255, 0) #beccd2 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1857, ../../../scss/_app_styles.scss */ +/* line 1926, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1862, ../../../scss/_app_styles.scss */ +/* line 1931, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1866, ../../../scss/_app_styles.scss */ +/* line 1935, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1871, ../../../scss/_app_styles.scss */ +/* line 1940, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1875, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1947, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1954, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25236,7 +25536,7 @@ p { transform: rotate(30deg); } -/* line 1899, ../../../scss/_app_styles.scss */ +/* line 1968, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25244,19 +25544,17 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1907, ../../../scss/_app_styles.scss */ -.allow.draft { - background-size: 10%; - background-repeat: repeat; - background-image: url("/static/ndf/images/draft-watermark.png"); -} - -/* line 1915, ../../../scss/_app_styles.scss */ +/*.allow.draft{ + background-size: 10%; + background-repeat:repeat; + background-image:url("/static/ndf/images/draft-watermark.png"); +}*/ +/* line 1984, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1989, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25269,7 +25567,7 @@ p { text-align: center; } -/* line 1932, ../../../scss/_app_styles.scss */ +/* line 2001, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25281,12 +25579,12 @@ p { margin-left: 4px; } -/* line 1943, ../../../scss/_app_styles.scss */ +/* line 2012, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 1947, ../../../scss/_app_styles.scss */ +/* line 2016, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25296,14 +25594,14 @@ p { max-width: calc(70rem + 70px); } -/* line 1956, ../../../scss/_app_styles.scss */ +/* line 2025, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 1962, ../../../scss/_app_styles.scss */ +/* line 2031, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25314,7 +25612,7 @@ p { border: thin solid #D3D3D3; } -/* line 1972, ../../../scss/_app_styles.scss */ +/* line 2041, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25322,26 +25620,26 @@ p { transition: all 0.6s ease 0s; } -/* line 1979, ../../../scss/_app_styles.scss */ +/* line 2048, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 1985, ../../../scss/_app_styles.scss */ +/* line 2054, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 1989, ../../../scss/_app_styles.scss */ +/* line 2058, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 1996, ../../../scss/_app_styles.scss */ +/* line 2065, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25357,58 +25655,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2015, ../../../scss/_app_styles.scss */ +/* line 2084, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2021, ../../../scss/_app_styles.scss */ +/* line 2090, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2025, ../../../scss/_app_styles.scss */ +/* line 2094, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2031, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2034, ../../../scss/_app_styles.scss */ +/* line 2103, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2038, ../../../scss/_app_styles.scss */ +/* line 2107, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2043, ../../../scss/_app_styles.scss */ +/* line 2112, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2050, ../../../scss/_app_styles.scss */ +/* line 2119, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2054, ../../../scss/_app_styles.scss */ +/* line 2123, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2059, ../../../scss/_app_styles.scss */ +/* line 2128, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2065, ../../../scss/_app_styles.scss */ +/* line 2134, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25416,16 +25714,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2073, ../../../scss/_app_styles.scss */ +/* line 2142, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2078, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2081, ../../../scss/_app_styles.scss */ +/* line 2150, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25435,7 +25733,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2091, ../../../scss/_app_styles.scss */ +/* line 2160, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25444,12 +25742,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2099, ../../../scss/_app_styles.scss */ +/* line 2168, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2174, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25457,7 +25755,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2113, ../../../scss/_app_styles.scss */ + /* line 2182, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25465,7 +25763,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2121, ../../../scss/_app_styles.scss */ + /* line 2190, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25473,7 +25771,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2129, ../../../scss/_app_styles.scss */ + /* line 2198, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25481,20 +25779,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2137, ../../../scss/_app_styles.scss */ + /* line 2206, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2143, ../../../scss/_app_styles.scss */ +/* line 2212, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2149, ../../../scss/_app_styles.scss */ +/* line 2218, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25502,7 +25800,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2157, ../../../scss/_app_styles.scss */ +/* line 2226, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25516,12 +25814,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2171, ../../../scss/_app_styles.scss */ +/* line 2240, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2175, ../../../scss/_app_styles.scss */ +/* line 2244, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25531,11 +25829,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2184, ../../../scss/_app_styles.scss */ +/* line 2253, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2188, ../../../scss/_app_styles.scss */ +/* line 2257, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25544,17 +25842,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2195, ../../../scss/_app_styles.scss */ +/* line 2264, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2201, ../../../scss/_app_styles.scss */ +/* line 2270, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2206, ../../../scss/_app_styles.scss */ +/* line 2275, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25562,20 +25860,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2212, ../../../scss/_app_styles.scss */ +/* line 2281, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2214, ../../../scss/_app_styles.scss */ +/* line 2283, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2218, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2219, ../../../scss/_app_styles.scss */ +/* line 2288, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25583,11 +25881,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2225, ../../../scss/_app_styles.scss */ +/* line 2294, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2232, ../../../scss/_app_styles.scss */ +/* line 2301, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25598,30 +25896,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2311, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2249, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2252, ../../../scss/_app_styles.scss */ +/* line 2321, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2259, ../../../scss/_app_styles.scss */ +/* line 2328, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2264, ../../../scss/_app_styles.scss */ +/* line 2333, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2337, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25631,27 +25929,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2278, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2350, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2354, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2361, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2297, ../../../scss/_app_styles.scss */ +/* line 2366, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25663,7 +25961,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2308, ../../../scss/_app_styles.scss */ +/* line 2377, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25673,7 +25971,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2317, ../../../scss/_app_styles.scss */ +/* line 2386, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25681,25 +25979,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2325, ../../../scss/_app_styles.scss */ +/* line 2394, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2329, ../../../scss/_app_styles.scss */ +/* line 2398, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2342, ../../../scss/_app_styles.scss */ +/* line 2411, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2349, ../../../scss/_app_styles.scss */ +/* line 2418, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25708,69 +26006,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2357, ../../../scss/_app_styles.scss */ +/* line 2426, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2361, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2367, ../../../scss/_app_styles.scss */ +/* line 2436, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2374, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2377, ../../../scss/_app_styles.scss */ +/* line 2446, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2381, ../../../scss/_app_styles.scss */ +/* line 2450, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2394, ../../../scss/_app_styles.scss */ +/* line 2463, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2400, ../../../scss/_app_styles.scss */ +/* line 2469, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2404, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2407, ../../../scss/_app_styles.scss */ +/* line 2476, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2414, ../../../scss/_app_styles.scss */ +/* line 2483, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2421, ../../../scss/_app_styles.scss */ +/* line 2490, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2429, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25805,23 +26103,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2430, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2433, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2436, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2439, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2442, ../../../scss/_app_styles.scss */ +/* line 2511, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25830,45 +26128,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2450, ../../../scss/_app_styles.scss */ +/* line 2519, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2456, ../../../scss/_app_styles.scss */ +/* line 2525, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2464, ../../../scss/_app_styles.scss */ +/* line 2533, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2472, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2475, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2478, ../../../scss/_app_styles.scss */ +/* line 2547, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2483, ../../../scss/_app_styles.scss */ +/* line 2552, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25877,17 +26175,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2491, ../../../scss/_app_styles.scss */ +/* line 2560, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2501, ../../../scss/_app_styles.scss */ +/* line 2570, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2505, ../../../scss/_app_styles.scss */ +/* line 2574, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25895,11 +26193,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2512, ../../../scss/_app_styles.scss */ +/* line 2581, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2516, ../../../scss/_app_styles.scss */ +/* line 2585, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25909,7 +26207,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2526, ../../../scss/_app_styles.scss */ +/* line 2595, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25918,58 +26216,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2619, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2552, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2555, ../../../scss/_app_styles.scss */ +/* line 2624, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2560, ../../../scss/_app_styles.scss */ +/* line 2629, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2564, ../../../scss/_app_styles.scss */ +/* line 2633, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2571, ../../../scss/_app_styles.scss */ +/* line 2640, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2578, ../../../scss/_app_styles.scss */ +/* line 2647, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2582, ../../../scss/_app_styles.scss */ +/* line 2651, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2586, ../../../scss/_app_styles.scss */ +/* line 2655, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2624, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2696, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25980,7 +26278,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2707, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25990,7 +26288,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2646, ../../../scss/_app_styles.scss */ +/* line 2715, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -26001,25 +26299,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2656, ../../../scss/_app_styles.scss */ +/* line 2725, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2662, ../../../scss/_app_styles.scss */ +/* line 2731, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2671, ../../../scss/_app_styles.scss */ +/* line 2740, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2676, ../../../scss/_app_styles.scss */ +/* line 2745, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26028,96 +26326,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2684, ../../../scss/_app_styles.scss */ +/* line 2753, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2693, ../../../scss/_app_styles.scss */ +/* line 2762, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2701, ../../../scss/_app_styles.scss */ +/* line 2770, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2707, ../../../scss/_app_styles.scss */ +/* line 2776, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2709, ../../../scss/_app_styles.scss */ +/* line 2778, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2782, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2719, ../../../scss/_app_styles.scss */ +/* line 2788, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2732, ../../../scss/_app_styles.scss */ +/* line 2801, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2737, ../../../scss/_app_styles.scss */ +/* line 2806, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2746, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2749, ../../../scss/_app_styles.scss */ +/* line 2818, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2755, ../../../scss/_app_styles.scss */ +/* line 2824, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2762, ../../../scss/_app_styles.scss */ +/* line 2831, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2766, ../../../scss/_app_styles.scss */ +/* line 2835, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2770, ../../../scss/_app_styles.scss */ +/* line 2839, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2775, ../../../scss/_app_styles.scss */ +/* line 2844, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26126,12 +26424,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2789, ../../../scss/_app_styles.scss */ +/* line 2858, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2793, ../../../scss/_app_styles.scss */ +/* line 2862, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26143,45 +26441,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2805, ../../../scss/_app_styles.scss */ +/* line 2874, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2811, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2814, ../../../scss/_app_styles.scss */ +/* line 2883, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2820, ../../../scss/_app_styles.scss */ +/* line 2889, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2830, ../../../scss/_app_styles.scss */ +/* line 2899, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2835, ../../../scss/_app_styles.scss */ +/* line 2904, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2840, ../../../scss/_app_styles.scss */ +/* line 2909, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2847, ../../../scss/_app_styles.scss */ +/* line 2916, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26189,42 +26487,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2857, ../../../scss/_app_styles.scss */ +/* line 2926, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2863, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2866, ../../../scss/_app_styles.scss */ +/* line 2935, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2871, ../../../scss/_app_styles.scss */ +/* line 2940, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2876, ../../../scss/_app_styles.scss */ +/* line 2945, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2886, ../../../scss/_app_styles.scss */ +/* line 2955, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2890, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2893, ../../../scss/_app_styles.scss */ +/* line 2962, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26234,12 +26532,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2971, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2906, ../../../scss/_app_styles.scss */ +/* line 2975, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26248,22 +26546,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2917, ../../../scss/_app_styles.scss */ +/* line 2986, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2923, ../../../scss/_app_styles.scss */ +/* line 2992, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2928, ../../../scss/_app_styles.scss */ +/* line 2997, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26271,53 +26569,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 2936, ../../../scss/_app_styles.scss */ +/* line 3005, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 2940, ../../../scss/_app_styles.scss */ +/* line 3009, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 2946, ../../../scss/_app_styles.scss */ +/* line 3015, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 3022, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 2955, ../../../scss/_app_styles.scss */ +/* line 3024, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 2964, ../../../scss/_app_styles.scss */ +/* line 3033, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 2970, ../../../scss/_app_styles.scss */ +/* line 3039, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 2975, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 2978, ../../../scss/_app_styles.scss */ +/* line 3047, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 2982, ../../../scss/_app_styles.scss */ +/* line 3051, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2987, ../../../scss/_app_styles.scss */ +/* line 3056, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26325,114 +26623,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 2994, ../../../scss/_app_styles.scss */ +/* line 3063, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3001, ../../../scss/_app_styles.scss */ +/* line 3070, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3005, ../../../scss/_app_styles.scss */ +/* line 3074, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3012, ../../../scss/_app_styles.scss */ +/* line 3081, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3017, ../../../scss/_app_styles.scss */ +/* line 3086, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3023, ../../../scss/_app_styles.scss */ +/* line 3092, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3028, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3100, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3106, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3114, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3052, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3055, ../../../scss/_app_styles.scss */ +/* line 3124, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3060, ../../../scss/_app_styles.scss */ +/* line 3129, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3066, ../../../scss/_app_styles.scss */ +/* line 3135, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3070, ../../../scss/_app_styles.scss */ +/* line 3139, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3078, ../../../scss/_app_styles.scss */ +/* line 3147, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3085, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3094, ../../../scss/_app_styles.scss */ +/* line 3163, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3099, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3102, ../../../scss/_app_styles.scss */ +/* line 3171, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26440,102 +26738,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3111, ../../../scss/_app_styles.scss */ +/* line 3180, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3116, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3121, ../../../scss/_app_styles.scss */ +/* line 3190, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3128, ../../../scss/_app_styles.scss */ +/* line 3197, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3136, ../../../scss/_app_styles.scss */ +/* line 3205, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3142, ../../../scss/_app_styles.scss */ +/* line 3211, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3146, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3149, ../../../scss/_app_styles.scss */ +/* line 3218, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3154, ../../../scss/_app_styles.scss */ +/* line 3223, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3159, ../../../scss/_app_styles.scss */ +/* line 3228, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3165, ../../../scss/_app_styles.scss */ +/* line 3234, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3175, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3247, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3182, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3185, ../../../scss/_app_styles.scss */ +/* line 3254, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3189, ../../../scss/_app_styles.scss */ +/* line 3258, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3269, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3208, ../../../scss/_app_styles.scss */ +/* line 3277, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26543,33 +26841,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3215, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3219, ../../../scss/_app_styles.scss */ +/* line 3288, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3224, ../../../scss/_app_styles.scss */ +/* line 3293, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3230, ../../../scss/_app_styles.scss */ +/* line 3299, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3236, ../../../scss/_app_styles.scss */ +/* line 3305, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3240, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3243, ../../../scss/_app_styles.scss */ +/* line 3312, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26579,73 +26877,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3321, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3257, ../../../scss/_app_styles.scss */ +/* line 3326, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3264, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3336, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3274, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3281, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3284, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3287, ../../../scss/_app_styles.scss */ +/* line 3356, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3360, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3296, ../../../scss/_app_styles.scss */ +/* line 3365, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3300, ../../../scss/_app_styles.scss */ +/* line 3369, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3313, ../../../scss/_app_styles.scss */ +/* line 3382, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3318, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26653,11 +26951,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3329, ../../../scss/_app_styles.scss */ +/* line 3398, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3333, ../../../scss/_app_styles.scss */ +/* line 3402, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26668,17 +26966,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3343, ../../../scss/_app_styles.scss */ +/* line 3412, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3417, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3353, ../../../scss/_app_styles.scss */ +/* line 3422, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26687,11 +26985,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3361, ../../../scss/_app_styles.scss */ +/* line 3430, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3366, ../../../scss/_app_styles.scss */ +/* line 3435, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26702,24 +27000,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3449, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3384, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3387, ../../../scss/_app_styles.scss */ +/* line 3456, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3395, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26783,49 +27081,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3459, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3531, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3464, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3468, ../../../scss/_app_styles.scss */ +/* line 3537, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3473, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3477, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3481, ../../../scss/_app_styles.scss */ +/* line 3550, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3488, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3491, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3497, ../../../scss/_app_styles.scss */ +/* line 3566, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26833,7 +27131,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3506, ../../../scss/_app_styles.scss */ +/* line 3575, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26845,32 +27143,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3517, ../../../scss/_app_styles.scss */ +/* line 3586, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3521, ../../../scss/_app_styles.scss */ +/* line 3590, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3525, ../../../scss/_app_styles.scss */ +/* line 3594, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3533, ../../../scss/_app_styles.scss */ +/* line 3602, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3538, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3542, ../../../scss/_app_styles.scss */ +/* line 3611, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26891,31 +27189,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3546, ../../../scss/_app_styles.scss */ +/* line 3615, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3553, ../../../scss/_app_styles.scss */ +/* line 3622, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3560, ../../../scss/_app_styles.scss */ +/* line 3629, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3565, ../../../scss/_app_styles.scss */ +/* line 3634, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3571, ../../../scss/_app_styles.scss */ +/* line 3640, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26925,13 +27223,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3582, ../../../scss/_app_styles.scss */ +/* line 3651, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3587, ../../../scss/_app_styles.scss */ +/* line 3656, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26940,17 +27238,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3595, ../../../scss/_app_styles.scss */ +/* line 3664, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3599, ../../../scss/_app_styles.scss */ +/* line 3668, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3607, ../../../scss/_app_styles.scss */ +/* line 3676, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26958,20 +27256,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3637, ../../../scss/_app_styles.scss */ +/* line 3706, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3641, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3644, ../../../scss/_app_styles.scss */ +/* line 3713, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3718, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26979,71 +27277,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3657, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3661, ../../../scss/_app_styles.scss */ +/* line 3730, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3735, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3672, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3675, ../../../scss/_app_styles.scss */ +/* line 3744, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3681, ../../../scss/_app_styles.scss */ +/* line 3750, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3685, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3692, ../../../scss/_app_styles.scss */ +/* line 3761, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3694, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3698, ../../../scss/_app_styles.scss */ +/* line 3767, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3702, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3705, ../../../scss/_app_styles.scss */ +/* line 3774, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3712, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3715, ../../../scss/_app_styles.scss */ +/* line 3784, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27053,17 +27351,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3726, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3729, ../../../scss/_app_styles.scss */ +/* line 3798, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3736, ../../../scss/_app_styles.scss */ +/* line 3805, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27072,58 +27370,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3754, ../../../scss/_app_styles.scss */ +/* line 3823, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3828, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3763, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3766, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3773, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3776, ../../../scss/_app_styles.scss */ +/* line 3845, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3786, ../../../scss/_app_styles.scss */ +/* line 3855, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3792, ../../../scss/_app_styles.scss */ +/* line 3861, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3865, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3800, ../../../scss/_app_styles.scss */ +/* line 3869, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3804, ../../../scss/_app_styles.scss */ +/* line 3873, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27131,27 +27429,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3813, ../../../scss/_app_styles.scss */ +/* line 3882, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3817, ../../../scss/_app_styles.scss */ +/* line 3886, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3825, ../../../scss/_app_styles.scss */ +/* line 3894, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3899, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27159,11 +27457,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3838, ../../../scss/_app_styles.scss */ +/* line 3907, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27171,18 +27469,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3850, ../../../scss/_app_styles.scss */ +/* line 3919, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3854, ../../../scss/_app_styles.scss */ +/* line 3923, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3862, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27190,12 +27488,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3870, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3876, ../../../scss/_app_styles.scss */ +/* line 3945, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27204,21 +27502,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3885, ../../../scss/_app_styles.scss */ +/* line 3954, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3890, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3895, ../../../scss/_app_styles.scss */ +/* line 3964, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27229,24 +27527,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3974, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3909, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3912, ../../../scss/_app_styles.scss */ +/* line 3981, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3986, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3990, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27257,7 +27555,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3931, ../../../scss/_app_styles.scss */ +/* line 4000, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27265,15 +27563,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3939, ../../../scss/_app_styles.scss */ +/* line 4008, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3941, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3944, ../../../scss/_app_styles.scss */ +/* line 4013, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27283,27 +27581,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3953, ../../../scss/_app_styles.scss */ +/* line 4022, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 4028, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3966, ../../../scss/_app_styles.scss */ +/* line 4035, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3970, ../../../scss/_app_styles.scss */ +/* line 4039, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3975, ../../../scss/_app_styles.scss */ +/* line 4044, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27324,28 +27622,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3996, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 3999, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4003, ../../../scss/_app_styles.scss */ +/* line 4072, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4009, ../../../scss/_app_styles.scss */ +/* line 4078, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4014, ../../../scss/_app_styles.scss */ +/* line 4083, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27353,12 +27651,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4023, ../../../scss/_app_styles.scss */ +/* line 4092, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27369,14 +27667,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4102, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4038, ../../../scss/_app_styles.scss */ +/* line 4107, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27388,48 +27686,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4048, ../../../scss/_app_styles.scss */ +/* line 4117, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4052, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4055, ../../../scss/_app_styles.scss */ +/* line 4124, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4059, ../../../scss/_app_styles.scss */ +/* line 4128, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4132, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4068, ../../../scss/_app_styles.scss */ +/* line 4137, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4074, ../../../scss/_app_styles.scss */ +/* line 4143, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4080, ../../../scss/_app_styles.scss */ +/* line 4149, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27437,7 +27735,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4087, ../../../scss/_app_styles.scss */ + /* line 4156, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27445,7 +27743,7 @@ course-title { background-color: #999999; } - /* line 4093, ../../../scss/_app_styles.scss */ + /* line 4162, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27455,7 +27753,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4103, ../../../scss/_app_styles.scss */ + /* line 4172, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27463,7 +27761,7 @@ course-title { background-color: #999999; } - /* line 4109, ../../../scss/_app_styles.scss */ + /* line 4178, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27472,14 +27770,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4116, ../../../scss/_app_styles.scss */ +/* line 4185, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4123, ../../../scss/_app_styles.scss */ +/* line 4192, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27496,7 +27794,7 @@ course-title { font-size: 1.8em; } -/* line 4139, ../../../scss/_app_styles.scss */ +/* line 4208, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27506,7 +27804,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4148, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27516,7 +27814,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4157, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27526,7 +27824,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4167, ../../../scss/_app_styles.scss */ +/* line 4236, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27537,12 +27835,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4252, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4187, ../../../scss/_app_styles.scss */ +/* line 4256, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27551,12 +27849,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4195, ../../../scss/_app_styles.scss */ +/* line 4264, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4200, ../../../scss/_app_styles.scss */ +/* line 4269, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27571,31 +27869,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4214, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4217, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4220, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4223, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4226, ../../../scss/_app_styles.scss */ +/* line 4295, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4230, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4235, ../../../scss/_app_styles.scss */ +/* line 4304, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27604,46 +27902,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4243, ../../../scss/_app_styles.scss */ +/* line 4312, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4319, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4255, ../../../scss/_app_styles.scss */ +/* line 4324, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4259, ../../../scss/_app_styles.scss */ +/* line 4328, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4263, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4266, ../../../scss/_app_styles.scss */ +/* line 4335, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4270, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4274, ../../../scss/_app_styles.scss */ +/* line 4343, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4282, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27654,19 +27952,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4362, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4299, ../../../scss/_app_styles.scss */ +/* line 4368, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4305, ../../../scss/_app_styles.scss */ +/* line 4374, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27678,7 +27976,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4316, ../../../scss/_app_styles.scss */ +/* line 4385, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27687,7 +27985,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4325, ../../../scss/_app_styles.scss */ +/* line 4394, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27701,51 +27999,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4339, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4342, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4345, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4348, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4351, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4354, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4357, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4363, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4369, ../../../scss/_app_styles.scss */ +/* line 4438, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4373, ../../../scss/_app_styles.scss */ +/* line 4442, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27756,7 +28054,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4452, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27764,54 +28062,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4391, ../../../scss/_app_styles.scss */ +/* line 4460, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4396, ../../../scss/_app_styles.scss */ +/* line 4465, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4400, ../../../scss/_app_styles.scss */ +/* line 4469, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4404, ../../../scss/_app_styles.scss */ +/* line 4473, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4408, ../../../scss/_app_styles.scss */ +/* line 4477, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4481, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4416, ../../../scss/_app_styles.scss */ +/* line 4485, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4426, ../../../scss/_app_styles.scss */ +/* line 4495, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4499, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4434, ../../../scss/_app_styles.scss */ +/* line 4503, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27822,17 +28120,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4446, ../../../scss/_app_styles.scss */ +/* line 4515, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4519, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4455, ../../../scss/_app_styles.scss */ +/* line 4524, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27844,24 +28142,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4536, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4471, ../../../scss/_app_styles.scss */ + /* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27869,12 +28167,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4479, ../../../scss/_app_styles.scss */ + /* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4490, ../../../scss/_app_styles.scss */ +/* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27885,12 +28183,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4490, ../../../scss/_app_styles.scss */ + /* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4502, ../../../scss/_app_styles.scss */ +/* line 4571, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27901,7 +28199,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4512, ../../../scss/_app_styles.scss */ +/* line 4581, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27909,28 +28207,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4520, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4523, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4526, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4533, ../../../scss/_app_styles.scss */ +/* line 4602, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4539, ../../../scss/_app_styles.scss */ +/* line 4608, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27941,7 +28239,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4550, ../../../scss/_app_styles.scss */ +/* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27949,18 +28247,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4562, ../../../scss/_app_styles.scss */ +/* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27968,40 +28266,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4562, ../../../scss/_app_styles.scss */ + /* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4572, ../../../scss/_app_styles.scss */ +/* line 4641, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4576, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4648, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4585, ../../../scss/_app_styles.scss */ +/* line 4654, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4589, ../../../scss/_app_styles.scss */ +/* line 4658, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4595, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -28014,25 +28312,25 @@ course-title { border: 1px solid #eee; } -/* line 4607, ../../../scss/_app_styles.scss */ +/* line 4676, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #03a9f4 !important; } -/* line 4611, ../../../scss/_app_styles.scss */ +/* line 4680, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4615, ../../../scss/_app_styles.scss */ +/* line 4684, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4621, ../../../scss/_app_styles.scss */ +/* line 4690, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28041,7 +28339,7 @@ h5 { margin-left: 5px; } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4698, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28050,12 +28348,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4636, ../../../scss/_app_styles.scss */ +/* line 4705, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4640, ../../../scss/_app_styles.scss */ +/* line 4709, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28064,12 +28362,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4647, ../../../scss/_app_styles.scss */ +/* line 4716, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4653, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28081,19 +28379,27 @@ h5 { color: #6153AE; } -/* line 4664, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; margin: 5px 5px 8px 0px; border: 1px solid #6153AE; - background: #fff; - font-size: 23px; + background: #f1f1f1; + font-size: 17px; + margin: 7px 19px; + display: inline-block; color: #6153AE; } +/* line 4745, ../../../scss/_app_styles.scss */ +.add-note-btn:hover { + cursor: pointer; + color: #6153AE; + background-color: #ffffff; +} -/* line 4675, ../../../scss/_app_styles.scss */ +/* line 4753, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28105,7 +28411,3790 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4686, ../../../scss/_app_styles.scss */ +/* line 4764, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } + +/*Blue color variable*/ +/*Orange color variables*/ +/* module detail settings drop */ +/* line 4795, ../../../scss/_app_styles.scss */ +.explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4798, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4809, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4815, ../../../scss/_app_styles.scss */ +.explore-settings-drop a { + font-size: 16px; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4821, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4832, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4838, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop a { + font-size: 16px; +} +/* line 4841, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4849, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4853, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} +/* line 4866, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4870, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} + +/* line 4877, ../../../scss/_app_styles.scss */ +.edit_button { + color: #717171; +} +/* line 4879, ../../../scss/_app_styles.scss */ +.edit_button:hover { + border-left: 2px solid #ce7869; +} + +/* line 4885, ../../../scss/_app_styles.scss */ +.left-btn { + margin-top: 0px; + margin-right: 0px; + text-transform: capitalize; + width: 100%; + background-color: #ffffff; + display: block; + padding: 0.5rem; + color: #555555; + font-size: 11px; +} +/* line 4895, ../../../scss/_app_styles.scss */ +.left-btn:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4904, ../../../scss/_app_styles.scss */ +.chnge-img:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4915, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; +} +/* line 4923, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 4936, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; +} +/* line 4941, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; +} +/* line 4949, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; +} +/* line 4953, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 4959, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; +} +/* line 4970, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; +} + +/* line 4979, ../../../scss/_app_styles.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 4984, ../../../scss/_app_styles.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); +} +/* line 4990, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; +} +/* line 4993, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; +} +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5007, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5010, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } +} + +/* line 5030, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 5033, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; + margin-left: -35px; +} +@media only screen and (max-width: 40em) { + /* line 5033, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + margin-left: 0px; + } +} +/* line 5040, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #164a7b; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5050, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5059, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; + } + /* line 5062, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + /* + display: inline-block;*/ + } + /* line 5065, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a { + list-style-type: none; + /*display: inline-block;*/ + padding: 1px 2px 3px; + color: #164a7b; + cursor: pointer; + font-size: 16px; + letter-spacing: 0.3px; + border-bottom: 2px solid transparent; + } + /* line 5076, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* line 5089, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 5093, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 5096, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 5107, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5115, ../../../scss/_app_styles.scss */ + ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; + } + /* line 5119, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li { + /* display: inline-block;*/ + background-color: #164a7b; + } + /* line 5122, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a { + list-style-type: none; + /*margin-right:-2px;*/ + background-color: #164a7b; + padding: 1px 1px 1px; + cursor: pointer; + font-size: 16px; + /* display: inline-block;*/ + letter-spacing: 0.3px; + border-bottom: 3px solid transparent; + color: #ffffff !important; + } + /* line 5133, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* Secondary Top Bar */ +/* line 5145, ../../../scss/_app_styles.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 5154, ../../../scss/_app_styles.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 5158, ../../../scss/_app_styles.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; + font-weight: 600; +} + +/* line 5168, ../../../scss/_app_styles.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; +} +/* line 5180, ../../../scss/_app_styles.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 5187, ../../../scss/_app_styles.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; + margin-top: -8px; +} + +/* line 5198, ../../../scss/_app_styles.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 5203, ../../../scss/_app_styles.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 5206, ../../../scss/_app_styles.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 5216, ../../../scss/_app_styles.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 5224, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; +} +/* line 5226, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 5237, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 5245, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { + display: none; +} +/* line 5251, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 5262, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 5264, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 5271, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 5278, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5284, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5292, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 5302, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 5311, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 5318, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/** + * Sass styles related to unit cards + */ +/* line 5346, ../../../scss/_app_styles.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; + height: 210px; +} +/* line 5360, ../../../scss/_app_styles.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 5371, ../../../scss/_app_styles.scss */ +.unit_card .unit_header { + display: table; +} +/* line 5373, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; +} +/* line 5381, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 17px; + font-weight: 500; + letter-spacing: 0.5px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + /* white-space: nowrap;*/ + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; +} +/* line 5395, ../../../scss/_app_styles.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 5411, ../../../scss/_app_styles.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 5417, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions { + padding: 5px 0px; +} +/* line 5422, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol { + background: #a2238d; + height: 24px; + text-align: center; + color: #ffffff; + font-size: 18px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 90px !important; + margin-top: 8px !important; + letter-spacing: 0.4px; +} +/* line 5434, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5439, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics { + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom: 2px solid #a2238d; +} +/* line 5447, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics-points { + background: #ffffff; + color: #a2238d; + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight: bold; + cursor: default; +} +/* line 5458, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + margin-left: -20px; +} +/* line 5467, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/* unit cards labels */ +/* line 5477, ../../../scss/_app_styles.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} + +/* line 5493, ../../../scss/_app_styles.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5510, ../../../scss/_app_styles.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5527, ../../../scss/_app_styles.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5545, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5562, ../../../scss/_app_styles.scss */ +.icon-widget { + font-size: 20px; +} +@media only screen and (max-width: 320px) { + /* line 5562, ../../../scss/_app_styles.scss */ + .icon-widget { + font-size: 12px; + } +} + +/* module detail css */ +/* line 5574, ../../../scss/_app_styles.scss */ +.thumbnail_style { + margin-left: -30px; +} + +/* line 5578, ../../../scss/_app_styles.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 5584, ../../../scss/_app_styles.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + padding-left: 10px; + height: auto; + min-height: 143px; +} +/* line 5590, ../../../scss/_app_styles.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 5600, ../../../scss/_app_styles.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 5605, ../../../scss/_app_styles.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 5608, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 5625, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* Creating and editing course Structure */ +/* line 5642, ../../../scss/_app_styles.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 5651, ../../../scss/_app_styles.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 5654, ../../../scss/_app_styles.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 5661, ../../../scss/_app_styles.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 5668, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 5671, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 5674, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 5682, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 5686, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 5688, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 5698, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 5703, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 5709, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 5716, ../../../scss/_app_styles.scss */ +.max-width { + max-width: 100%; +} + +/* line 5722, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 5731, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 5744, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 5753, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 5758, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background-color: #ffffff; +} +/* line 5763, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 5769, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 5773, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 5786, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* Unit_Structure styles */ +/* line 5804, ../../../scss/_app_styles.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 5812, ../../../scss/_app_styles.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 5816, ../../../scss/_app_styles.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 5822, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 5828, ../../../scss/_app_styles.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 5833, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 5842, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5846, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 5851, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 5860, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5867, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 5876, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 5881, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 5884, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 5894, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 5900, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 5908, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 5910, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5917, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5926, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 5935, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 5945, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 5951, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 5954, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 5963, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 5968, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 5972, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 5974, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 5977, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 5983, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 5998, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 6006, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 6012, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 6021, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 6026, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 6033, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6038, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6043, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 6045, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 6049, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 6060, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 6065, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 6071, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 6077, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 6084, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 6091, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6102, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 6119, ../../../scss/_app_styles.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* lesspn listing LMS */ +/* line 6135, ../../../scss/_app_styles.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 6143, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 6146, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 45px; +} +/* line 6148, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 6155, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name { + padding-left: 20px; + /* @media screen and (max-width: 480px) { + margin: 25px 10px; + height: 55px; + + >div { + .jqtree-title { + color: #3c5264; + font-size: 16px; + font-weight: 500; + padding-bottom: 1px; + } + } + + }*/ +} +/* line 6157, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 6162, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + padding-bottom: 2px; +} +/* line 6187, ../../../scss/_app_styles.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 6193, ../../../scss/_app_styles.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 6200, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 6203, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check-circle-o { + color: green; +} + +/* line 6206, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 6209, ../../../scss/_app_styles.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* activity player header */ +/* + Styling for the Secondary header 2 +*/ +/* line 6228, ../../../scss/_app_styles.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 6231, ../../../scss/_app_styles.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6239, ../../../scss/_app_styles.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 6248, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6257, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title a { + color: #ffc14f; +} +@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 938px); + } +} +@media only screen and (min-device-width: 2131px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 970px); + } +} +@media only screen and (max-device-width: 1024px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 753px); + } +} +/* line 6334, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon { + font-size: 16px; + line-height: 45px; + color: #ffc14f; +} +/* line 6340, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 6346, ../../../scss/_app_styles.scss */ +.activity_player_header .header_text_sm_block { + padding: 0px 10px; +} +@media screen and (min-width: 1025px) { + /* line 6346, ../../../scss/_app_styles.scss */ + .activity_player_header .header_text_sm_block { + padding: 0px 15px; + } +} +@media screen and (min-width: 1025px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + float: right; + margin-right: 70px; + background-color: rgba(107, 0, 84, 0.97); + } +} +@media screen and (max-width: 1024px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + background-color: rgba(107, 0, 84, 0.97); + } +} +/* line 6366, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6372, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6376, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block a { + color: #ffc14f; +} +/* line 6382, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 9px; +} +@media screen and (min-width: 1025px) { + /* line 6382, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 15px; + } +} +/* line 6390, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 7px; +} +@media screen and (min-width: 1025px) { + /* line 6390, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 15px; + } +} +/* line 6399, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 6402, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button i { + color: #71318b; +} +/* line 6408, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 6412, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 6418, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .pagination:not(i) { + color: #a983b9; +} + +/* line 6426, ../../../scss/_app_styles.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6433, ../../../scss/_app_styles.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6437, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6443, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6449, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6454, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6463, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6467, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6472, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6481, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6488, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6497, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6502, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6505, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6515, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6521, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6529, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6531, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6538, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6547, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6556, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6566, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6571, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6574, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6583, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6588, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6592, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6594, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6597, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6603, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 6621, ../../../scss/_app_styles.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + min-width: 910px; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 6627, ../../../scss/_app_styles.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 6632, ../../../scss/_app_styles.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 6638, ../../../scss/_app_styles.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 6644, ../../../scss/_app_styles.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 6653, ../../../scss/_app_styles.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 6657, ../../../scss/_app_styles.scss */ +.activity-title > li > a { + color: black; +} + +/* line 6666, ../../../scss/_app_styles.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* Rating css */ +/* line 6674, ../../../scss/_app_styles.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 6676, ../../../scss/_app_styles.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 6684, ../../../scss/_app_styles.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 6686, ../../../scss/_app_styles.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 6692, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 6694, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 6706, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 6713, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 6724, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 6731, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 6739, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 6744, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/* line 6754, ../../../scss/_app_styles.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 6758, ../../../scss/_app_styles.scss */ +.input_links { + margin-left: 10px; +} +/* line 6760, ../../../scss/_app_styles.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 6766, ../../../scss/_app_styles.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 6774, ../../../scss/_app_styles.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 6783, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 6787, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 6793, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 6801, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 6807, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 6816, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 6821, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 6823, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 6826, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 6836, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 6840, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 6843, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 6848, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 6852, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 6863, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 6871, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 6873, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 6876, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 6885, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 6891, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/* line 6900, ../../../scss/_app_styles.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* The asset tile */ +/* line 6910, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 6919, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 6932, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 6941, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 6946, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 6951, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 6957, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 6961, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 6974, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 6989, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7000, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7006, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 7021, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 7025, ../../../scss/_app_styles.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 7034, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7041, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 7047, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 7049, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7056, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 7060, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 7066, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7077, ../../../scss/_app_styles.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 280px; + border: 1px solid #164A7B; +} +/* line 7086, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7093, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 7098, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 7102, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 7112, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 7119, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 7128, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 7135, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 7142, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 7150, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7166, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 7173, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7184, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7195, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7206, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7217, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7233, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 7240, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7251, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7262, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7273, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7284, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 7286, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7294, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 7300, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7311, ../../../scss/_app_styles.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 7321, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 7324, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 7329, ../../../scss/_app_styles.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 7340, ../../../scss/_app_styles.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 7350, ../../../scss/_app_styles.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 7353, ../../../scss/_app_styles.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 7357, ../../../scss/_app_styles.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 7363, ../../../scss/_app_styles.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 7365, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 7374, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7388, ../../../scss/_app_styles.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 750px; + min-height: 445px; + margin-left: 0px; +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + width: 390px; + } +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + min-height: 20px; + } +} + +/* line 7402, ../../../scss/_app_styles.scss */ +.widget_video { + height: 360px; + width: 480px; +} +@media only screen and (max-width: 350px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 290px; + height: 230px; + } +} +@media screen and (min-width: 351px) and (max-width: 850px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 340px; + height: 280px; + } +} + +/* Asset detail */ +/* line 7418, ../../../scss/_app_styles.scss */ +.overlay-head { + height: 60px; + margin-bottom: 20px; +} + +/* line 7424, ../../../scss/_app_styles.scss */ +.listing-row { + margin-top: 10px !important; + background-color: #ffffff; +} + +/* line 7429, ../../../scss/_app_styles.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 7441, ../../../scss/_app_styles.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7448, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +@media screen and (max-width: 325px) { + /* line 7448, ../../../scss/_app_styles.scss */ + .orange-button-template { + font-size: 10px; + } +} +/* line 7462, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7467, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7470, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7473, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7484, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7491, ../../../scss/_app_styles.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 7502, ../../../scss/_app_styles.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* asset description */ +/* line 7511, ../../../scss/_app_styles.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 7518, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7522, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7540, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7556, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7561, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7571, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7578, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7593, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} + +/* line 7604, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 7611, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 7625, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 7630, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 7638, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 7643, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 7648, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 7653, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 7661, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 7665, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 7674, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 7679, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 7685, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 7691, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; +} + +/* line 7698, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7705, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7708, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} + +/* line 7716, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 7735, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 7744, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 7753, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7776, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7781, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 43%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + color: #fff; +} +/* line 7790, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #719dc7; + border: 1px solid #CCC; + border-bottom: 0px; + color: #fff; +} + +/* line 7803, ../../../scss/_app_styles.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 7811, ../../../scss/_app_styles.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; +} +/* line 7822, ../../../scss/_app_styles.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7828, ../../../scss/_app_styles.scss */ +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7835, ../../../scss/_app_styles.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7844, ../../../scss/_app_styles.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 7850, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7859, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 7863, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7871, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 7882, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7890, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 7894, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7904, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 7909, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 7917, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 7920, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 7929, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 7934, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 7946, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 7963, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: 2.7px; +} + +/* line 7968, ../../../scss/_app_styles.scss */ +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; +} +/* line 7974, ../../../scss/_app_styles.scss */ +.empty-dashboard-message > a { + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; +} +/* line 7988, ../../../scss/_app_styles.scss */ +.empty-dashboard-message .button-explore-courses { + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; +} + +/* line 8003, ../../../scss/_app_styles.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 8013, ../../../scss/_app_styles.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8017, ../../../scss/_app_styles.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 8022, ../../../scss/_app_styles.scss */ +.module_card .card_banner { + width: 250px; + height: 290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 8035, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 8040, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 8052, ../../../scss/_app_styles.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 8067, ../../../scss/_app_styles.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-size: 23px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 8078, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 8081, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8086, ../../../scss/_app_styles.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8090, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 8093, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 8097, ../../../scss/_app_styles.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 8111, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 8117, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 8121, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 8124, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 8128, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 8136, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 8149, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8155, ../../../scss/_app_styles.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 8172, ../../../scss/_app_styles.scss */ +.inner { + display: inline-block !important; +} + +/* line 8179, ../../../scss/_app_styles.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 8199, ../../../scss/_app_styles.scss */ +.enrollBtn { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +/*****Toolbar CSS******/ +/* line 8214, ../../../scss/_app_styles.scss */ +#toolbar { + background-color: #3e3e3e; +} + +/* line 8217, ../../../scss/_app_styles.scss */ +.datetime { + color: #eaeaea; + padding: 4px 0px 2px 5px; + font-size: 11px; +} + +/* line 8222, ../../../scss/_app_styles.scss */ +.changefont { + text-align: right; + padding: 2px 5px 1px 0px; +} +/* line 8226, ../../../scss/_app_styles.scss */ +.changefont .minus { + font-size: 60%; + color: #eaeaea; +} +/* line 8229, ../../../scss/_app_styles.scss */ +.changefont .normal { + font-size: 80%; + color: #eaeaea; +} +/* line 8232, ../../../scss/_app_styles.scss */ +.changefont .plus { + font-size: 100%; + color: #eaeaea; +} + +/***********Landing page***************/ +/* line 8241, ../../../scss/_app_styles.scss */ +.about_us { + background: #20ade0; +} + +/* line 8244, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8247, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8257, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8263, ../../../scss/_app_styles.scss */ +.box-content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8276, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8283, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8309, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} + +/* line 8313, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 18px; +} + +/* line 8321, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #107aa1; +} + +/*.searchbar { + margin: 0.8rem; +}*/ +/* line 8330, ../../../scss/_app_styles.scss */ +.search-field { + width: 0; + height: 40px; + margin-left: 1rem; + padding: 0; + border-radius: 50px; + border: none; + transition: all 0.5s ease; +} + +/* line 8340, ../../../scss/_app_styles.scss */ +.expand-search { + width: 80%; + max-width: calc(80% - 3rem); + border: 1px solid #c9c9c9; + padding: .5rem; +} + +/* line 8347, ../../../scss/_app_styles.scss */ +svg { + width: 20px; + height: 20px; +} + +/* line 8352, ../../../scss/_app_styles.scss */ +.button { + border-radius: 50px; +} + +/* line 8357, ../../../scss/_app_styles.scss */ +#page_content { + display: table; + height: auto; + display: table-row; +} + +/* line 8365, ../../../scss/_app_styles.scss */ +.footer_container { + height: auto; + display: table-row; +} + +/* line 8372, ../../../scss/_app_styles.scss */ +#footer { + height: 1px; +} + +/* ----New Footer For NROER -------*/ +/* line 8381, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8399, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8402, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8407, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8413, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8417, ../../../scss/_app_styles.scss */ +.second-has-form { + margin-top: 0px; + margin-bottom: -2px; +} + +/* line 8425, ../../../scss/_app_styles.scss */ +#course-settings-drop { + width: 181px; +} + +/* line 8428, ../../../scss/_app_styles.scss */ +.edit_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.5px; + margin-left: 0px; +} +/* line 8437, ../../../scss/_app_styles.scss */ +.edit_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/** New cards showing popular ***/ +/* +// font stuff +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900); + + +// colour stuff*/ +/*@white: #ffffff; +@lightBG: #dce1df; +@salmon: #ff6666; + +@teal: #0096a0; +@tealMid: #0ebac7; +@tealContrast: #33ffff; +@tealShade: #007c85; + +@darkGrey: #4f585e;*/ +/*body { + background: #dce1df; + color: #4f585e; + font-family: 'Source Sans Pro', sans-serif; + text-rendering: optimizeLegibility; +}*/ +/*a.btn { + background: #0096a0; + border-radius: 4px; + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25); + color: #ffffff; + display: inline-block; + padding: 6px 30px 8px; + position: relative; + text-decoration: none; + transition: all 0.1s 0s ease-out; + margin-top: -5px; +} + +.no-touch a.btn:hover { + background: lighten(#0096a0,2.5); + box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075); + transform: translateY(-2px); + transition: all 0.25s 0s ease-out; +} + +.no-touch a.btn:active, +a.btn:active { + background: darken(#0096a0,2.5); + box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25); + transform: translate3d(0,1px,0); + transition: all 0.025s 0s ease-out; +} + +div.cards { + margin: 80px auto; + max-width: 100%; + text-align: center; +} + +div.card { + background: #ffffff; + display: inline-block; + margin: 8px; + max-width: 215px; + perspective: 1000; + position: relative; + text-align: left; + transition: all 0.3s 0s ease-in; + z-index: 1; + + img { + max-width: 215px; + } + + div.card-title { + background: #ffffff; + padding: 6px 15px 10px; + position: relative; + z-index: 0; + + a.toggle-info { + border-radius: 32px; + height: 32px; + padding: 0; + position: absolute; + right: 15px; + top: 10px; + width: 32px; + + span { + background:#ffffff; + display: block; + height: 2px; + position: absolute; + top: 16px; + transition: all 0.15s 0s ease-out; + width: 12px; + } + + span.left { + right: 14px; + transform: rotate(45deg); + } + span.right { + left: 14px; + transform: rotate(-45deg); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + letter-spacing: -0.05em; + margin: 0; + padding: 0; + + small { + display: block; + font-size: 13px; + font-weight: 300; + letter-spacing: -0.025em; + } + } + } + + div.card-description { + padding: 0 15px 10px; + position: relative; + font-size: 14px; + } + + div.card-actions { + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075); + padding: 10px 15px 20px; + text-align: center; + } + + div.card-flap { + background: darken(#ffffff,15); + position: absolute; + width: 100%; + transform-origin: top; + transform: rotateX(-90deg); + } + div.flap1 { + transition: all 0.3s 0.3s ease-out; + z-index: -1; + } + div.flap2 { + transition: all 0.3s 0s ease-out; + z-index: -2; + } + +} + +div.cards.showing { + div.card { + cursor: pointer; + opacity: 0.6; + transform: scale(0.88); + } +} + +.no-touch div.cards.showing { + div.card:hover { + opacity: 0.94; + transform: scale(0.92); + } +} + +div.card.show { + opacity: 1 !important; + transform: scale(1) !important; + + div.card-title { + a.toggle-info { + background: #ff6666 !important; + span { + top: 15px; + } + span.left { + right: 10px; + } + span.right { + left: 10px; + } + } + } + div.card-flap { + background: #ffffff; + transform: rotateX(0deg); + } + div.flap1 { + transition: all 0.3s 0s ease-out; + } + div.flap2 { + transition: all 0.3s 0.2s ease-out; + } +} + +.accordion .content { + overflow: hidden; +} +*/ +/* line 8650, ../../../scss/_app_styles.scss */ +.analytics-cards a, .analytics-cards h4 { + font-size: 16px; +} +@media only screen and (max-width: 320px) { + /* line 8650, ../../../scss/_app_styles.scss */ + .analytics-cards a, .analytics-cards h4 { + font-size: 12px; + } +} + +/* line 8658, ../../../scss/_app_styles.scss */ +.reg-users-box { + margin-left: 0px; +} +@media only screen and (max-width: 320px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 52px; + } +} +@media screen and (min-width: 321px) and (max-width: 850px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 70px; + } +} + +/* line 8668, ../../../scss/_app_styles.scss */ +.login-box { + background: #fff; + border: 1px solid #ddd; + margin: 100px 0; + padding: 40px 20px 0 20px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index da69486c66..2b8f4f7c9a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -23477,7 +23477,7 @@ th.hide-for-touch { /* * Foundation extensions */ -/* line 37, ../../../scss/_app_styles.scss */ +/* line 38, ../../../scss/_app_styles.scss */ pre { width: 92%; overflow: auto; @@ -23516,61 +23516,61 @@ pre { @import url('../../../fonts/ubuntu/Ubuntu-Medium.ttf'); @import url('../../../fonts/ubuntu/Ubuntu-Regular.ttf'); */ -/* line 75, ../../../scss/_app_styles.scss */ +/* line 76, ../../../scss/_app_styles.scss */ .fixme { opacity: 0.5; } -/* line 78, ../../../scss/_app_styles.scss */ +/* line 79, ../../../scss/_app_styles.scss */ .fixme:hover { opacity: 1; color: inherit; } -/* line 81, ../../../scss/_app_styles.scss */ +/* line 82, ../../../scss/_app_styles.scss */ .fixme:hover:after { content: " fixme"; color: orange; } /* Utility class to display the child spans of this element on hover */ -/* line 90, ../../../scss/_app_styles.scss */ +/* line 91, ../../../scss/_app_styles.scss */ .show-span-on-hover span { display: none; } -/* line 93, ../../../scss/_app_styles.scss */ +/* line 94, ../../../scss/_app_styles.scss */ .show-span-on-hover:hover span { display: inline; } -/* line 99, ../../../scss/_app_styles.scss */ +/* line 100, ../../../scss/_app_styles.scss */ .show-on-hover .show { display: none; z-index: 1000; } -/* line 103, ../../../scss/_app_styles.scss */ +/* line 104, ../../../scss/_app_styles.scss */ .show-on-hover:hover .show { display: block; } /* Utility class to display the next siblings on hoverr */ -/* line 108, ../../../scss/_app_styles.scss */ +/* line 109, ../../../scss/_app_styles.scss */ .extra.app { display: none; } /* Effects */ -/* line 114, ../../../scss/_app_styles.scss */ +/* line 115, ../../../scss/_app_styles.scss */ .drop-shadow { -webkit-box-shadow: 0px 0px 5px 1px black; box-shadow: 0px 0px 5px 1px black; } -/* line 118, ../../../scss/_app_styles.scss */ +/* line 119, ../../../scss/_app_styles.scss */ .rounded { border-radius: 2px; -webkit-border-radius: 2px; } -/* line 122, ../../../scss/_app_styles.scss */ +/* line 123, ../../../scss/_app_styles.scss */ .transition-opacity { transition: opacity .3s ease; -moz-transition: opacity .3s ease; @@ -23579,13 +23579,13 @@ pre { } /*Ratings bar based on http://codepen.io/lsirivong/pen/ekBxI */ -/* line 131, ../../../scss/_app_styles.scss */ +/* line 132, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 133, ../../../scss/_app_styles.scss */ +/* line 134, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -23593,19 +23593,19 @@ pre { unicode-bidi: bidi-override; direction: rtl; } -/* line 141, ../../../scss/_app_styles.scss */ +/* line 142, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 143, ../../../scss/_app_styles.scss */ +/* line 144, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #a9b2b3; } -/* line 149, ../../../scss/_app_styles.scss */ +/* line 150, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 151, ../../../scss/_app_styles.scss */ +/* line 152, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -23618,7 +23618,7 @@ pre { margin: 0; vertical-align: bottom; } -/* line 163, ../../../scss/_app_styles.scss */ +/* line 164, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -23626,32 +23626,32 @@ pre { /* WHITE STAR */ color: #888; } -/* line 170, ../../../scss/_app_styles.scss */ +/* line 171, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 181, ../../../scss/_app_styles.scss */ +/* line 182, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 188, ../../../scss/_app_styles.scss */ +/* line 189, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 196, ../../../scss/_app_styles.scss */ +/* line 197, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 201, ../../../scss/_app_styles.scss */ +/* line 202, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -23660,113 +23660,107 @@ pre { text-shadow: 0 0 1px #333; } -/* line 216, ../../../scss/_app_styles.scss */ +/* line 217, ../../../scss/_app_styles.scss */ .progress .meter { float: left; } -/* line 222, ../../../scss/_app_styles.scss */ -body { - background-color: #F2F2F2; - font-family: 'ubuntu-regular'; -} - -/* line 228, ../../../scss/_app_styles.scss */ +/* line 226, ../../../scss/_app_styles.scss */ #top-headers { margin-bottom: 0.5rem; } -/* line 233, ../../../scss/_app_styles.scss */ +/* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { background-color: #3e3e3e; } @media only screen and (min-width: 40.063em) { - /* line 233, ../../../scss/_app_styles.scss */ + /* line 231, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar { height: auto; } } -/* line 243, ../../../scss/_app_styles.scss */ +/* line 241, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a { height: auto; } -/* line 246, ../../../scss/_app_styles.scss */ +/* line 244, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .title-area a img { height: 45px; } -/* line 258, ../../../scss/_app_styles.scss */ +/* line 256, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a.active:not(.button) { color: #ececec; } -/* line 260, ../../../scss/_app_styles.scss */ +/* line 258, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button), #top-headers #first-header.top-bar .top-bar-section li { background-color: #3e3e3e; color: #ececec; } -/* line 267, ../../../scss/_app_styles.scss */ +/* line 265, ../../../scss/_app_styles.scss */ #top-headers #first-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #first-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #075b60 !important; color: #ececec; } -/* line 274, ../../../scss/_app_styles.scss */ +/* line 272, ../../../scss/_app_styles.scss */ #top-headers #group-level-header { opacity: 0.9; background-color: #E1E1E1; } -/* line 279, ../../../scss/_app_styles.scss */ +/* line 277, ../../../scss/_app_styles.scss */ #top-headers #group-level-header:hover { opacity: 1; transition: 0.1s all; box-shadow: 0px 2px 3px #E1E1E1; } -/* line 287, ../../../scss/_app_styles.scss */ +/* line 285, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #group-apps .back-btn.fi-play:before { transform: rotate(180deg); } -/* line 292, ../../../scss/_app_styles.scss */ +/* line 290, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar { background-color: #fafafa; border-top: solid thin gray; height: 52px; } -/* line 296, ../../../scss/_app_styles.scss */ +/* line 294, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar span { font-size: 1em !important; } -/* line 301, ../../../scss/_app_styles.scss */ +/* line 299, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar img { height: 45px; width: 50px; } -/* line 312, ../../../scss/_app_styles.scss */ +/* line 310, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active { background-color: #fafafa !important; color: #000; border-bottom: solid 1px gray !important; } -/* line 318, ../../../scss/_app_styles.scss */ +/* line 316, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:hover { background-color: #075b60 !important; } -/* line 322, ../../../scss/_app_styles.scss */ +/* line 320, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li.active:not(.has-form) > a:not(.button) { background-color: #096f75; } -/* line 327, ../../../scss/_app_styles.scss */ +/* line 325, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button), #top-headers #group-level-header #second-header.top-bar .top-bar-section li { background-color: #fafafa; color: gray; } -/* line 334, ../../../scss/_app_styles.scss */ +/* line 332, ../../../scss/_app_styles.scss */ #top-headers #group-level-header #second-header.top-bar .top-bar-section li a:not(.button):hover, #top-headers #group-level-header #second-header.top-bar .top-bar-section li:not(.has-form):hover { background-color: #075b60; color: #fff; } -/* line 342, ../../../scss/_app_styles.scss */ +/* line 340, ../../../scss/_app_styles.scss */ #top-headers ul.dropdown { box-shadow: 0px 2px 5px black; opacity: 1; } -/* line 347, ../../../scss/_app_styles.scss */ +/* line 345, ../../../scss/_app_styles.scss */ #top-headers #search_text { border-bottom: solid thin #E1E1E1; background-color: #fafafa; @@ -23779,21 +23773,20 @@ body { box-shadow: none; top: 10px; } -/* line 359, ../../../scss/_app_styles.scss */ +/* line 357, ../../../scss/_app_styles.scss */ #top-headers #search_text:focus { border-bottom-color: #2b2c2d; transition: 1s ease-out; } -/* line 365, ../../../scss/_app_styles.scss */ +/* line 363, ../../../scss/_app_styles.scss */ #top-headers #search-submit { - background-color: #fafafa; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; + /* background-color: #fafafa;*/ + /*color: gray; + top: -3px;*/ + width: 60px; + /* height:-40px;*/ } -/* line 375, ../../../scss/_app_styles.scss */ +/* line 372, ../../../scss/_app_styles.scss */ #top-headers #search-submit:hover { opacity: 1; color: white; @@ -23801,57 +23794,88 @@ body { transition: 0.8s ease-out; } -/* line 413, ../../../scss/_app_styles.scss */ +/* line 410, ../../../scss/_app_styles.scss */ .top-bar .active { background-color: #0b838a !important; } -/* line 419, ../../../scss/_app_styles.scss */ +/* line 416, ../../../scss/_app_styles.scss */ .top-bar .logout { background-color: #f04124 !important; } -/* line 423, ../../../scss/_app_styles.scss */ +/* line 420, ../../../scss/_app_styles.scss */ .top-bar .logout:hover { background-color: #d32a0e !important; transition: background-color 400ms ease-out; } -/* line 465, ../../../scss/_app_styles.scss */ +/* line 460, ../../../scss/_app_styles.scss */ +html, body { + height: 100%; + /* +overflow-x: hidden;*/ +} + +/* line 464, ../../../scss/_app_styles.scss */ +#gbase_wrap { + /*min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto; + /* Pad bottom by footer height */ + padding: 0 0 60px; + overflow-x: hidden; +} + +/* line 473, ../../../scss/_app_styles.scss */ +#base_wrap { + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 -60px; +} + +/* line 484, ../../../scss/_app_styles.scss */ body > footer { padding: 10px 5px; position: relative; background-color: rgba(0, 0, 0, 0.8); + height: auto; + width: 100%; + display: table; } -/* line 471, ../../../scss/_app_styles.scss */ +/* line 494, ../../../scss/_app_styles.scss */ body > footer ul { list-style-type: none; text-decoration: none; } -/* line 474, ../../../scss/_app_styles.scss */ +/* line 497, ../../../scss/_app_styles.scss */ body > footer ul li { font-size: 15px; margin-bottom: 5px; } -/* line 479, ../../../scss/_app_styles.scss */ +/* line 502, ../../../scss/_app_styles.scss */ body > footer p { margin: 10px; font-size: 18px; } -/* line 483, ../../../scss/_app_styles.scss */ +/* line 506, ../../../scss/_app_styles.scss */ body > footer h2 { font-size: 25px; } -/* line 486, ../../../scss/_app_styles.scss */ +/* line 509, ../../../scss/_app_styles.scss */ body > footer li { color: #bbbbbb; } -/* line 489, ../../../scss/_app_styles.scss */ +/* line 512, ../../../scss/_app_styles.scss */ body > footer a { color: #bbbbbb; margin-top: 0; padding: 0; display: inline; } -/* line 494, ../../../scss/_app_styles.scss */ +/* line 517, ../../../scss/_app_styles.scss */ body > footer a:hover { text-decoration: none; color: #ffffff; @@ -23859,95 +23883,147 @@ body > footer a:hover { padding: 0; display: inline; } -/* line 504, ../../../scss/_app_styles.scss */ +/* line 525, ../../../scss/_app_styles.scss */ +body > footer .myfooter { + display: table-row; + height: 1px; +} +/* line 530, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer-section { color: #ffffff; text-align: center; } -/* line 508, ../../../scss/_app_styles.scss */ +/* line 534, ../../../scss/_app_styles.scss */ body > footer .myfooter .inline_mar-right { display: inline-block; margin: 0 25px 15px 0; } -/* line 513, ../../../scss/_app_styles.scss */ +/* line 539, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content { margin: 20px; } -/* line 516, ../../../scss/_app_styles.scss */ +/* line 542, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_content .footer-logo { height: 65px; width: 150px; } -/* line 521, ../../../scss/_app_styles.scss */ +/* line 547, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse { max-height: 78px; overflow: hidden; transition: all 0.5s ease-out; } -/* line 526, ../../../scss/_app_styles.scss */ +/* line 552, ../../../scss/_app_styles.scss */ body > footer .myfooter .links_collapse ul { display: inline; padding: 0; margin: 0px !important; } -/* line 532, ../../../scss/_app_styles.scss */ +/* line 558, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - margin: 20px; text-align: left; } -/* line 538, ../../../scss/_app_styles.scss */ +/* line 563, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 542, ../../../scss/_app_styles.scss */ +/* line 567, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .flinks { + font-size: 20px; + color: #999; + line-height: 1px; +} +/* line 572, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { + font-size: 24px; + margin-right: 5px; +} +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 546, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .show_foot_links i { + font-size: 24px; + margin-right: 5px; +} +/* line 583, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } +/* line 590, ../../../scss/_app_styles.scss */ +body > footer hr.footerlogo-divider { + border-color: #555; + margin-top: 10px; +} + +/* line 596, ../../../scss/_app_styles.scss */ +body > footer ul#footerlogo li { + margin: 0px 5px; + display: inline; +} + +/* line 602, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} + +/* line 608, ../../../scss/_app_styles.scss */ +body > footer ul#poweredlogos { + margin-left: 0px; +} + +/* line 612, ../../../scss/_app_styles.scss */ +#poweredlogos li { + margin: 0px 5px; + display: inline; +} + +/* line 618, ../../../scss/_app_styles.scss */ +.no-gap ul { + margin-left: 0rem; +} -/* line 555, ../../../scss/_app_styles.scss */ +/* line 623, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 560, ../../../scss/_app_styles.scss */ +/* line 628, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 566, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 569, ../../../scss/_app_styles.scss */ +/* line 638, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 573, ../../../scss/_app_styles.scss */ +/* line 642, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 644, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 577, ../../../scss/_app_styles.scss */ +/* line 646, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 583, ../../../scss/_app_styles.scss */ +/* line 652, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -23956,135 +24032,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 587, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 590, ../../../scss/_app_styles.scss */ +/* line 659, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 595, ../../../scss/_app_styles.scss */ +/* line 664, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 669, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 604, ../../../scss/_app_styles.scss */ +/* line 673, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 612, ../../../scss/_app_styles.scss */ +/* line 681, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 618, ../../../scss/_app_styles.scss */ +/* line 687, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 695, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 639, ../../../scss/_app_styles.scss */ +/* line 708, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 647, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 719, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 723, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 658, ../../../scss/_app_styles.scss */ +/* line 727, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 731, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 669, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 672, ../../../scss/_app_styles.scss */ +/* line 741, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 754, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 690, ../../../scss/_app_styles.scss */ +/* line 759, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 692, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 695, ../../../scss/_app_styles.scss */ +/* line 764, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 708, ../../../scss/_app_styles.scss */ +/* line 777, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 713, ../../../scss/_app_styles.scss */ +/* line 782, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 726, ../../../scss/_app_styles.scss */ +/* line 795, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 732, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 735, ../../../scss/_app_styles.scss */ +/* line 804, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24094,13 +24170,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 745, ../../../scss/_app_styles.scss */ +/* line 814, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 755, ../../../scss/_app_styles.scss */ +/* line 824, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24111,51 +24187,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 767, ../../../scss/_app_styles.scss */ +/* line 836, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 778, ../../../scss/_app_styles.scss */ +/* line 847, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 783, ../../../scss/_app_styles.scss */ +/* line 852, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 788, ../../../scss/_app_styles.scss */ +/* line 857, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 862, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 798, ../../../scss/_app_styles.scss */ +/* line 867, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 804, ../../../scss/_app_styles.scss */ +/* line 873, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 810, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 813, ../../../scss/_app_styles.scss */ +/* line 882, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 818, ../../../scss/_app_styles.scss */ +/* line 887, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24164,28 +24240,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 827, ../../../scss/_app_styles.scss */ +/* line 896, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 832, ../../../scss/_app_styles.scss */ +/* line 901, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 836, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 839, ../../../scss/_app_styles.scss */ +/* line 908, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 914, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24193,23 +24269,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 851, ../../../scss/_app_styles.scss */ +/* line 920, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 924, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 859, ../../../scss/_app_styles.scss */ +/* line 928, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 864, ../../../scss/_app_styles.scss */ +/* line 933, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24219,7 +24295,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 875, ../../../scss/_app_styles.scss */ +/* line 944, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24228,40 +24304,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 888, ../../../scss/_app_styles.scss */ +/* line 957, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 890, ../../../scss/_app_styles.scss */ +/* line 959, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 963, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 898, ../../../scss/_app_styles.scss */ +/* line 967, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 902, ../../../scss/_app_styles.scss */ +/* line 971, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 975, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 981, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 919, ../../../scss/_app_styles.scss */ +/* line 988, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24270,31 +24346,31 @@ article section.content { } /* Default card */ -/* line 927, ../../../scss/_app_styles.scss */ +/* line 996, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 932, ../../../scss/_app_styles.scss */ +/* line 1001, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 940, ../../../scss/_app_styles.scss */ +/* line 1009, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 944, ../../../scss/_app_styles.scss */ +/* line 1013, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 952, ../../../scss/_app_styles.scss */ +/* line 1021, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24302,20 +24378,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 961, ../../../scss/_app_styles.scss */ +/* line 1030, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 1034, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 1038, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 981, ../../../scss/_app_styles.scss */ +/* line 1050, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24336,39 +24412,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1001, ../../../scss/_app_styles.scss */ +/* line 1070, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1006, ../../../scss/_app_styles.scss */ +/* line 1075, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1010, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1013, ../../../scss/_app_styles.scss */ +/* line 1082, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1017, ../../../scss/_app_styles.scss */ +/* line 1086, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1021, ../../../scss/_app_styles.scss */ +/* line 1090, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1029, ../../../scss/_app_styles.scss */ +/* line 1098, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24376,13 +24452,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1105, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1041, ../../../scss/_app_styles.scss */ +/* line 1110, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24396,13 +24472,13 @@ input.node-title { } /*for graph and location*/ -/* line 1051, ../../../scss/_app_styles.scss */ +/* line 1120, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1056, ../../../scss/_app_styles.scss */ +/* line 1125, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24413,7 +24489,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1067, ../../../scss/_app_styles.scss */ +/* line 1136, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24426,7 +24502,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1082, ../../../scss/_app_styles.scss */ +/* line 1151, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24436,102 +24512,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1093, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1165, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1100, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1106, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1109, ../../../scss/_app_styles.scss */ +/* line 1178, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1121, ../../../scss/_app_styles.scss */ +/* line 1190, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1128, ../../../scss/_app_styles.scss */ +/* line 1197, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1203, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1142, ../../../scss/_app_styles.scss */ +/* line 1211, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1146, ../../../scss/_app_styles.scss */ +/* line 1215, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1152, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1155, ../../../scss/_app_styles.scss */ +/* line 1224, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1159, ../../../scss/_app_styles.scss */ +/* line 1228, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1164, ../../../scss/_app_styles.scss */ +/* line 1233, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1171, ../../../scss/_app_styles.scss */ +/* line 1240, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1175, ../../../scss/_app_styles.scss */ +/* line 1244, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1180, ../../../scss/_app_styles.scss */ +/* line 1249, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1186, ../../../scss/_app_styles.scss */ +/* line 1255, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24540,16 +24616,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1264, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1200, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1203, ../../../scss/_app_styles.scss */ +/* line 1272, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24557,7 +24633,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1282, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24567,12 +24643,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1291, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1228, ../../../scss/_app_styles.scss */ +/* line 1297, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24598,7 +24674,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1256, ../../../scss/_app_styles.scss */ +/* line 1325, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24610,12 +24686,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1265, ../../../scss/_app_styles.scss */ +/* line 1334, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1271, ../../../scss/_app_styles.scss */ +/* line 1340, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24633,7 +24709,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1288, ../../../scss/_app_styles.scss */ +/* line 1357, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24646,7 +24722,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1299, ../../../scss/_app_styles.scss */ +/* line 1368, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24656,7 +24732,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1312, ../../../scss/_app_styles.scss */ +/* line 1381, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24670,7 +24746,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1327, ../../../scss/_app_styles.scss */ +/* line 1396, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24686,13 +24762,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1342, ../../../scss/_app_styles.scss */ +/* line 1411, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1347, ../../../scss/_app_styles.scss */ +/* line 1416, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24703,7 +24779,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1356, ../../../scss/_app_styles.scss */ +/* line 1425, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24711,7 +24787,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1365, ../../../scss/_app_styles.scss */ +/* line 1434, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24725,83 +24801,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1382, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1385, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1388, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1391, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1397, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1400, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1403, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1406, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1412, ../../../scss/_app_styles.scss */ +/* line 1481, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1418, ../../../scss/_app_styles.scss */ +/* line 1487, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1422, ../../../scss/_app_styles.scss */ +/* line 1491, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1428, ../../../scss/_app_styles.scss */ +/* line 1497, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1433, ../../../scss/_app_styles.scss */ +/* line 1502, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1437, ../../../scss/_app_styles.scss */ +/* line 1506, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1441, ../../../scss/_app_styles.scss */ +/* line 1510, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24812,7 +24888,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1579, ../../../scss/_app_styles.scss */ +/* line 1648, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24825,26 +24901,26 @@ p { height: 100%; } -/* line 1590, ../../../scss/_app_styles.scss */ +/* line 1659, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1595, ../../../scss/_app_styles.scss */ +/* line 1664, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1600, ../../../scss/_app_styles.scss */ +/* line 1669, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1604, ../../../scss/_app_styles.scss */ +/* line 1673, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24871,12 +24947,12 @@ p { border-top-right-radius: 5px; } -/* line 1630, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1633, ../../../scss/_app_styles.scss */ +/* line 1702, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24885,7 +24961,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1642, ../../../scss/_app_styles.scss */ +/* line 1711, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24899,7 +24975,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1660, ../../../scss/_app_styles.scss */ +/* line 1729, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24907,56 +24983,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1740, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1676, ../../../scss/_app_styles.scss */ +/* line 1745, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1682, ../../../scss/_app_styles.scss */ +/* line 1751, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1689, ../../../scss/_app_styles.scss */ +/* line 1758, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1693, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1696, ../../../scss/_app_styles.scss */ +/* line 1765, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1702, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1705, ../../../scss/_app_styles.scss */ +/* line 1774, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1711, ../../../scss/_app_styles.scss */ +/* line 1780, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1717, ../../../scss/_app_styles.scss */ +/* line 1786, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1724, ../../../scss/_app_styles.scss */ +/* line 1793, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24964,15 +25040,15 @@ p { font-size: small; height: 2rem; } -/* line 1731, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1734, ../../../scss/_app_styles.scss */ +/* line 1803, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1748, ../../../scss/_app_styles.scss */ +/* line 1817, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -24980,7 +25056,7 @@ p { height: 8em; overflow: hidden; } -/* line 1758, ../../../scss/_app_styles.scss */ +/* line 1827, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -24992,7 +25068,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1771, ../../../scss/_app_styles.scss */ +/* line 1840, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25002,14 +25078,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1783, ../../../scss/_app_styles.scss */ +/* line 1852, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1792, ../../../scss/_app_styles.scss */ +/* line 1861, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25023,51 +25099,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1809, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1810, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1811, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1813, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1814, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1816, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1817, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1818, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1819, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1820, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1823, ../../../scss/_app_styles.scss */ +/* line 1892, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25080,59 +25156,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1836, ../../../scss/_app_styles.scss */ +/* line 1905, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1841, ../../../scss/_app_styles.scss */ +/* line 1910, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1845, ../../../scss/_app_styles.scss */ +/* line 1914, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1853, ../../../scss/_app_styles.scss */ +/* line 1922, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1857, ../../../scss/_app_styles.scss */ +/* line 1926, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1862, ../../../scss/_app_styles.scss */ +/* line 1931, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1866, ../../../scss/_app_styles.scss */ +/* line 1935, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1871, ../../../scss/_app_styles.scss */ +/* line 1940, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1875, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1947, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1954, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25143,7 +25219,7 @@ p { transform: rotate(30deg); } -/* line 1899, ../../../scss/_app_styles.scss */ +/* line 1968, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25151,19 +25227,17 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1907, ../../../scss/_app_styles.scss */ -.allow.draft { - background-size: 10%; - background-repeat: repeat; - background-image: url("/static/ndf/images/draft-watermark.png"); -} - -/* line 1915, ../../../scss/_app_styles.scss */ +/*.allow.draft{ + background-size: 10%; + background-repeat:repeat; + background-image:url("/static/ndf/images/draft-watermark.png"); +}*/ +/* line 1984, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1989, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25176,7 +25250,7 @@ p { text-align: center; } -/* line 1932, ../../../scss/_app_styles.scss */ +/* line 2001, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25188,12 +25262,12 @@ p { margin-left: 4px; } -/* line 1943, ../../../scss/_app_styles.scss */ +/* line 2012, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 1947, ../../../scss/_app_styles.scss */ +/* line 2016, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25203,14 +25277,14 @@ p { max-width: calc(70rem + 70px); } -/* line 1956, ../../../scss/_app_styles.scss */ +/* line 2025, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 1962, ../../../scss/_app_styles.scss */ +/* line 2031, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25221,7 +25295,7 @@ p { border: thin solid #D3D3D3; } -/* line 1972, ../../../scss/_app_styles.scss */ +/* line 2041, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25229,26 +25303,26 @@ p { transition: all 0.6s ease 0s; } -/* line 1979, ../../../scss/_app_styles.scss */ +/* line 2048, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 1985, ../../../scss/_app_styles.scss */ +/* line 2054, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 1989, ../../../scss/_app_styles.scss */ +/* line 2058, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 1996, ../../../scss/_app_styles.scss */ +/* line 2065, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25264,58 +25338,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2015, ../../../scss/_app_styles.scss */ +/* line 2084, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2021, ../../../scss/_app_styles.scss */ +/* line 2090, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2025, ../../../scss/_app_styles.scss */ +/* line 2094, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2031, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2034, ../../../scss/_app_styles.scss */ +/* line 2103, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2038, ../../../scss/_app_styles.scss */ +/* line 2107, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2043, ../../../scss/_app_styles.scss */ +/* line 2112, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2050, ../../../scss/_app_styles.scss */ +/* line 2119, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2054, ../../../scss/_app_styles.scss */ +/* line 2123, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2059, ../../../scss/_app_styles.scss */ +/* line 2128, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2065, ../../../scss/_app_styles.scss */ +/* line 2134, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25323,16 +25397,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2073, ../../../scss/_app_styles.scss */ +/* line 2142, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2078, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2081, ../../../scss/_app_styles.scss */ +/* line 2150, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25342,7 +25416,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2091, ../../../scss/_app_styles.scss */ +/* line 2160, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25351,12 +25425,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2099, ../../../scss/_app_styles.scss */ +/* line 2168, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2174, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25364,7 +25438,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2113, ../../../scss/_app_styles.scss */ + /* line 2182, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25372,7 +25446,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2121, ../../../scss/_app_styles.scss */ + /* line 2190, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25380,7 +25454,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2129, ../../../scss/_app_styles.scss */ + /* line 2198, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25388,20 +25462,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2137, ../../../scss/_app_styles.scss */ + /* line 2206, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2143, ../../../scss/_app_styles.scss */ +/* line 2212, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2149, ../../../scss/_app_styles.scss */ +/* line 2218, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25409,7 +25483,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2157, ../../../scss/_app_styles.scss */ +/* line 2226, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25423,12 +25497,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2171, ../../../scss/_app_styles.scss */ +/* line 2240, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2175, ../../../scss/_app_styles.scss */ +/* line 2244, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25438,11 +25512,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2184, ../../../scss/_app_styles.scss */ +/* line 2253, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2188, ../../../scss/_app_styles.scss */ +/* line 2257, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25451,17 +25525,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2195, ../../../scss/_app_styles.scss */ +/* line 2264, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2201, ../../../scss/_app_styles.scss */ +/* line 2270, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2206, ../../../scss/_app_styles.scss */ +/* line 2275, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25469,20 +25543,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2212, ../../../scss/_app_styles.scss */ +/* line 2281, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2214, ../../../scss/_app_styles.scss */ +/* line 2283, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2218, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2219, ../../../scss/_app_styles.scss */ +/* line 2288, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25490,11 +25564,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2225, ../../../scss/_app_styles.scss */ +/* line 2294, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2232, ../../../scss/_app_styles.scss */ +/* line 2301, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25505,30 +25579,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2311, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2249, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2252, ../../../scss/_app_styles.scss */ +/* line 2321, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2259, ../../../scss/_app_styles.scss */ +/* line 2328, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2264, ../../../scss/_app_styles.scss */ +/* line 2333, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2337, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25538,27 +25612,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2278, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2350, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2354, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2361, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2297, ../../../scss/_app_styles.scss */ +/* line 2366, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25570,7 +25644,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2308, ../../../scss/_app_styles.scss */ +/* line 2377, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25580,7 +25654,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2317, ../../../scss/_app_styles.scss */ +/* line 2386, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25588,25 +25662,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2325, ../../../scss/_app_styles.scss */ +/* line 2394, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2329, ../../../scss/_app_styles.scss */ +/* line 2398, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2342, ../../../scss/_app_styles.scss */ +/* line 2411, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2349, ../../../scss/_app_styles.scss */ +/* line 2418, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25615,69 +25689,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2357, ../../../scss/_app_styles.scss */ +/* line 2426, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2361, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2367, ../../../scss/_app_styles.scss */ +/* line 2436, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2374, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2377, ../../../scss/_app_styles.scss */ +/* line 2446, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2381, ../../../scss/_app_styles.scss */ +/* line 2450, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2394, ../../../scss/_app_styles.scss */ +/* line 2463, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2400, ../../../scss/_app_styles.scss */ +/* line 2469, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2404, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2407, ../../../scss/_app_styles.scss */ +/* line 2476, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2414, ../../../scss/_app_styles.scss */ +/* line 2483, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2421, ../../../scss/_app_styles.scss */ +/* line 2490, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2429, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25712,23 +25786,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2430, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2433, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2436, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2439, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2442, ../../../scss/_app_styles.scss */ +/* line 2511, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25737,45 +25811,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2450, ../../../scss/_app_styles.scss */ +/* line 2519, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2456, ../../../scss/_app_styles.scss */ +/* line 2525, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2464, ../../../scss/_app_styles.scss */ +/* line 2533, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2472, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2475, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2478, ../../../scss/_app_styles.scss */ +/* line 2547, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2483, ../../../scss/_app_styles.scss */ +/* line 2552, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25784,17 +25858,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2491, ../../../scss/_app_styles.scss */ +/* line 2560, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2501, ../../../scss/_app_styles.scss */ +/* line 2570, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2505, ../../../scss/_app_styles.scss */ +/* line 2574, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25802,11 +25876,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2512, ../../../scss/_app_styles.scss */ +/* line 2581, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2516, ../../../scss/_app_styles.scss */ +/* line 2585, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25816,7 +25890,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2526, ../../../scss/_app_styles.scss */ +/* line 2595, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25825,58 +25899,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2619, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2552, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2555, ../../../scss/_app_styles.scss */ +/* line 2624, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2560, ../../../scss/_app_styles.scss */ +/* line 2629, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2564, ../../../scss/_app_styles.scss */ +/* line 2633, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2571, ../../../scss/_app_styles.scss */ +/* line 2640, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2578, ../../../scss/_app_styles.scss */ +/* line 2647, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2582, ../../../scss/_app_styles.scss */ +/* line 2651, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2586, ../../../scss/_app_styles.scss */ +/* line 2655, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2624, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2696, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25887,7 +25961,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2707, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25897,7 +25971,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2646, ../../../scss/_app_styles.scss */ +/* line 2715, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25908,25 +25982,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2656, ../../../scss/_app_styles.scss */ +/* line 2725, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2662, ../../../scss/_app_styles.scss */ +/* line 2731, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2671, ../../../scss/_app_styles.scss */ +/* line 2740, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2676, ../../../scss/_app_styles.scss */ +/* line 2745, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25935,96 +26009,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2684, ../../../scss/_app_styles.scss */ +/* line 2753, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2693, ../../../scss/_app_styles.scss */ +/* line 2762, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2701, ../../../scss/_app_styles.scss */ +/* line 2770, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2707, ../../../scss/_app_styles.scss */ +/* line 2776, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2709, ../../../scss/_app_styles.scss */ +/* line 2778, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2782, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2719, ../../../scss/_app_styles.scss */ +/* line 2788, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2732, ../../../scss/_app_styles.scss */ +/* line 2801, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2737, ../../../scss/_app_styles.scss */ +/* line 2806, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2746, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2749, ../../../scss/_app_styles.scss */ +/* line 2818, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2755, ../../../scss/_app_styles.scss */ +/* line 2824, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2762, ../../../scss/_app_styles.scss */ +/* line 2831, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2766, ../../../scss/_app_styles.scss */ +/* line 2835, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2770, ../../../scss/_app_styles.scss */ +/* line 2839, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2775, ../../../scss/_app_styles.scss */ +/* line 2844, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26033,12 +26107,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2789, ../../../scss/_app_styles.scss */ +/* line 2858, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2793, ../../../scss/_app_styles.scss */ +/* line 2862, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26050,45 +26124,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2805, ../../../scss/_app_styles.scss */ +/* line 2874, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2811, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2814, ../../../scss/_app_styles.scss */ +/* line 2883, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2820, ../../../scss/_app_styles.scss */ +/* line 2889, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2830, ../../../scss/_app_styles.scss */ +/* line 2899, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2835, ../../../scss/_app_styles.scss */ +/* line 2904, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2840, ../../../scss/_app_styles.scss */ +/* line 2909, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2847, ../../../scss/_app_styles.scss */ +/* line 2916, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26096,42 +26170,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2857, ../../../scss/_app_styles.scss */ +/* line 2926, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2863, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2866, ../../../scss/_app_styles.scss */ +/* line 2935, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2871, ../../../scss/_app_styles.scss */ +/* line 2940, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2876, ../../../scss/_app_styles.scss */ +/* line 2945, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2886, ../../../scss/_app_styles.scss */ +/* line 2955, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2890, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2893, ../../../scss/_app_styles.scss */ +/* line 2962, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26141,12 +26215,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2971, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2906, ../../../scss/_app_styles.scss */ +/* line 2975, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26155,22 +26229,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2917, ../../../scss/_app_styles.scss */ +/* line 2986, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2923, ../../../scss/_app_styles.scss */ +/* line 2992, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2928, ../../../scss/_app_styles.scss */ +/* line 2997, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26178,53 +26252,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 2936, ../../../scss/_app_styles.scss */ +/* line 3005, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 2940, ../../../scss/_app_styles.scss */ +/* line 3009, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 2946, ../../../scss/_app_styles.scss */ +/* line 3015, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 3022, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 2955, ../../../scss/_app_styles.scss */ +/* line 3024, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 2964, ../../../scss/_app_styles.scss */ +/* line 3033, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 2970, ../../../scss/_app_styles.scss */ +/* line 3039, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 2975, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 2978, ../../../scss/_app_styles.scss */ +/* line 3047, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 2982, ../../../scss/_app_styles.scss */ +/* line 3051, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2987, ../../../scss/_app_styles.scss */ +/* line 3056, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26232,114 +26306,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 2994, ../../../scss/_app_styles.scss */ +/* line 3063, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3001, ../../../scss/_app_styles.scss */ +/* line 3070, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3005, ../../../scss/_app_styles.scss */ +/* line 3074, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3012, ../../../scss/_app_styles.scss */ +/* line 3081, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3017, ../../../scss/_app_styles.scss */ +/* line 3086, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3023, ../../../scss/_app_styles.scss */ +/* line 3092, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3028, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3100, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3106, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3114, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3052, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3055, ../../../scss/_app_styles.scss */ +/* line 3124, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3060, ../../../scss/_app_styles.scss */ +/* line 3129, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3066, ../../../scss/_app_styles.scss */ +/* line 3135, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3070, ../../../scss/_app_styles.scss */ +/* line 3139, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3078, ../../../scss/_app_styles.scss */ +/* line 3147, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3085, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3094, ../../../scss/_app_styles.scss */ +/* line 3163, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3099, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3102, ../../../scss/_app_styles.scss */ +/* line 3171, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26347,102 +26421,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3111, ../../../scss/_app_styles.scss */ +/* line 3180, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3116, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3121, ../../../scss/_app_styles.scss */ +/* line 3190, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3128, ../../../scss/_app_styles.scss */ +/* line 3197, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3136, ../../../scss/_app_styles.scss */ +/* line 3205, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3142, ../../../scss/_app_styles.scss */ +/* line 3211, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3146, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3149, ../../../scss/_app_styles.scss */ +/* line 3218, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3154, ../../../scss/_app_styles.scss */ +/* line 3223, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3159, ../../../scss/_app_styles.scss */ +/* line 3228, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3165, ../../../scss/_app_styles.scss */ +/* line 3234, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3175, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3247, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3182, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3185, ../../../scss/_app_styles.scss */ +/* line 3254, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3189, ../../../scss/_app_styles.scss */ +/* line 3258, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3269, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3208, ../../../scss/_app_styles.scss */ +/* line 3277, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26450,33 +26524,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3215, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3219, ../../../scss/_app_styles.scss */ +/* line 3288, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3224, ../../../scss/_app_styles.scss */ +/* line 3293, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3230, ../../../scss/_app_styles.scss */ +/* line 3299, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3236, ../../../scss/_app_styles.scss */ +/* line 3305, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3240, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3243, ../../../scss/_app_styles.scss */ +/* line 3312, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26486,73 +26560,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3321, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3257, ../../../scss/_app_styles.scss */ +/* line 3326, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3264, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3336, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3274, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3281, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3284, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3287, ../../../scss/_app_styles.scss */ +/* line 3356, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3360, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3296, ../../../scss/_app_styles.scss */ +/* line 3365, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3300, ../../../scss/_app_styles.scss */ +/* line 3369, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3313, ../../../scss/_app_styles.scss */ +/* line 3382, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3318, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26560,11 +26634,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3329, ../../../scss/_app_styles.scss */ +/* line 3398, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3333, ../../../scss/_app_styles.scss */ +/* line 3402, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26575,17 +26649,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3343, ../../../scss/_app_styles.scss */ +/* line 3412, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3417, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3353, ../../../scss/_app_styles.scss */ +/* line 3422, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26594,11 +26668,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3361, ../../../scss/_app_styles.scss */ +/* line 3430, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3366, ../../../scss/_app_styles.scss */ +/* line 3435, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26609,24 +26683,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3449, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3384, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3387, ../../../scss/_app_styles.scss */ +/* line 3456, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3395, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26690,49 +26764,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3459, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3531, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3464, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3468, ../../../scss/_app_styles.scss */ +/* line 3537, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3473, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3477, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3481, ../../../scss/_app_styles.scss */ +/* line 3550, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3488, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3491, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3497, ../../../scss/_app_styles.scss */ +/* line 3566, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26740,7 +26814,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3506, ../../../scss/_app_styles.scss */ +/* line 3575, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26752,32 +26826,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3517, ../../../scss/_app_styles.scss */ +/* line 3586, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3521, ../../../scss/_app_styles.scss */ +/* line 3590, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3525, ../../../scss/_app_styles.scss */ +/* line 3594, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3533, ../../../scss/_app_styles.scss */ +/* line 3602, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3538, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3542, ../../../scss/_app_styles.scss */ +/* line 3611, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26798,31 +26872,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3546, ../../../scss/_app_styles.scss */ +/* line 3615, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3553, ../../../scss/_app_styles.scss */ +/* line 3622, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3560, ../../../scss/_app_styles.scss */ +/* line 3629, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3565, ../../../scss/_app_styles.scss */ +/* line 3634, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3571, ../../../scss/_app_styles.scss */ +/* line 3640, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26832,13 +26906,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3582, ../../../scss/_app_styles.scss */ +/* line 3651, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3587, ../../../scss/_app_styles.scss */ +/* line 3656, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26847,17 +26921,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3595, ../../../scss/_app_styles.scss */ +/* line 3664, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3599, ../../../scss/_app_styles.scss */ +/* line 3668, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3607, ../../../scss/_app_styles.scss */ +/* line 3676, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26865,20 +26939,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3637, ../../../scss/_app_styles.scss */ +/* line 3706, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3641, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3644, ../../../scss/_app_styles.scss */ +/* line 3713, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3718, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26886,71 +26960,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3657, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3661, ../../../scss/_app_styles.scss */ +/* line 3730, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3735, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3672, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3675, ../../../scss/_app_styles.scss */ +/* line 3744, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3681, ../../../scss/_app_styles.scss */ +/* line 3750, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3685, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3692, ../../../scss/_app_styles.scss */ +/* line 3761, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3694, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3698, ../../../scss/_app_styles.scss */ +/* line 3767, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3702, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3705, ../../../scss/_app_styles.scss */ +/* line 3774, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3712, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3715, ../../../scss/_app_styles.scss */ +/* line 3784, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26960,17 +27034,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3726, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3729, ../../../scss/_app_styles.scss */ +/* line 3798, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3736, ../../../scss/_app_styles.scss */ +/* line 3805, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26979,58 +27053,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3754, ../../../scss/_app_styles.scss */ +/* line 3823, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3828, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3763, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3766, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3773, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3776, ../../../scss/_app_styles.scss */ +/* line 3845, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3786, ../../../scss/_app_styles.scss */ +/* line 3855, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3792, ../../../scss/_app_styles.scss */ +/* line 3861, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3865, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3800, ../../../scss/_app_styles.scss */ +/* line 3869, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3804, ../../../scss/_app_styles.scss */ +/* line 3873, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27038,27 +27112,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3813, ../../../scss/_app_styles.scss */ +/* line 3882, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3817, ../../../scss/_app_styles.scss */ +/* line 3886, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3825, ../../../scss/_app_styles.scss */ +/* line 3894, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3899, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27066,11 +27140,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3838, ../../../scss/_app_styles.scss */ +/* line 3907, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27078,18 +27152,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3850, ../../../scss/_app_styles.scss */ +/* line 3919, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3854, ../../../scss/_app_styles.scss */ +/* line 3923, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3862, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27097,12 +27171,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3870, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3876, ../../../scss/_app_styles.scss */ +/* line 3945, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27111,21 +27185,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3885, ../../../scss/_app_styles.scss */ +/* line 3954, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3890, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3895, ../../../scss/_app_styles.scss */ +/* line 3964, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27136,24 +27210,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3974, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3909, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3912, ../../../scss/_app_styles.scss */ +/* line 3981, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3986, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3990, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27164,7 +27238,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3931, ../../../scss/_app_styles.scss */ +/* line 4000, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27172,15 +27246,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3939, ../../../scss/_app_styles.scss */ +/* line 4008, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3941, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3944, ../../../scss/_app_styles.scss */ +/* line 4013, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27190,27 +27264,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3953, ../../../scss/_app_styles.scss */ +/* line 4022, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 4028, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3966, ../../../scss/_app_styles.scss */ +/* line 4035, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3970, ../../../scss/_app_styles.scss */ +/* line 4039, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3975, ../../../scss/_app_styles.scss */ +/* line 4044, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27231,28 +27305,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3996, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 3999, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4003, ../../../scss/_app_styles.scss */ +/* line 4072, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4009, ../../../scss/_app_styles.scss */ +/* line 4078, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4014, ../../../scss/_app_styles.scss */ +/* line 4083, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27260,12 +27334,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4023, ../../../scss/_app_styles.scss */ +/* line 4092, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27276,14 +27350,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4102, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4038, ../../../scss/_app_styles.scss */ +/* line 4107, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27295,48 +27369,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4048, ../../../scss/_app_styles.scss */ +/* line 4117, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4052, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4055, ../../../scss/_app_styles.scss */ +/* line 4124, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4059, ../../../scss/_app_styles.scss */ +/* line 4128, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4132, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4068, ../../../scss/_app_styles.scss */ +/* line 4137, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4074, ../../../scss/_app_styles.scss */ +/* line 4143, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4080, ../../../scss/_app_styles.scss */ +/* line 4149, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27344,7 +27418,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4087, ../../../scss/_app_styles.scss */ + /* line 4156, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27352,7 +27426,7 @@ course-title { background-color: #999999; } - /* line 4093, ../../../scss/_app_styles.scss */ + /* line 4162, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27362,7 +27436,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4103, ../../../scss/_app_styles.scss */ + /* line 4172, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27370,7 +27444,7 @@ course-title { background-color: #999999; } - /* line 4109, ../../../scss/_app_styles.scss */ + /* line 4178, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27379,14 +27453,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4116, ../../../scss/_app_styles.scss */ +/* line 4185, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4123, ../../../scss/_app_styles.scss */ +/* line 4192, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27403,7 +27477,7 @@ course-title { font-size: 1.8em; } -/* line 4139, ../../../scss/_app_styles.scss */ +/* line 4208, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27413,7 +27487,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4148, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27423,7 +27497,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4157, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27433,7 +27507,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4167, ../../../scss/_app_styles.scss */ +/* line 4236, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27444,12 +27518,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4252, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4187, ../../../scss/_app_styles.scss */ +/* line 4256, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27458,12 +27532,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4195, ../../../scss/_app_styles.scss */ +/* line 4264, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4200, ../../../scss/_app_styles.scss */ +/* line 4269, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27478,31 +27552,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4214, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4217, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4220, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4223, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4226, ../../../scss/_app_styles.scss */ +/* line 4295, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4230, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4235, ../../../scss/_app_styles.scss */ +/* line 4304, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27511,46 +27585,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4243, ../../../scss/_app_styles.scss */ +/* line 4312, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4319, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4255, ../../../scss/_app_styles.scss */ +/* line 4324, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4259, ../../../scss/_app_styles.scss */ +/* line 4328, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4263, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4266, ../../../scss/_app_styles.scss */ +/* line 4335, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4270, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4274, ../../../scss/_app_styles.scss */ +/* line 4343, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4282, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27561,19 +27635,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4362, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4299, ../../../scss/_app_styles.scss */ +/* line 4368, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4305, ../../../scss/_app_styles.scss */ +/* line 4374, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27585,7 +27659,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4316, ../../../scss/_app_styles.scss */ +/* line 4385, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27594,7 +27668,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4325, ../../../scss/_app_styles.scss */ +/* line 4394, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27608,51 +27682,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4339, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4342, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4345, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4348, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4351, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4354, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4357, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4363, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4369, ../../../scss/_app_styles.scss */ +/* line 4438, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4373, ../../../scss/_app_styles.scss */ +/* line 4442, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27663,7 +27737,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4452, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27671,54 +27745,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4391, ../../../scss/_app_styles.scss */ +/* line 4460, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4396, ../../../scss/_app_styles.scss */ +/* line 4465, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4400, ../../../scss/_app_styles.scss */ +/* line 4469, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4404, ../../../scss/_app_styles.scss */ +/* line 4473, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4408, ../../../scss/_app_styles.scss */ +/* line 4477, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4481, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4416, ../../../scss/_app_styles.scss */ +/* line 4485, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4426, ../../../scss/_app_styles.scss */ +/* line 4495, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4499, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4434, ../../../scss/_app_styles.scss */ +/* line 4503, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27729,17 +27803,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4446, ../../../scss/_app_styles.scss */ +/* line 4515, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4519, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4455, ../../../scss/_app_styles.scss */ +/* line 4524, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27751,24 +27825,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4536, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4471, ../../../scss/_app_styles.scss */ + /* line 4540, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27776,12 +27850,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4479, ../../../scss/_app_styles.scss */ + /* line 4548, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4490, ../../../scss/_app_styles.scss */ +/* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27792,12 +27866,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4490, ../../../scss/_app_styles.scss */ + /* line 4559, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4502, ../../../scss/_app_styles.scss */ +/* line 4571, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27808,7 +27882,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4512, ../../../scss/_app_styles.scss */ +/* line 4581, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27816,28 +27890,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4520, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4523, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4526, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4533, ../../../scss/_app_styles.scss */ +/* line 4602, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4539, ../../../scss/_app_styles.scss */ +/* line 4608, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27848,7 +27922,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4550, ../../../scss/_app_styles.scss */ +/* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27856,18 +27930,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4550, ../../../scss/_app_styles.scss */ + /* line 4619, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4562, ../../../scss/_app_styles.scss */ +/* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27875,40 +27949,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4562, ../../../scss/_app_styles.scss */ + /* line 4631, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4572, ../../../scss/_app_styles.scss */ +/* line 4641, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4576, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4648, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4585, ../../../scss/_app_styles.scss */ +/* line 4654, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4589, ../../../scss/_app_styles.scss */ +/* line 4658, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4595, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27921,25 +27995,25 @@ course-title { border: 1px solid #eee; } -/* line 4607, ../../../scss/_app_styles.scss */ +/* line 4676, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4611, ../../../scss/_app_styles.scss */ +/* line 4680, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4615, ../../../scss/_app_styles.scss */ +/* line 4684, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4621, ../../../scss/_app_styles.scss */ +/* line 4690, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27948,7 +28022,7 @@ h5 { margin-left: 5px; } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4698, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27957,12 +28031,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4636, ../../../scss/_app_styles.scss */ +/* line 4705, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4640, ../../../scss/_app_styles.scss */ +/* line 4709, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27971,12 +28045,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4647, ../../../scss/_app_styles.scss */ +/* line 4716, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4653, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27988,19 +28062,27 @@ h5 { color: #6153AE; } -/* line 4664, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; margin: 5px 5px 8px 0px; border: 1px solid #6153AE; - background: #fff; - font-size: 23px; + background: #f1f1f1; + font-size: 17px; + margin: 7px 19px; + display: inline-block; color: #6153AE; } +/* line 4745, ../../../scss/_app_styles.scss */ +.add-note-btn:hover { + cursor: pointer; + color: #6153AE; + background-color: #ffffff; +} -/* line 4675, ../../../scss/_app_styles.scss */ +/* line 4753, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28012,7 +28094,3790 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4686, ../../../scss/_app_styles.scss */ +/* line 4764, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } + +/*Blue color variable*/ +/*Orange color variables*/ +/* module detail settings drop */ +/* line 4795, ../../../scss/_app_styles.scss */ +.explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4798, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4809, ../../../scss/_app_styles.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4815, ../../../scss/_app_styles.scss */ +.explore-settings-drop a { + font-size: 16px; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4818, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop { + margin-left: 59%; + display: inline-block; +} +/* line 4821, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 4832, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 4838, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop a { + font-size: 16px; +} +/* line 4841, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 4849, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4853, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} +/* line 4866, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 4870, ../../../scss/_app_styles.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} + +/* line 4877, ../../../scss/_app_styles.scss */ +.edit_button { + color: #717171; +} +/* line 4879, ../../../scss/_app_styles.scss */ +.edit_button:hover { + border-left: 2px solid #ce7869; +} + +/* line 4885, ../../../scss/_app_styles.scss */ +.left-btn { + margin-top: 0px; + margin-right: 0px; + text-transform: capitalize; + width: 100%; + background-color: #ffffff; + display: block; + padding: 0.5rem; + color: #555555; + font-size: 11px; +} +/* line 4895, ../../../scss/_app_styles.scss */ +.left-btn:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4904, ../../../scss/_app_styles.scss */ +.chnge-img:hover { + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid #ce7869; +} + +/* line 4915, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; +} +/* line 4923, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 4936, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; +} +/* line 4941, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; +} +/* line 4949, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; +} +/* line 4953, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 4959, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; +} +/* line 4970, ../../../scss/_app_styles.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; +} + +/* line 4979, ../../../scss/_app_styles.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 4984, ../../../scss/_app_styles.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); +} +/* line 4990, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; +} +/* line 4993, ../../../scss/_app_styles.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; +} +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5007, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5010, ../../../scss/_app_styles.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } +} + +/* line 5030, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 5033, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li { + display: inline-block; + margin-left: -35px; +} +@media only screen and (max-width: 40em) { + /* line 5033, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + margin-left: 0px; + } +} +/* line 5040, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #164a7b; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5050, ../../../scss/_app_styles.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5059, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; + } + /* line 5062, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li { + /* + display: inline-block;*/ + } + /* line 5065, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a { + list-style-type: none; + /*display: inline-block;*/ + padding: 1px 2px 3px; + color: #164a7b; + cursor: pointer; + font-size: 16px; + letter-spacing: 0.3px; + border-bottom: 2px solid transparent; + } + /* line 5076, ../../../scss/_app_styles.scss */ + ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* line 5089, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 5093, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 5096, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 5107, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +@media only screen and (max-width: 40em) { + /* line 5115, ../../../scss/_app_styles.scss */ + ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; + } + /* line 5119, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li { + /* display: inline-block;*/ + background-color: #164a7b; + } + /* line 5122, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a { + list-style-type: none; + /*margin-right:-2px;*/ + background-color: #164a7b; + padding: 1px 1px 1px; + cursor: pointer; + font-size: 16px; + /* display: inline-block;*/ + letter-spacing: 0.3px; + border-bottom: 3px solid transparent; + color: #ffffff !important; + } + /* line 5133, ../../../scss/_app_styles.scss */ + ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; + } +} +/* Secondary Top Bar */ +/* line 5145, ../../../scss/_app_styles.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 5154, ../../../scss/_app_styles.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 5158, ../../../scss/_app_styles.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; + font-weight: 600; +} + +/* line 5168, ../../../scss/_app_styles.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; +} +/* line 5180, ../../../scss/_app_styles.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 5187, ../../../scss/_app_styles.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; + margin-top: -8px; +} + +/* line 5198, ../../../scss/_app_styles.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 5203, ../../../scss/_app_styles.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 5206, ../../../scss/_app_styles.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 5216, ../../../scss/_app_styles.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 5224, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; +} +/* line 5226, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 5237, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 5245, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { + display: none; +} +/* line 5251, ../../../scss/_app_styles.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 5262, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 5264, ../../../scss/_app_styles.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 5271, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 5278, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5284, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 5292, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 5302, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 5311, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 5318, ../../../scss/_app_styles.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/** + * Sass styles related to unit cards + */ +/* line 5346, ../../../scss/_app_styles.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; + height: 210px; +} +/* line 5360, ../../../scss/_app_styles.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 5371, ../../../scss/_app_styles.scss */ +.unit_card .unit_header { + display: table; +} +/* line 5373, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; +} +/* line 5381, ../../../scss/_app_styles.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 17px; + font-weight: 500; + letter-spacing: 0.5px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + /* white-space: nowrap;*/ + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; +} +/* line 5395, ../../../scss/_app_styles.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 5411, ../../../scss/_app_styles.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 5417, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions { + padding: 5px 0px; +} +/* line 5422, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol { + background: #a2238d; + height: 24px; + text-align: center; + color: #ffffff; + font-size: 18px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 90px !important; + margin-top: 8px !important; + letter-spacing: 0.4px; +} +/* line 5434, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 5439, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics { + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom: 2px solid #a2238d; +} +/* line 5447, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .unit-card-analytics-points { + background: #ffffff; + color: #a2238d; + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight: bold; + cursor: default; +} +/* line 5458, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + margin-left: -20px; +} +/* line 5467, ../../../scss/_app_styles.scss */ +.unit_card .unit_actions .view_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/* unit cards labels */ +/* line 5477, ../../../scss/_app_styles.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} + +/* line 5493, ../../../scss/_app_styles.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5510, ../../../scss/_app_styles.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5527, ../../../scss/_app_styles.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5545, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5562, ../../../scss/_app_styles.scss */ +.icon-widget { + font-size: 20px; +} +@media only screen and (max-width: 320px) { + /* line 5562, ../../../scss/_app_styles.scss */ + .icon-widget { + font-size: 12px; + } +} + +/* module detail css */ +/* line 5574, ../../../scss/_app_styles.scss */ +.thumbnail_style { + margin-left: -30px; +} + +/* line 5578, ../../../scss/_app_styles.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 5584, ../../../scss/_app_styles.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + padding-left: 10px; + height: auto; + min-height: 143px; +} +/* line 5590, ../../../scss/_app_styles.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 5600, ../../../scss/_app_styles.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 5605, ../../../scss/_app_styles.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 5608, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 5625, ../../../scss/_app_styles.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* Creating and editing course Structure */ +/* line 5642, ../../../scss/_app_styles.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 5651, ../../../scss/_app_styles.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 5654, ../../../scss/_app_styles.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 5661, ../../../scss/_app_styles.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 5668, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 5671, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 5674, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 5682, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 5686, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 5688, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 5698, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 5703, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 5709, ../../../scss/_app_styles.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 5716, ../../../scss/_app_styles.scss */ +.max-width { + max-width: 100%; +} + +/* line 5722, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 5731, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 5744, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 5753, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 5758, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background-color: #ffffff; +} +/* line 5763, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 5769, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 5773, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 5786, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* Unit_Structure styles */ +/* line 5804, ../../../scss/_app_styles.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 5812, ../../../scss/_app_styles.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 5816, ../../../scss/_app_styles.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 5822, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 5828, ../../../scss/_app_styles.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 5833, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 5842, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5846, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 5851, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 5860, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5867, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 5876, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 5881, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 5884, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 5894, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 5900, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 5908, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 5910, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 5917, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 5926, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 5935, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 5945, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 5951, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 5954, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 5963, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 5968, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 5972, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 5974, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 5977, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 5983, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 5998, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 6006, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 6012, ../../../scss/_app_styles.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 6021, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 6026, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 6033, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6038, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6043, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 6045, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 6049, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 6060, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 6065, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 6071, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 6077, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 6084, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 6091, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6102, ../../../scss/_app_styles.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 6119, ../../../scss/_app_styles.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* lesspn listing LMS */ +/* line 6135, ../../../scss/_app_styles.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 6143, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 6146, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 45px; +} +/* line 6148, ../../../scss/_app_styles.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 6155, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name { + padding-left: 20px; + /* @media screen and (max-width: 480px) { + margin: 25px 10px; + height: 55px; + + >div { + .jqtree-title { + color: #3c5264; + font-size: 16px; + font-weight: 500; + padding-bottom: 1px; + } + } + + }*/ +} +/* line 6157, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 6162, ../../../scss/_app_styles.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + padding-bottom: 2px; +} +/* line 6187, ../../../scss/_app_styles.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 6193, ../../../scss/_app_styles.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 6200, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 6203, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-check-circle-o { + color: green; +} + +/* line 6206, ../../../scss/_app_styles.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 6209, ../../../scss/_app_styles.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* activity player header */ +/* + Styling for the Secondary header 2 +*/ +/* line 6228, ../../../scss/_app_styles.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 6231, ../../../scss/_app_styles.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6239, ../../../scss/_app_styles.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 6248, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6257, ../../../scss/_app_styles.scss */ +.activity_player_header .header_title a { + color: #ffc14f; +} +@media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 938px); + } +} +@media only screen and (min-device-width: 2131px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 970px); + } +} +@media only screen and (max-device-width: 1024px) { + /* line 6248, ../../../scss/_app_styles.scss */ + .activity_player_header .header_title { + text-overflow: ellipsis; + width: calc(100% - 753px); + } +} +/* line 6334, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon { + font-size: 16px; + line-height: 45px; + color: #ffc14f; +} +/* line 6340, ../../../scss/_app_styles.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 6346, ../../../scss/_app_styles.scss */ +.activity_player_header .header_text_sm_block { + padding: 0px 10px; +} +@media screen and (min-width: 1025px) { + /* line 6346, ../../../scss/_app_styles.scss */ + .activity_player_header .header_text_sm_block { + padding: 0px 15px; + } +} +@media screen and (min-width: 1025px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + float: right; + margin-right: 70px; + background-color: rgba(107, 0, 84, 0.97); + } +} +@media screen and (max-width: 1024px) { + /* line 6353, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav { + background-color: rgba(107, 0, 84, 0.97); + } +} +/* line 6366, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 6372, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; +} +/* line 6376, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_block a { + color: #ffc14f; +} +/* line 6382, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 9px; +} +@media screen and (min-width: 1025px) { + /* line 6382, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_lg_block { + padding: 0px 15px; + } +} +/* line 6390, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 7px; +} +@media screen and (min-width: 1025px) { + /* line 6390, ../../../scss/_app_styles.scss */ + .activity_player_header .lesson-nav .header_text_md_block { + padding: 0px 15px; + } +} +/* line 6399, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 6402, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .back_button i { + color: #71318b; +} +/* line 6408, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 6412, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 6418, ../../../scss/_app_styles.scss */ +.activity_player_header .lesson-nav .pagination:not(i) { + color: #a983b9; +} + +/* line 6426, ../../../scss/_app_styles.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6433, ../../../scss/_app_styles.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6437, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6443, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6449, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6454, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6463, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6467, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6472, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6481, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6488, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6497, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6502, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6505, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6515, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6521, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6529, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6531, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6538, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6547, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6556, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6566, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6571, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6574, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6583, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6588, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6592, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6594, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6597, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6603, ../../../scss/_app_styles.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 6621, ../../../scss/_app_styles.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + min-width: 910px; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 6627, ../../../scss/_app_styles.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 6632, ../../../scss/_app_styles.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 6638, ../../../scss/_app_styles.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 6644, ../../../scss/_app_styles.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 6653, ../../../scss/_app_styles.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 6657, ../../../scss/_app_styles.scss */ +.activity-title > li > a { + color: black; +} + +/* line 6666, ../../../scss/_app_styles.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* Rating css */ +/* line 6674, ../../../scss/_app_styles.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 6676, ../../../scss/_app_styles.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 6684, ../../../scss/_app_styles.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 6686, ../../../scss/_app_styles.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 6692, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 6694, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 6706, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 6713, ../../../scss/_app_styles.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 6724, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 6731, ../../../scss/_app_styles.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 6739, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 6744, ../../../scss/_app_styles.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/* line 6754, ../../../scss/_app_styles.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 6758, ../../../scss/_app_styles.scss */ +.input_links { + margin-left: 10px; +} +/* line 6760, ../../../scss/_app_styles.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 6766, ../../../scss/_app_styles.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 6774, ../../../scss/_app_styles.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 6783, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 6787, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 6793, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 6801, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 6807, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 6816, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 6821, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 6823, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 6826, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 6836, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 6840, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 6843, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 6848, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 6852, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 6863, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 6871, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 6873, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 6876, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 6885, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 6891, ../../../scss/_app_styles.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/* line 6900, ../../../scss/_app_styles.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* The asset tile */ +/* line 6910, ../../../scss/_app_styles.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 6919, ../../../scss/_app_styles.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 6932, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 6941, ../../../scss/_app_styles.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 6946, ../../../scss/_app_styles.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 6951, ../../../scss/_app_styles.scss */ +.group_content .group_sections_content { + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; +} +/* line 6957, ../../../scss/_app_styles.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 6961, ../../../scss/_app_styles.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left: 130px; +} +/* line 6974, ../../../scss/_app_styles.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 6989, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7000, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7006, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 7021, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 7025, ../../../scss/_app_styles.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 7034, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7041, ../../../scss/_app_styles.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 7047, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 7049, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7056, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 7060, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 7066, ../../../scss/_app_styles.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7077, ../../../scss/_app_styles.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 280px; + border: 1px solid #164A7B; +} +/* line 7086, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 7093, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 7098, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 7102, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 7112, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 7119, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 7128, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 7135, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 7142, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 7150, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7166, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 7173, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7184, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7195, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7206, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7217, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 7233, ../../../scss/_app_styles.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 7240, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 7251, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 7262, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 7273, ../../../scss/_app_styles.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 7284, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 7286, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 7294, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 7300, ../../../scss/_app_styles.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7311, ../../../scss/_app_styles.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 7321, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 7324, ../../../scss/_app_styles.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 7329, ../../../scss/_app_styles.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 7340, ../../../scss/_app_styles.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 7350, ../../../scss/_app_styles.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 7353, ../../../scss/_app_styles.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 7357, ../../../scss/_app_styles.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 7363, ../../../scss/_app_styles.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 7365, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 7374, ../../../scss/_app_styles.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 7388, ../../../scss/_app_styles.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 750px; + min-height: 445px; + margin-left: 0px; +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + width: 390px; + } +} +@media only screen and (max-width: 360px) { + /* line 7388, ../../../scss/_app_styles.scss */ + .preview_asset { + min-height: 20px; + } +} + +/* line 7402, ../../../scss/_app_styles.scss */ +.widget_video { + height: 360px; + width: 480px; +} +@media only screen and (max-width: 350px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 290px; + height: 230px; + } +} +@media screen and (min-width: 351px) and (max-width: 850px) { + /* line 7402, ../../../scss/_app_styles.scss */ + .widget_video { + width: 340px; + height: 280px; + } +} + +/* Asset detail */ +/* line 7418, ../../../scss/_app_styles.scss */ +.overlay-head { + height: 60px; + margin-bottom: 20px; +} + +/* line 7424, ../../../scss/_app_styles.scss */ +.listing-row { + margin-top: 10px !important; + background-color: #ffffff; +} + +/* line 7429, ../../../scss/_app_styles.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 7441, ../../../scss/_app_styles.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7448, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +@media screen and (max-width: 325px) { + /* line 7448, ../../../scss/_app_styles.scss */ + .orange-button-template { + font-size: 10px; + } +} +/* line 7462, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7467, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7470, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7473, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7484, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7491, ../../../scss/_app_styles.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 7502, ../../../scss/_app_styles.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* asset description */ +/* line 7511, ../../../scss/_app_styles.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 7518, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7522, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7540, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7556, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7561, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7571, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7578, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7593, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} + +/* line 7604, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 7611, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 7625, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 7630, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 7638, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 7643, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 7648, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 7653, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 7661, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 7665, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 7674, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 7679, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 7685, ../../../scss/_app_styles.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 7691, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; +} + +/* line 7698, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7705, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7708, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} + +/* line 7716, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 7735, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 7744, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 7753, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7776, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7781, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 43%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + color: #fff; +} +/* line 7790, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #719dc7; + border: 1px solid #CCC; + border-bottom: 0px; + color: #fff; +} + +/* line 7803, ../../../scss/_app_styles.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 7811, ../../../scss/_app_styles.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; +} +/* line 7822, ../../../scss/_app_styles.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7828, ../../../scss/_app_styles.scss */ +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7835, ../../../scss/_app_styles.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 7844, ../../../scss/_app_styles.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 7850, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7859, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 7863, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7871, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 7882, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 7890, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 7894, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 7904, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 7909, ../../../scss/_app_styles.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 7917, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 7920, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 7929, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 7934, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 7946, ../../../scss/_app_styles.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 7963, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: 2.7px; +} + +/* line 7968, ../../../scss/_app_styles.scss */ +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; +} +/* line 7974, ../../../scss/_app_styles.scss */ +.empty-dashboard-message > a { + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; +} +/* line 7988, ../../../scss/_app_styles.scss */ +.empty-dashboard-message .button-explore-courses { + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; +} + +/* line 8003, ../../../scss/_app_styles.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 8013, ../../../scss/_app_styles.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8017, ../../../scss/_app_styles.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 8022, ../../../scss/_app_styles.scss */ +.module_card .card_banner { + width: 250px; + height: 290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 8035, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 8040, ../../../scss/_app_styles.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 8052, ../../../scss/_app_styles.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 8067, ../../../scss/_app_styles.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-size: 23px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 8078, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 8081, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8086, ../../../scss/_app_styles.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 8090, ../../../scss/_app_styles.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 8093, ../../../scss/_app_styles.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 8097, ../../../scss/_app_styles.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 8111, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 8117, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 8121, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 8124, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 8128, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 8136, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} +/* line 8149, ../../../scss/_app_styles.scss */ +.module_card .card_summary .card_section .module-card-enrol:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 8155, ../../../scss/_app_styles.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 8172, ../../../scss/_app_styles.scss */ +.inner { + display: inline-block !important; +} + +/* line 8179, ../../../scss/_app_styles.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 8199, ../../../scss/_app_styles.scss */ +.enrollBtn { + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +/*****Toolbar CSS******/ +/* line 8214, ../../../scss/_app_styles.scss */ +#toolbar { + background-color: #3e3e3e; +} + +/* line 8217, ../../../scss/_app_styles.scss */ +.datetime { + color: #eaeaea; + padding: 4px 0px 2px 5px; + font-size: 11px; +} + +/* line 8222, ../../../scss/_app_styles.scss */ +.changefont { + text-align: right; + padding: 2px 5px 1px 0px; +} +/* line 8226, ../../../scss/_app_styles.scss */ +.changefont .minus { + font-size: 60%; + color: #eaeaea; +} +/* line 8229, ../../../scss/_app_styles.scss */ +.changefont .normal { + font-size: 80%; + color: #eaeaea; +} +/* line 8232, ../../../scss/_app_styles.scss */ +.changefont .plus { + font-size: 100%; + color: #eaeaea; +} + +/***********Landing page***************/ +/* line 8241, ../../../scss/_app_styles.scss */ +.about_us { + background: #20ade0; +} + +/* line 8244, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8247, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8257, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8263, ../../../scss/_app_styles.scss */ +.box-content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8276, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8283, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8309, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} + +/* line 8313, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 18px; +} + +/* line 8321, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #107aa1; +} + +/*.searchbar { + margin: 0.8rem; +}*/ +/* line 8330, ../../../scss/_app_styles.scss */ +.search-field { + width: 0; + height: 40px; + margin-left: 1rem; + padding: 0; + border-radius: 50px; + border: none; + transition: all 0.5s ease; +} + +/* line 8340, ../../../scss/_app_styles.scss */ +.expand-search { + width: 80%; + max-width: calc(80% - 3rem); + border: 1px solid #c9c9c9; + padding: .5rem; +} + +/* line 8347, ../../../scss/_app_styles.scss */ +svg { + width: 20px; + height: 20px; +} + +/* line 8352, ../../../scss/_app_styles.scss */ +.button { + border-radius: 50px; +} + +/* line 8357, ../../../scss/_app_styles.scss */ +#page_content { + display: table; + height: auto; + display: table-row; +} + +/* line 8365, ../../../scss/_app_styles.scss */ +.footer_container { + height: auto; + display: table-row; +} + +/* line 8372, ../../../scss/_app_styles.scss */ +#footer { + height: 1px; +} + +/* ----New Footer For NROER -------*/ +/* line 8381, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8399, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8402, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8407, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8413, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8417, ../../../scss/_app_styles.scss */ +.second-has-form { + margin-top: 0px; + margin-bottom: -2px; +} + +/* line 8425, ../../../scss/_app_styles.scss */ +#course-settings-drop { + width: 181px; +} + +/* line 8428, ../../../scss/_app_styles.scss */ +.edit_unit { + height: 37px; + text-align: center; + color: #a2238d; + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.5px; + margin-left: 0px; +} +/* line 8437, ../../../scss/_app_styles.scss */ +.edit_unit:hover { + border-bottom: 2px solid #ffc14e; +} + +/** New cards showing popular ***/ +/* +// font stuff +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900); + + +// colour stuff*/ +/*@white: #ffffff; +@lightBG: #dce1df; +@salmon: #ff6666; + +@teal: #0096a0; +@tealMid: #0ebac7; +@tealContrast: #33ffff; +@tealShade: #007c85; + +@darkGrey: #4f585e;*/ +/*body { + background: #dce1df; + color: #4f585e; + font-family: 'Source Sans Pro', sans-serif; + text-rendering: optimizeLegibility; +}*/ +/*a.btn { + background: #0096a0; + border-radius: 4px; + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25); + color: #ffffff; + display: inline-block; + padding: 6px 30px 8px; + position: relative; + text-decoration: none; + transition: all 0.1s 0s ease-out; + margin-top: -5px; +} + +.no-touch a.btn:hover { + background: lighten(#0096a0,2.5); + box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075); + transform: translateY(-2px); + transition: all 0.25s 0s ease-out; +} + +.no-touch a.btn:active, +a.btn:active { + background: darken(#0096a0,2.5); + box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25); + transform: translate3d(0,1px,0); + transition: all 0.025s 0s ease-out; +} + +div.cards { + margin: 80px auto; + max-width: 100%; + text-align: center; +} + +div.card { + background: #ffffff; + display: inline-block; + margin: 8px; + max-width: 215px; + perspective: 1000; + position: relative; + text-align: left; + transition: all 0.3s 0s ease-in; + z-index: 1; + + img { + max-width: 215px; + } + + div.card-title { + background: #ffffff; + padding: 6px 15px 10px; + position: relative; + z-index: 0; + + a.toggle-info { + border-radius: 32px; + height: 32px; + padding: 0; + position: absolute; + right: 15px; + top: 10px; + width: 32px; + + span { + background:#ffffff; + display: block; + height: 2px; + position: absolute; + top: 16px; + transition: all 0.15s 0s ease-out; + width: 12px; + } + + span.left { + right: 14px; + transform: rotate(45deg); + } + span.right { + left: 14px; + transform: rotate(-45deg); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + letter-spacing: -0.05em; + margin: 0; + padding: 0; + + small { + display: block; + font-size: 13px; + font-weight: 300; + letter-spacing: -0.025em; + } + } + } + + div.card-description { + padding: 0 15px 10px; + position: relative; + font-size: 14px; + } + + div.card-actions { + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075); + padding: 10px 15px 20px; + text-align: center; + } + + div.card-flap { + background: darken(#ffffff,15); + position: absolute; + width: 100%; + transform-origin: top; + transform: rotateX(-90deg); + } + div.flap1 { + transition: all 0.3s 0.3s ease-out; + z-index: -1; + } + div.flap2 { + transition: all 0.3s 0s ease-out; + z-index: -2; + } + +} + +div.cards.showing { + div.card { + cursor: pointer; + opacity: 0.6; + transform: scale(0.88); + } +} + +.no-touch div.cards.showing { + div.card:hover { + opacity: 0.94; + transform: scale(0.92); + } +} + +div.card.show { + opacity: 1 !important; + transform: scale(1) !important; + + div.card-title { + a.toggle-info { + background: #ff6666 !important; + span { + top: 15px; + } + span.left { + right: 10px; + } + span.right { + left: 10px; + } + } + } + div.card-flap { + background: #ffffff; + transform: rotateX(0deg); + } + div.flap1 { + transition: all 0.3s 0s ease-out; + } + div.flap2 { + transition: all 0.3s 0.2s ease-out; + } +} + +.accordion .content { + overflow: hidden; +} +*/ +/* line 8650, ../../../scss/_app_styles.scss */ +.analytics-cards a, .analytics-cards h4 { + font-size: 16px; +} +@media only screen and (max-width: 320px) { + /* line 8650, ../../../scss/_app_styles.scss */ + .analytics-cards a, .analytics-cards h4 { + font-size: 12px; + } +} + +/* line 8658, ../../../scss/_app_styles.scss */ +.reg-users-box { + margin-left: 0px; +} +@media only screen and (max-width: 320px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 52px; + } +} +@media screen and (min-width: 321px) and (max-width: 850px) { + /* line 8658, ../../../scss/_app_styles.scss */ + .reg-users-box { + margin-left: 70px; + } +} + +/* line 8668, ../../../scss/_app_styles.scss */ +.login-box { + background: #fff; + border: 1px solid #ddd; + margin: 100px 0; + padding: 40px 20px 0 20px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-background.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-background.png new file mode 100644 index 0000000000..9e8611db33 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-background.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-logo.png new file mode 100644 index 0000000000..c88fec8e1d Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-metastudio.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-metastudio.svg new file mode 100644 index 0000000000..71b1d2ae5f --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-metastudio.svg @@ -0,0 +1,150 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + metaStudio + a collaborative workspace to reshape education! + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-text.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-text.png new file mode 100644 index 0000000000..cc0a0b79cf Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/abcde-text.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/assigned_to_me.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/assigned_to_me.svg new file mode 100644 index 0000000000..403ca4a2f2 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/assigned_to_me.svg @@ -0,0 +1 @@ +Artboard 1Created by W. X. Cheefrom the Noun Project \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/ccbysa.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/ccbysa.png new file mode 100644 index 0000000000..e76aeffd87 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/ccbysa.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/created_by_me.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/created_by_me.svg new file mode 100644 index 0000000000..36456ea964 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/created_by_me.svg @@ -0,0 +1 @@ +Artboard 34Created by Gregor Cresnarfrom the Noun Project \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-03-44.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-03-44.jpg new file mode 100644 index 0000000000..7a9bb015e6 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-03-44.jpg differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-04-14.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-04-14.jpg new file mode 100644 index 0000000000..b34a5a7948 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-04-14.jpg differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-20-38.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-20-38.jpg new file mode 100644 index 0000000000..c7ca55adda Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-20-38.jpg differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-22-23.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-22-23.jpg new file mode 100644 index 0000000000..cda4242775 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-05-07_18-22-23.jpg differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg new file mode 100644 index 0000000000..3eee75abd6 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov-logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov-logo.png new file mode 100644 index 0000000000..2b648eb105 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov-logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov_logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov_logo.png new file mode 100644 index 0000000000..a81b4e31f2 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/datagov_logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/digital_india.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/digital_india.png new file mode 100644 index 0000000000..510b1e6168 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/digital_india.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/india_gov_logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/india_gov_logo.png new file mode 100644 index 0000000000..98d3f94e04 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/india_gov_logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/logo.png new file mode 100644 index 0000000000..efadd588d2 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd-logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd-logo.png new file mode 100644 index 0000000000..7781468adb Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd-logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd.png new file mode 100644 index 0000000000..3a461603a4 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/mhrd.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/my_gov_logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/my_gov_logo.png new file mode 100644 index 0000000000..be230d55d8 Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ministry_logos/my_gov_logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ncert-logo.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ncert-logo.png new file mode 100644 index 0000000000..0733eb02ac Binary files /dev/null and b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/ncert-logo.png differ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/tiss-logo-text.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/tiss-logo-text.svg index 433efedc6c..94cde3741b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/tiss-logo-text.svg +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/logos/tiss-logo-text.svg @@ -14,7 +14,7 @@ viewBox="0 0 382.63489 421.4801" id="svg6714" version="1.1" - inkscape:version="0.91 r13725" + inkscape:version="0.92.2 (unknown)" sodipodi:docname="tiss-logo-text.svg"> @@ -25,9 +25,9 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="-313.68255" - inkscape:cy="87.882935" + inkscape:zoom="0.49497475" + inkscape:cx="74.453706" + inkscape:cy="316.19572" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" @@ -35,10 +35,10 @@ fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" - inkscape:window-width="1680" - inkscape:window-height="1001" + inkscape:window-width="1366" + inkscape:window-height="715" inkscape:window-x="0" - inkscape:window-y="25" + inkscape:window-y="0" inkscape:window-maximized="1" /> @@ -57,148 +57,145 @@ inkscape:groupmode="layer" id="layer1" transform="translate(-165.82541,-198.76503)"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profile.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profile.svg index abcfd680da..51d7d6a340 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profile.svg +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profile.svg @@ -13,10 +13,15 @@ height="200" id="svg4065" version="1.1" - inkscape:version="0.48.4 r9939" - sodipodi:docname="meta-studio-profile.svg"> + inkscape:version="0.92.2 (unknown)" + sodipodi:docname="metaStudio-profile.svg"> + id="defs4067"> + + @@ -52,47 +57,29 @@ inkscape:groupmode="layer" id="layer1" transform="translate(0,-852.36218)"> - - - - - - - - - - + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profileold.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profileold.svg new file mode 100644 index 0000000000..abcfd680da --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/metaStudio-profileold.svg @@ -0,0 +1,98 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/new_task.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/new_task.svg new file mode 100644 index 0000000000..f585d44966 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/new_task.svg @@ -0,0 +1 @@ +Created by Yo! Babafrom the Noun Project \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/pending_task.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/pending_task.svg new file mode 100644 index 0000000000..a6c5994df1 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/pending_task.svg @@ -0,0 +1 @@ +Created by Rockiconfrom the Noun Project \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/task_list.svg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/task_list.svg new file mode 100644 index 0000000000..3880a06022 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/task_list.svg @@ -0,0 +1 @@ +Created by Georgiana Ionescufrom the Noun Project \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/js/ckeditor-config.js b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/js/ckeditor-config.js index 6c31571d8e..33b2f0c436 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/js/ckeditor-config.js +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/js/ckeditor-config.js @@ -13,6 +13,7 @@ CKEDITOR.plugins.addExternal('addJhapp',basePath+'ndf/js/ckPlugins/addJhapp/','plugin.js'); CKEDITOR.plugins.addExternal('mathjax',basePath+'ndf/bower_components/ckeditor/plugins/mathjax/','plugin.js'); CKEDITOR.plugins.addExternal('font',basePath+'ndf/bower_components/ckeditor/plugins/font/','plugin.js'); + CKEDITOR.plugins.addExternal('youtube','/static/ndf/bower_components/ckeditor-youtube-plugin/youtube/','plugin.js'); }) (); CKEDITOR.config.bodyId = 'scstyle'; @@ -35,7 +36,7 @@ CKEDITOR.editorConfig = function( config ) { { name: 'styles', items: [ 'Format', 'FontSize' ] }, { name: 'paragraph', items : [ 'NumberedList','BulletedList','Mathjax','-','Outdent','Indent','-','Blockquote','JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, { name: 'links', items : [ 'Link','Unlink' ] }, - { name: 'tools', items : [ 'addImage','addAudio','addVideo','addJhapp','Source','Maximize','-'] }, + { name: 'tools', items : [ 'addImage','addAudio','addVideo','addJhapp','Youtube','Source','Maximize','-'] }, { name: 'document', items: [ '-', 'Save', 'NewPage', 'Preview', 'Print', '-', 'Templates' ] }, @@ -51,7 +52,7 @@ CKEDITOR.editorConfig = function( config ) { { name: 'links', items : [ 'Link','Unlink'] }, { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ]}, { name: 'insert', items : [ 'Flash','Iframe' ] }, - { name: 'tools', items : [ 'addImage','addAudio','addVideo','addJhapp','Source', 'Maximize','-','closebtn'] }, + { name: 'tools', items : [ 'addImage','addAudio','addVideo','addJhapp','Youtube','Source', 'Maximize','-','closebtn'] }, { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, { name: 'styles' }, ]; @@ -107,7 +108,7 @@ CKEDITOR.editorConfig = function( config ) { // Simplify the dialog windows. config.removeDialogTabs = 'image:advanced;link:advanced'; - config.extraPlugins = 'addImage,closebtn,addAudio,addVideo,addJhapp,mathjax,justify,font'; + config.extraPlugins = 'addImage,closebtn,addAudio,addVideo,addJhapp,mathjax,justify,font,youtube'; config.allowedContent = true; }; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index b8c941a9dc..5c22b36238 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -30,6 +30,7 @@ $primary-orange : #ce7869; } + /* * Foundation extensions */ @@ -219,10 +220,7 @@ pre{ // ------| following style lines were there in _metastudio_styles.scss |------ -body{ - background-color: #F2F2F2; - font-family: 'ubuntu-regular'; -} + #top-headers { @@ -363,13 +361,12 @@ body{ } #search-submit{ - background-color: #fafafa; - // color: gray; - top: 10px; - position: absolute; - left: -30px; - opacity: 0.3; - color: black; +/* background-color: #fafafa;*/ + /*color: gray; + top: -3px;*/ + width:60px; +/* height:-40px;*/ + } #search-submit:hover { @@ -460,6 +457,28 @@ body{ // } } +html,body{ + height: 100%;/* + overflow-x: hidden;*/ +} +#gbase_wrap{ + /*min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto ; + /* Pad bottom by footer height */ + padding: 0 0 60px; + overflow-x: hidden; +} +#base_wrap{ + min-height: 100%; + + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 -60px; +} body>footer { @@ -467,6 +486,10 @@ body>footer { padding:10px 5px; position: relative; background-color: rgba(0,0,0,0.8); + height:auto; + width:100%; + display:table; + ul { list-style-type: none; @@ -501,6 +524,9 @@ body>footer { } .myfooter { + display:table-row; + height:1px; + .footer-section { color: #ffffff; text-align: center; @@ -532,17 +558,28 @@ body>footer { .footer_link_cont { display: inline-block; vertical-align: top; - margin: 20px; text-align: left; .links_show { //change as per requirement on addition on more links in future max-height: 600px; } + .flinks{ + font-size: 20px; + color: #999; + line-height: 1px; + } + .social_links a{ + font-size: 24px; + margin-right:5px; + } + .show_foot_links { color: #777777; cursor: pointer; - + i{ + font-size: 24px; margin-right:5px; + } &:hover { text-decoration: underline; } @@ -550,6 +587,37 @@ body>footer { } } + hr.footerlogo-divider{ + border-color: #555; + margin-top: 10px; + } +} + +body > footer ul#footerlogo li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; +} + + +body > footer ul#poweredlogos{ + margin-left: 0px; +} + +#poweredlogos li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; } .coll-arrows { @@ -562,6 +630,7 @@ body>footer { } } + /* Sections */ main>article { padding: 0px; @@ -1904,11 +1973,11 @@ aside#help{ } /* Watermark background for node_ajax_content */ -.allow.draft{ +/*.allow.draft{ background-size: 10%; background-repeat:repeat; background-image:url("/static/ndf/images/draft-watermark.png"); -} +}*/ @@ -4667,9 +4736,18 @@ h5{ float: right; margin: 5px 5px 8px 0px; border: 1px solid #6153AE; - background: #fff; - font-size: 23px; + background: #f1f1f1; + font-size: 17px; + margin: 7px 19px; + display: inline-block; color: #6153AE; + + &:hover{ + cursor:pointer; + color: #6153AE; + background-color:#ffffff; + + } } .explore-button { @@ -4687,3 +4765,3909 @@ h5{ cursor:pointer; } } + +/*Blue color variable*/ +$primary-blue : #164A7B; +$secondry-blue : #74b3dc; +$tertiary-blue : #719dc7; + +/*Orange color variables*/ +$primary-orange : #ce7869; +$secondary-orange : #ffc14e; + +$header-link-hover-color: #50c2fa; +$header-link-active-color: #50c2fa; + + +@mixin transition-prop($prop) { + transition: $prop 1s ease; + -webkit-transition: $prop 1s ease; +} + +@mixin transition-two-prop($prop1, $prop2) { + transition: $prop1 1s ease, $prop2 1s ease; + -webkit-transition: $prop1 1s ease, $prop2 1s ease; +} + + +/* module detail settings drop */ + +.explore-settings-drop{ + margin-left: 59%; + display: inline-block; + &> button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; + &:hover{ + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; + } + } + a{ + font-size:16px; + } + .f-dropdown li {.explore-settings-drop{ + margin-left: 59%; + display: inline-block; + &> button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; + &:hover{ + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; + } + } + a{ + font-size:16px; + } + .f-dropdown li { + + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: $primary-blue; + + a{ + color: $secondry-blue; + } + + &:hover{ + border-left: 4px solid $secondary-orange; + } + + } +} + + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: $primary-blue; + + a{ + color: $secondry-blue; + } + + &:hover{ + border-left: 4px solid $secondary-orange; + } + + } +} + +.edit_button{ + color:#717171; + &:hover{ + border-left: 2px solid $primary-orange; + + } +} + +.left-btn{ + margin-top: 0px; + margin-right: 0px; + text-transform: capitalize; + width: 100%; + background-color:#ffffff; + display: block; + padding: 0.5rem; + color: #555555; + font-size:11px; + &:hover{ + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid $primary-orange; + } +} + +.chnge-img{ + &:hover{ + display: block; + padding: 0.5rem; + color: #555555; + border-left: 2px solid $primary-orange; + } + +} +//LMS Page: Unit detail of LMS + +.lms_page{ + .lms_banner{ + width:100%; + height:150px; + //background-image: url('/static/ndf/images/maths-cover.png'); + background-size:100% 100%; + position:relative; + //opacity:0.9; + + &:before { + content: ' '; + background-color: rgba(0,0,0,.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + // z-index: 10; + box-shadow: inset 0 0 40px rgba(0,0,0,.2); + + a{ + cursor: pointer; + } + } + + .div-height{ + //width:100%!important; + height:150px!important; + background-size:100% 100%; + position:absolute!important; + + } + + .enroll_unit>a{ + cursor: pointer; + } + + .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; + + + .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; + } + + .right-margin{ + margin-right: 46px; + } + } + } +} + + + +.border-bottom-lms-header{ + border-bottom: 1px solid #00000029; +} + + +.lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + .course_actions{ + margin-top: 8px; + + >span{ + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + + } + + @media screen and (min-width: 980px) and (max-width: 1000px){ + + .course_actions{ + margin-top: 8px; + + >span{ + margin-left: 50px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + + } + } + } + } +} + +$nav_menu_1_color: #164a7b; +$nav_menu_1_bg_color: #fff; +$nav_menu_1_tab_border: #a2238d; +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: $nav_menu_1_bg_color; + >li { + display: inline-block; + margin-left: -35px; + @media only screen and (max-width: 40em) { + margin-left: 0px; + } + + >a{ + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: $nav_menu_1_color; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + + } +} + +@media only screen and (max-width: 40em) { + ul.nav_menu_1 { + margin-bottom: 0px; + background-color: $nav_menu_1_bg_color; + >li {/* + display: inline-block;*/ + + >a{ + list-style-type: none; + /*display: inline-block;*/ + padding: 1px 2px 3px; + color: $nav_menu_1_color; + cursor: pointer; + font-size: 16px; + letter-spacing: 0.3px; + border-bottom: 2px solid transparent; + + + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + + } + } +} + + + + + +ul.authoring-tab{ + margin-bottom: 0px; + display:inline; + width:50%; + >li { + display: inline-block; + background-color:$nav_menu_1_color; + >a{ + list-style-type: none; + margin-right:-4px; + background-color:$nav_menu_1_color; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color:#ffffff !important; + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + } +} + +@media only screen and (max-width: 40em) { + ul.authoring-tab{ + margin-bottom: 0px; + display:inline; + width:50%; + >li { +/* display: inline-block;*/ + background-color:$nav_menu_1_color; + >a{ + list-style-type: none; + /*margin-right:-2px;*/ + background-color:$nav_menu_1_color; + padding: 1px 1px 1px; + cursor: pointer; + font-size: 16px; + /* display: inline-block;*/ + letter-spacing: 0.3px; + border-bottom: 3px solid transparent; + color:#ffffff !important; + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + } + } +} + + + +/* Secondary Top Bar */ + +.secondary-header-tabs{ + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + + &:hover{ + color: $primary-blue; + + } + &.active{ + color: $primary-blue; + border-bottom: 2px solid $primary-blue; + padding-bottom: 14px; + font-weight: 600; + + } +} + + +.secondary-header-button{ + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; + + &:hover{ + opacity:0.5; + + } +} + + +.top-bar-second, .top-bar-second .name { + height: 55px; + background:#ddeff9; + color: #719dc9; + margin-bottom:30px; + margin-top:-8px; + +} + + +.top-bar-second { + .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; + } + .name { + text-align: center; + + .close-dropdown, .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + // //font-size: 35px; + font-weight: 100; + } + + } + li.toggle-topbar { + i { + color: #fff; + display: inline-block; + vertical-align: bottom; + } + } + .top-bar-second-section { + ul { + li { + background: $primary-blue; + &>a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: $secondry-blue; + line-height: 40px; + font-weight: bold; + // //font-size: 14px; + letter-spacing: 0.5px; + + } + &:hover, &.active { + &>a { + border-left-color: $secondary-orange; + color: $primary-orange; + } + } + } + } + + .dropdown li.parent-link a { + display: none; + } + + .side-bar-menu { + .add_buddy { + i { + color: #2e3f51; + background: #acd4fa; + } + } + } + } +} + +@media screen and (min-width: 40.063em) { + .top-bar-second { + .title-area { + box-shadow: none; + .name { + text-align: right; + } + } + .top-bar-second-section{ + li { + &:not(.has-form) { + a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + + &:hover { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + } + } + &.active { + a:not(.button) { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + } + } + + &.has-dropdown { + a:not(.button) { + &:hover { + color: $secondry-blue; + border-bottom: 0px; + } + } + } + + } + + &.active:not(.has-form) { + a:not(.button):hover { + background: transparent; + } + } + + } + + .dropdown { + li:not(.has-form) { + &> a:not(.button) { + border-left-width: 2px; + color: $secondry-blue; + background: $primary-blue; + } + + &:hover, &.active{ + a:not(.button){ + background: $primary-blue; + color: $secondry-blue; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } + } + + } + } + } + } +} + + + + +/** + * Sass styles related to unit cards + */ +$unit-card-font-size: 14px; +$unit-card-line-height: 1.4; +$unit-card-lines-to-show: 3; + +.unit_card { + width: 300px; + // height: 300px; commented as info of number of lesson and etc was not passed currently + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: $unit-card-font-size; + border: 2px solid #d5d5d5; + position: relative; + height:210px; + + + + .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; + } + + .unit_header { + display: table; + .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; + } + .unit_title { + display: table-cell; + font-size: 17px; + font-weight: 500; + letter-spacing: 0.5px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + /* white-space: nowrap;*/ + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; + } + } + .unit_desc { + display: block; /* Fallback for non-webkit */ + display: -webkit-box; + height: $unit-card-font-size*$unit-card-line-height*$unit-card-lines-to-show; /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: $unit-card-font-size; + line-height: $unit-card-line-height; + -webkit-line-clamp: $unit-card-lines-to-show; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; + } + .unit_breif { + .unit_breif_row { + i { + margin-right: 10px; + color: #99aaba; + } + } + } + .unit_actions { + //border-top : 1px solid #ccc; + //margin: 20px 0px 0px; + padding: 5px 0px; + //enroll-button + .unit-card-enrol{ + background: rgb(162, 35, 141); + height: 24px; + text-align: center; + color: #ffffff; + font-size: 18px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 90px !important; + margin-top: 8px !important; + letter-spacing: 0.4px; + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + } + + .unit-card-analytics{ + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom:2px solid #a2238d; + } + + .unit-card-analytics-points{ + background: #ffffff; + color: rgb(162, 35, 141); + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight:bold; + cursor: default; + } + + .view_unit{ + height: 37px; + text-align: center; + color: rgb(162, 35, 141); + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + margin-left: -20px; + + &:hover { + border-bottom:2px solid $secondary-orange; + } + } + } + +} + +/* unit cards labels */ + +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family:OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #008000; + letter-spacing: 0.4px; +} +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: $secondary-orange; + letter-spacing: 0.4px; +} + +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: $secondry-blue; + letter-spacing: 0.4px; +} + +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: grey; + letter-spacing: 0.4px; +} + + +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +.icon-widget{ + font-size:20px; + @media only screen and (max-width: 320px) { + font-size:12px; + } + +} + + + +/* module detail css */ + +.thumbnail_style{ + margin-left: -30px; +} + +.strip{ + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +.title-strip{ + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + padding-left:10px; + + height:auto; + min-height:143px; + a{ + + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; + + + } + + .position-actions{ + margin-top: -60px; + margin-left: 760px; + } + + .right-margin{ + margin-right: 46px; + } + .course_actions>span{ + //margin-right: 5px; + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: rgb(46, 63, 81); + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + margin-top:30px; + z-index:1; + + + } + + .course_actions>i{ + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + } + +} + + +/* Creating and editing course Structure */ + +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0,0,0,0.4); + &:hover{ + opacity:0.7; + } + .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81,0.7); + } + + .group_desc { + letter-spacing: 0.5px; + // //font-size: 17px; + } +} + +/* curriculum */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; + >li { + display: inline-block; + height: 100%; + >a { + color: $primary-orange; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + // //font-size: 17px; + letter-spacing: 0.3px; + + &.selected, &:hover { + border-bottom: 4px solid $secondary-orange; + } + } + &.sub_group_action { + position: relative; + &>ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; + + li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; + + &:hover { + background: #d6f2fe; + } + } + } + &:hover { + ul { + display: block; + } + } + } + } +} +.max-width{ + max-width:100%; +} +.group_content { + + + .group_banner { + @include transition-prop(all); + //height: 300px; + overflow-y: auto; + background: url('/static/ndf/images/course-cover.png') no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; + } + .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width:100%; + + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73,102,122,0) 0%, rgba(73,102,122,0.8) 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%);/* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ + + .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: $primary-blue; + } + .group_actions>button { + display: inline-block; + margin: 7px 10px; + } + } + .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background-color: #ffffff; + } + .group_sections_content { + // min-height: 400px; + background-color: #fff; + margin-bottom: 100px; + margin-top:-1px; + } + .top-bar-secondions_content{ + background-color:#fff; + } + + .course_actions>span{ + margin-right: 5px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left:130px; + } + + .course_actions>i{ + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right:80px; + } + +} + +/* Unit_Structure styles */ + + +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; + // min-height: calc(100vh - 100px); + + &>.columns { + padding: 0px; + height: 100%; + } + .course_editor { + // height: 80vh; + margin-bottom: 10px; + position: relative; + + /*Overriding default*/ + .accordion .accordion-navigation > .content, .accordion dd > .content { + padding: 0px; + padding-left:0px; + } + + /*Custom css*/ + >div { + display: inline-block; + vertical-align: top; + // height: calc(100vh - 120px); + } + .course_tree { + @include transition-prop(all); + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; + + .course-lessons { + dd { + border-bottom: 2px solid #9abfd9; + @include transition-prop(border-color); + + &.accordion-navigation { + position: relative; + padding-left:0px; + + &>a { + &:before { + // content: '›'; + position: absolute; + left: 23px; + // //font-size: 45px; + line-height: 20px; + color: $secondry-blue; + } + } + a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + @include transition-prop(color); + + .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + // //font-size: 14px; + display: block; + position: relative; + display: none; + + i { + display: none; + // //font-size: 20px; + } + + >.entity_actions { + margin-bottom: 0px; + + li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; + } + } + } + &:hover { + .edit_entity { + display: block; + } + } + } + + &.active >a:before { + content: ''; //arrow facing down + // //font-size: 45px; + line-height: 55px; + color: #d7d7d7; + + } + + .course-activities { + margin: 0px; + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + @include transition-prop(border-color); + + &>a { + color: #7ca0d0; + width: 100%; + display: block; + @include transition-prop(color); + } + } + } + + .content { + background: inherit; + } + + } + } + } + } + + .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + @include transition-prop(width); + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; + + .editor-header{ + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; + + .header-left { + padding: 14px 10px 10px 10px; + + >span { + color: #3c5264; + font-weight: 600; + // //font-size: 20px; + // //font-size: 28px; + margin-right: 10px; + } + } + + .custom_dropdown { + margin: 40px 35px 0px; + } + } + .editor-tool { + .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; + ul { + margin: 0px; + li { + list-style: none; + display: inline-block; + &:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; + } + + span { + display: inline-block; + // //font-size: 14px; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; + } + } + } + } + } + } + + + .add-lesson { + //margin: 10px 50px; + margin-top: 20px; + margin-left: 20px; + float: left; + //padding-top:5px; + } + + .add_activity{ + margin-top: 3px; + //margin-left: -47.1px; + + } + + .create_activity{ + margin-top: 0px; + margin-left: -7.1px; + // padding-top: 5px; + + } + +/* Course edit in the edit mode. */ + &.edit_mode { + button { + color: #5097b5; + border-color: #5097b5; + @include transition-two-prop(color, border-color); + } + .course_tree { + @include transition-prop(all); + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; + + .course-lessons { + dd { + border-color: #295566; + @include transition-prop(border-color); + + &.accordion-navigation { + a { + background: inherit; + color: #8fbbd8; + @include transition-prop(color); + + .edit_entity { + width: 20px; + i { + display: block; + } + + >.entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; + + li { + display: block; + margin: 0px; + padding: 5px 25px; + + &:hover { + background-color: #d5f2ff; + } + } + } + + &:hover>.entity_actions { + display: block; + } + } + } + .course-activities { + &>li { + @include transition-prop(border-color); + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; + + &:not(:last-child) { + &:hover,&.active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; + } + } + + &>a { + color: #edf6ff; + @include transition-prop(color); + } + } + } + } + } + } + } + + .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + + overflow-x: hidden; + //display: inline-block; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; + } + } + } + +} + + +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + // //font-size: 13px; + cursor: pointer; + @include transition-two-prop(color, border-color); +} + + +/* lesspn listing LMS */ + +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; + + ul.jqtree-tree { + .course-tree-node { + &.jqtree-selected .jqtree-element{ + background: #fff; + } + &>div{ + height: 45px; + a { + margin-right: 0.7em; + } + } + } + } + + .course-unit-name { + padding-left: 20px; + &:not(:last-child){ + border-bottom: 1px solid #d2cfcf; + } + + >div { + .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + padding-bottom: 2px; + } + } + +/* @media screen and (max-width: 480px) { + margin: 25px 10px; + height: 55px; + + >div { + .jqtree-title { + color: #3c5264; + font-size: 16px; + font-weight: 500; + padding-bottom: 1px; + } + } + + }*/ + } + + .course-activity-group >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } + .course-activity-name >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } +} + +.jqtree-title > .fa-check{ + color: green; +} +.jqtree-title > .fa-check-circle-o{ + color: green; +} +.jqtree-title > .fa-clock-o{ + color: orange; +} +.course-status-icon{ + font-size: 20px; + margin-right: 5px; +} + + + + +/* activity player header */ + +$activity-border-color: #e0e0e0; +$activity-header-height: 45px; +$activity-header-icon-block-width: 70px; +/* + Styling for the Secondary header 2 +*/ +$ah_2_icon_color: #ffc14f; +$ah_2_background_color: rgba(107, 0, 84, 0.97); +$ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; +.activity_player_header { + background-color: $ah_2_background_color; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); + >div { + + height: $activity-header-height; + line-height: $activity-header-height; + display: inline-block; + vertical-align: top; + //cursor: pointer; + + &:not(:last-child) { + border-right: 1px solid #fff; + } + + &:hover { + //background-color: $ah_2_background_color_hover; + } + } + + .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; + a { + color: $ah_2_icon_color; + } + + @media only screen and (min-device-width : 1025px) and (max-device-width : 2130px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 938px); + + } + + @media only screen and (min-device-width : 2131px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 970px); + + } + + @media only screen and (max-device-width : 1024px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 753px); + + } + + + + // /* iPads (portrait and landscape) ----------- */ + // @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { + // /* Styles */ + // text-overflow:ellipsis; + // width:267px; + + // } + + // @media only screen and (min-device-width : 1024px) and (max-device-width : 1190px) { + // /* Styles */ + // text-overflow:ellipsis; + // width:267px; + + // } + // /* Galaxy Tab 2 (portrait and landscape) ----------- */ + // @media only screen and (min-device-width : 1200px) and (max-device-width : 1220px) { + // /* Styles */ + // width: 341px; + // text-overflow: ellipsis; + // } + + + // Desktops and laptops ----------- + // @media only screen and (min-width : 1224px) { + // /* Styles */ + // width: 363px; + // text-overflow: ellipsis; + // } + // @media only screen and (min-width : 1330px) { + // /* Styles */ + // width: 474px; + // text-overflow: ellipsis; + // } + // /* Large screens ----------- */ + // @media only screen and (min-width : 1440px) and (max-width:1880px) { + // /* Styles */ + // width: 902px; + // text-overflow: ellipsis; + // } + + + // @media only screen and (min-width : 2122px) { + // /* Styles */ + // width: 1180px; + // text-overflow: ellipsis; + // } + + + } + + .header_icon { + font-size: 16px; + line-height: $activity-header-height; + color: $ah_2_icon_color; + } + + .header_icon_block { + color: $ah_2_icon_color; + width: $activity-header-icon-block-width; + cursor: pointer; + text-align: center; + } + .header_text_sm_block{ + padding: 0px 10px; + @media screen and (min-width: 1025px) { + padding: 0px 15px; + } + } + + .lesson-nav{ + @media screen and (min-width: 1025px) { + float: right; + margin-right:70px; + background-color: $ah_2_background_color; + + } + + @media screen and (max-width: 1024px) { + background-color: $ah_2_background_color; + + } + + div{ + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; + } + .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; + a { + color: $ah_2_icon_color; + } + + + } + .header_text_lg_block{ + padding: 0px 9px; + @media screen and (min-width: 1025px){ + padding: 0px 15px; + + } + + } + .header_text_md_block{ + padding: 0px 7px; + @media screen and (min-width: 1025px){ + padding: 0px 15px; + + } + + } + + .back_button { + border-color: $activity-border-color; + background-color: $ah_2_background_color_hover; + i { + color: #71318b; + } + } + + .settings { + i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; + } + &:hover i{ + transform: rotate(90deg); + -webkit-transform: rotate(90deg); + } + } + .pagination { + &:not(i) { + color: #a983b9; + } + } + } + +} + +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; + + &>.columns { + padding: 0px; + height: 100%; + } + .course_editor { + // height: 80vh; + margin-bottom: 10px; + position: relative; + + /*Overriding default*/ + .accordion .accordion-navigation > .content, .accordion dd > .content { + padding: 0px; + padding-left:0px; + } + + /*Custom css*/ + >div { + display: inline-block; + vertical-align: top; + // height: calc(100vh - 120px); + } + .course_tree { + @include transition-prop(all); + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; + + .course-lessons { + dd { + border-bottom: 2px solid #9abfd9; + @include transition-prop(border-color); + + &.accordion-navigation { + position: relative; + padding-left:0px; + + &>a { + &:before { + // content: '›'; + position: absolute; + left: 23px; + // //font-size: 45px; + line-height: 20px; + color: $secondry-blue; + } + } + a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + @include transition-prop(color); + + .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + // //font-size: 14px; + display: block; + position: relative; + display: none; + + i { + display: none; + // //font-size: 20px; + } + + >.entity_actions { + margin-bottom: 0px; + + li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; + } + } + } + &:hover { + .edit_entity { + display: block; + } + } + } + + &.active >a:before { + content: ''; //arrow facing down + // //font-size: 45px; + line-height: 55px; + color: #d7d7d7; + + } + + .course-activities { + margin: 0px; + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + @include transition-prop(border-color); + + &>a { + color: #7ca0d0; + width: 100%; + display: block; + @include transition-prop(color); + } + } + } + + .content { + background: inherit; + } + + } + } + } + } + + .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + @include transition-prop(width); + height: inherit; + max-height: 100%; + overflow-y: auto; + background:#fff; + + .editor-header{ + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + + .header-left { + padding: 29px 0px; + + >span { + color: #3c5264; + font-weight: 600; + // //font-size: 20px; + // //font-size: 28px; + margin-right: 10px; + } + } + + .custom_dropdown { + margin: 40px 35px 0px; + } + } + .editor-tool { + .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; + ul { + margin: 0px; + li { + list-style: none; + display: inline-block; + &:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; + } + + span { + display: inline-block; + // //font-size: 14px; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; + } + } + } + } + } + + + } + } +} + +.course_editor_section{ + background:#fff; + min-height: 100vh; + min-width:910px; + margin-bottom:10px; + padding-right:4px; + #scstyle{ + margin-top:-10px; + } +} + +.lesson-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +.activity-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; + + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; + + &.active { + background: rgba(116, 0, 255, 0.31); + + } + &>a { + color:black; + } + } + +} + + + +.activity_page_rendered{ + //margin-top:10px; + margin-left:20px; + max-width: 900px; + // width:145%; +} +/* Rating css */ + +.rating-bar { + + &>span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; + } + + &.unrated{ + /* If the user has not rated yet */ + &:checked ~ label:before{ + color: $secondary-orange; + } +} + + +[type*="radio"] { + display: none; + & + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin:0; + vertical-align: bottom; + + &:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; /* WHITE STAR */ + color: #888; + } + } + &:checked ~ label:before, + & + label:hover ~ label:before, + & + label:hover:before { + content: '\2605'; /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; + } +} + +/* the hidden clearer */ + +.last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} + + +.last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} + + /* this is gross, I threw this in to override the starred + buttons when hovering. */ + &:hover{ + [type*="radio"] + label:before { + content: '\2606'; /* WHITE STAR */ + color: #888; + text-shadow: none; + } + [type*="radio"] + label:hover ~ label:before, + [type*="radio"] + label:hover:before { + content: '\2605'; /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; + } +} +} + + +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +.input_links{ + margin-left: 10px; + a{ + margin-right: 35px; + margin-top: 5px; + } +} + +.buddy_margin{ + margin-right: 80px; + font-family:OpenSans-Regular; + margin-top:6px; +} + + + +.activity-slides-container { + //border: 1px solid black; + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; + + .activity-slides { + height: 100%; + color: #f8f8f8; + + .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; + + .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; + } + .page { + >section { + margin-left: 50%; + transform: translate(-50%); + } + } + } + .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; + } + .content-expanded { + >i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; + } + .related-content-header { + margin-left: 20px !important; + >span:first-child{ + display: none !important; + } + .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; + } + .related-content-title { + font-size: 15px !important; + position: relative; + + .related-content-close { + display: block; + } + >i { + display: none !important; + } + } + } + .related-content-body { + display: block !important; + } + } + #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; + + >i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; + } + + .related-content-header { + margin-left: 40px; + .back-to-activity { + display: none; + } + span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; + } + .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; + } + } + .related-content-body { + display: none; + } + } + + } +} + + +.icon-color{ + color:#2e3f51 !important; + padding: right; +} + + +/* The asset tile */ + +.group_content { + + .group_banner { + @include transition-prop(all); + //height: 300px; + overflow-y: auto; + background: url('/static/ndf/images/course-cover.png') no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; + } + .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width:100%; + + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73,102,122,0) 0%, rgba(73,102,122,0.8) 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%);/* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ + + .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: $primary-blue; + } + .group_actions>button { + display: inline-block; + margin: 7px 10px; + } + } + .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; + } + .group_sections_content { + // min-height: 400px; + background-color: #fff; + margin-bottom: 100px; + margin-top:-1px; + } + .top-bar-secondions_content{ + background-color:#fff; + } + + .course_actions>span{ + margin-right: 5px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left:130px; + } + + .course_actions>i{ + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right:80px; + } + +} + +.orange-button-subtitle { + color: $primary-orange; + padding: 4px 5px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + +.transcript-toggler{ + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(hsla(259, 40%, 40%, 1), hsla(259, 40%,30%, 1)); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top:7px !important; + text-transform: uppercase; +} + +.asset_list{ + margin-left:12px; +} + +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + //height:7rem; + //margin-left: 3px; + height:260px; + border: 1px solid $primary-blue; + .activity_preview { + height: 200px; + //margin-left: 5px; + width:100%; + //background-color: #eee; + //background: url(/static/ndf/images/asset_thumbnail.png)no-repeat; + border-width: 5px; + img{ + width:100%; + height:210px; + } + } + + .activity_text { + padding: 7px 0px 0px 0px; + .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color:$primary-blue; + padding-top: 10px; + padding-left: 6px; + &>a{ + margin-right:0px !important; + } + + .filenode { + z-index: -1; + + } + + } + .activity_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + //height:7rem; + //margin-left: 3px; + height:280px; + border: 1px solid $primary-blue; + .asset_preview { + height: 200px; + //margin-left: 5px; + width:100%; + //background-color: #eee; + //background: url(/static/ndf/images/asset_thumbnail.png)no-repeat; + border-width: 5px; + .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; + } + img{ + width:100%; + height:210px; + } + .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; + } + .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; + } + + @media (max-width: 1200px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + + } + + @media (max-width: 1000px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + } + @media (max-width: 800px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + } + @media (max-width: 400px) { + .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } + } + + + .photos-02{ + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + + } + + .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; + } + + @media (max-width: 1200px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 1000px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 800px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 400px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + + .photos-03{ + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + + } + + .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; + } + + @media (max-width: 1200px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 1000px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 800px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 400px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + } + + .asset_text { + padding: 7px 0px 0px 0px; + .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color:$primary-blue; + padding-top: 10px; + padding-left: 6px; + + .filenode { + z-index: -1; + + } + + } + .asset_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height:75px; + border: 1px solid $primary-blue; + width: 270px; + margin-right: 15px; + .audio_preview { + audio{ + width: 100%; + } + figcaption { + margin-left: 5px; + } + } + + &:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: $primary-orange; + } + + +} + + + +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid $primary-blue; + width: 120px; + margin-right: 15px; + + .template_preview { + height: 85px; + width:100%; + img{ + width:100%; + } + } + &:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: $primary-orange; + } + + .template_text { + padding: 10px 0px 0px 0px; + .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color:$primary-blue; + padding-top: 22px; + padding-left: 6px; + + } + .template_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + + + + +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 750px; + @media only screen and (max-width: 360px) { + width:390px; + } + min-height: 445px; + @media only screen and (max-width: 360px) { + min-height: 20px; + } + margin-left: 0px; +} + +.widget_video{ + height:360px; + width:480px; + @media only screen and (max-width: 350px) { + width:290px; + height:230px; + } + @media screen and (min-width: 351px) and (max-width: 850px) { + width:340px; + height:280px; + } +} + + +/* Asset detail */ + +.overlay-head{ +// background-color: #fff; + height: 60px; + margin-bottom:20px; +} + +.listing-row{ + margin-top: 10px !important; + background-color:#ffffff; +} + +.orange-button { + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + + +.orange-button-template{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + @media screen and (max-width: 325px) { + font-size: 10px; + } + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} +.orange-button-template{ + color: $primary-orange; + background:#fff ; + &:hover{ + background-color:#fff;; + } + >a{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } + } +} + +.explore-button { + // //font-size: 25px; + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; + &:hover{ + background-color:#ffffff;; + cursor:pointer; + color: #6a0054; + } +} + +/* asset description */ + +.name-desc-asset-cont-area{ + width:95%; + margin-left: 24px; +} + + + +.page-name{ + margin-top:8px; +} + +.tag-ele{ + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +.button-cancel-new{ + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right:1px; + &:hover{ + background-color: #fff; + color: #333333; + } + + >a{ + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right:1px; + &:hover{ + background-color: #fff; + color: #333333; + } + } +} + +.button-save-new{ + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; + &:hover{ + background-color: #fff; + color: #912a7d; + } + +} + + + +//my desk css +.mydesk_page { + .page_banner { + width: 100%; + height: 200px; + background-image: url('/static/ndf/images/mydesk_banner.png'); + background-size: 100% 100%; + position: relative; + + &:before { + content: ' '; + background-color: rgba(0,0,0,.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0,0,0,.2); + } + + .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; + + .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; + + svg { + + height: 100px; + width: 100px; + + path { + fill: #7a422a; + } + } + } + .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; + + .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; + } + } + } + } + .page_menu { + border-bottom: 1px solid #e5e5e5; + + li{ + >a{ + padding: 12px 20px 9px; + } + + } + + } +} + +.lms_explore_head_unit{ + width: 100%; + height: 50px; + background-color:#fff; + color: $primary-blue; + >p{ + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; + } + >a{ + padding: 0px 85px 3px 0px; + } +} + + +.lms_explore_back_unit{ + background-color: #fff; + margin-top:-19.3px; +} + + +//analytics for admin + .course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; + + + .students-table-legends { + >span:nth-child(odd) { + margin: 0px 10px; + } + >span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; + } + } + } + + .badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + // //font-size: 1.8em; +} + + + + +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/***** Create Event Form**********/ + +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ + + + .create-task-event-tabs{ + .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; + + .tab-title { + width: 43%; +/* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + color: #fff; + + &.active { + background-color: #719dc7; + border: 1px solid #CCC; + border-bottom: 0px; + color: #fff; + } + } + } + } + + + +//cedit group metadata form css +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; + //height: calc(150vh - 100px); +} + +.asset-unit-button { + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; + + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + + .unit_editor{ + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + + } + + .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; + } + + .course_heading_unit{ + + width: 500px; + height: 40px; + border: 1px solid $secondry-blue; + box-shadow: none; + float: right; + text-align: center; + + &:focus { + border: 1px solid $secondry-blue; + } + + &::-webkit-input-placeholder + /*&::-moz-placeholder, + &:-ms-input-placeholder, + &:-moz-placeholder*/ { + color: #d9dfe4; + // //font-size: 20px; + letter-spacing: 0.8px; + } + select{ + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid $secondry-blue; + } + + } + + + .course_heading { + input { + width: 500px; + height: 40px; + border: 0px solid $secondry-blue; + box-shadow: none; + float: right; + text-align: center; + + &:focus { + border: 1px solid $secondry-blue; + } + + &::-webkit-input-placeholder + /*&::-moz-placeholder, + &:-ms-input-placeholder, + &:-moz-placeholder*/ { + color: #d9dfe4; + // //font-size: 20px; + letter-spacing: 0.8px; + } + } + + h5{ + margin-top: 15px; + } + } + + .course_heading span{ + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; + // //font-size: 25px; + } + + .course_actions { + ul{ + margin: 0px; + } + ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + // //font-size: 18px; + letter-spacing: 0.8px; + + &.active, &:hover { + border-bottom: 3px solid $secondary-orange; + } + } + + span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + } + + i { + + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + + } + + } +} + +.lms_explore_back_unit{ + background-color: #fff; + margin-top:2.7px; +} + +.empty-dashboard-message{ + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; + + >a{ + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; + } + + .button-explore-courses{ + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; + } +} + +//module-card-css +$module-card-font-size: 12.5px; +$module-card-line-height: 1.4; +$module-card-lines-to-show: 3; + +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + + &>div { + display: table-cell; + height: 290px; + } + + .card_banner { + width: 250px; + height:290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; + + >img{ + height:100%; + width:100%; + border-radius:4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)); + &:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; + + + } + } + + >h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + //color: #ffedda !important; + color: #ffffff !important; + //text-shadow: 2px 2px #a61680; + text-shadow: 2px 0px 8px black; + + } + + } + + + .card_title { + display: block; + width:230px; + font-size: 23px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; + } + + &.animated_card { + .card_banner { + border-radius: 8px; + } + &:hover .card_banner{ + border-radius: 8px 0px 0px 8px; + } + } + &.animated_card.isOpen { + .card_banner { + border-radius: 8px 0px 0px 8px; + } + } + &.animated_card:hover .card_summary { + left: 30px; + } + &.animated_card .card_summary { + left: 5px; + } + + .card_summary{ + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; /* Safari */ + transition-property: left; + + .card_label { + font-weight: 500; + font-size: $module-card-font-size; + letter-spacing: 1px; + color: black; + } + .card_section { + margin: 5px 0px; + padding: 5px 0px; + + &:not(:last-child) { + border-bottom: 1px solid #ccc; + } + p { + margin-bottom: 7px; + font-size: $module-card-font-size; + } + .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + //enroll-button + .module-card-enrol{ + background: rgb(162, 35, 141); + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + } + } + + .module_brief { + display: block; /* Fallback for non-webkit */ + display: -webkit-box; + height: $module-card-font-size*$module-card-line-height*$module-card-lines-to-show; /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: $module-card-font-size; + line-height: $module-card-line-height; + -webkit-line-clamp: $module-card-lines-to-show; + -webkit-box-orient: vertical; + color: black; + } + } +} + + +.inner +{ + display: inline-block !important; +} + + + +.enroll-btn{ + width: 90px; + opacity: 1; + background-color: rgba(0,0,0,.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + //border: 2px solid #ffc14e; + border: 1px solid #c1b4b5; + background-color: #4b4852; + + + + } + + +.enrollBtn{ + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + + +/*****Toolbar CSS******/ +#toolbar{ + background-color: #3e3e3e; +} +.datetime{ + color: #eaeaea; + padding: 4px 0px 2px 5px; + font-size: 11px; +} +.changefont{ + text-align: right; + padding: 2px 5px 1px 0px; + + .minus{ + font-size:60%; color: #eaeaea; + } + .normal{ + font-size:80%; color: #eaeaea; + } + .plus{ + font-size:100%; color: #eaeaea; + } +} + + + +/***********Landing page***************/ + + .about_us{ + background: #20ade0; + } + .analytics{ + margin-top: 20px; + } + .square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float:left; + height: 100%; + margin-left:30px; + } + + .square:after { + content: ""; + display: block; + padding-bottom: 100%; + } + + .box-content { + position: absolute; + width: 100%; + height: 80%; + + font-size: 2em; + padding-top: 20%; + } + + .linked-links{ + + } + +.activity-slider { + + font-family:Arial; + width:800px; + display:block; + margin:0 auto; +} +.activity-slider h3{ + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; + } +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +.footer_link_cont h4{ + color: #999; +} + +.about_content{ + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + + font-size: 18px; +} + +.about-blog{ + height:100%; + background: #107aa1; +} + +/*.searchbar { + margin: 0.8rem; +}*/ + +.search-field { + width: 0; + height: 40px; + margin-left: 1rem; + padding: 0; + border-radius: 50px; + border: none; + transition: all 0.5s ease; +} + +.expand-search { + width: 80%; + max-width: calc(80% - 3rem); + border: 1px solid #c9c9c9; + padding: .5rem; +} + +svg { + width: 20px; + height: 20px; +} + +.button { + border-radius: 50px; +} + + +#page_content +{ + display: table; + height:auto; + display: table-row; + +} + +.footer_container +{ + height: auto; + display: table-row; +} + + +#footer { + height: 1px; +} + + + + +/* ----New Footer For NROER -------*/ + +.footer-nav{ + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display:table-row; + height:1px; + display:flex; + flex-flow:row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0,0,0,0.8); + padding:1.8rem; + width:100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +.footer-nav-center{ + flex: 1 1 0px; +} +.footer-nav-menu{ + list-style: none; + margin-bottom: 0; + text-align: center; +} +.footer-nav-menu-item{ + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} +.footer-copyright{ + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} +.second-has-form{ + margin-top: 0px; + margin-bottom: -2px; +} +.searchbar{ + +} + +#course-settings-drop{ + width:181px; +} +.edit_unit{ + height: 37px; + text-align: center; + color: rgb(162, 35, 141); + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.5px; + margin-left: 0px; + + &:hover { + border-bottom:2px solid $secondary-orange; + } +} + + +/** New cards showing popular ***/ +/* +// font stuff +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,600,700,900); + + +// colour stuff*/ +/*@white: #ffffff; +@lightBG: #dce1df; +@salmon: #ff6666; + +@teal: #0096a0; +@tealMid: #0ebac7; +@tealContrast: #33ffff; +@tealShade: #007c85; + +@darkGrey: #4f585e;*/ + +/*body { + background: #dce1df; + color: #4f585e; + font-family: 'Source Sans Pro', sans-serif; + text-rendering: optimizeLegibility; +}*/ + +/*a.btn { + background: #0096a0; + border-radius: 4px; + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25); + color: #ffffff; + display: inline-block; + padding: 6px 30px 8px; + position: relative; + text-decoration: none; + transition: all 0.1s 0s ease-out; + margin-top: -5px; +} + +.no-touch a.btn:hover { + background: lighten(#0096a0,2.5); + box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075); + transform: translateY(-2px); + transition: all 0.25s 0s ease-out; +} + +.no-touch a.btn:active, +a.btn:active { + background: darken(#0096a0,2.5); + box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25); + transform: translate3d(0,1px,0); + transition: all 0.025s 0s ease-out; +} + +div.cards { + margin: 80px auto; + max-width: 100%; + text-align: center; +} + +div.card { + background: #ffffff; + display: inline-block; + margin: 8px; + max-width: 215px; + perspective: 1000; + position: relative; + text-align: left; + transition: all 0.3s 0s ease-in; + z-index: 1; + + img { + max-width: 215px; + } + + div.card-title { + background: #ffffff; + padding: 6px 15px 10px; + position: relative; + z-index: 0; + + a.toggle-info { + border-radius: 32px; + height: 32px; + padding: 0; + position: absolute; + right: 15px; + top: 10px; + width: 32px; + + span { + background:#ffffff; + display: block; + height: 2px; + position: absolute; + top: 16px; + transition: all 0.15s 0s ease-out; + width: 12px; + } + + span.left { + right: 14px; + transform: rotate(45deg); + } + span.right { + left: 14px; + transform: rotate(-45deg); + } + } + + h2 { + font-size: 16px; + font-weight: 600; + letter-spacing: -0.05em; + margin: 0; + padding: 0; + + small { + display: block; + font-size: 13px; + font-weight: 300; + letter-spacing: -0.025em; + } + } + } + + div.card-description { + padding: 0 15px 10px; + position: relative; + font-size: 14px; + } + + div.card-actions { + box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075); + padding: 10px 15px 20px; + text-align: center; + } + + div.card-flap { + background: darken(#ffffff,15); + position: absolute; + width: 100%; + transform-origin: top; + transform: rotateX(-90deg); + } + div.flap1 { + transition: all 0.3s 0.3s ease-out; + z-index: -1; + } + div.flap2 { + transition: all 0.3s 0s ease-out; + z-index: -2; + } + +} + +div.cards.showing { + div.card { + cursor: pointer; + opacity: 0.6; + transform: scale(0.88); + } +} + +.no-touch div.cards.showing { + div.card:hover { + opacity: 0.94; + transform: scale(0.92); + } +} + +div.card.show { + opacity: 1 !important; + transform: scale(1) !important; + + div.card-title { + a.toggle-info { + background: #ff6666 !important; + span { + top: 15px; + } + span.left { + right: 10px; + } + span.right { + left: 10px; + } + } + } + div.card-flap { + background: #ffffff; + transform: rotateX(0deg); + } + div.flap1 { + transition: all 0.3s 0s ease-out; + } + div.flap2 { + transition: all 0.3s 0.2s ease-out; + } +} + +.accordion .content { + overflow: hidden; +} +*/ + +.analytics-cards{ + + a,h4{ + font-size: 16px; + @media only screen and (max-width: 320px) { + font-size: 12px; + } + } +} + +.reg-users-box{ + margin-left: 0px; + @media only screen and (max-width: 320px) { + margin-left: 52px; + } + @media screen and (min-width: 321px) and (max-width: 850px) { + margin-left: 70px; + } +} + +.login-box { + background: #fff; + border: 1px solid #ddd; + margin: 100px 0; + padding: 40px 20px 0 20px; +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index e1067a544e..3a61046773 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -44,11 +44,11 @@ h3{ } h5{ - color: #99aaba; - font-size: 10px; - text-transform: uppercase; - letter-spacing: 2px; - margin-left: 5px; + color:#99aaba; + font-size:10px; + text-transform:uppercase; + letter-spacing:2px; + margin-left:5px; } @@ -77,6 +77,14 @@ h5{ margin-right: 10px; } +.symbol-wid{ + cursor: pointer; + font-size: 29px; + color: #a2b1be; + margin-right: 0px; + margin-top: 40px; +} + .buddy-wid{ font-size: 34px; color: #a2b1be; @@ -303,12 +311,17 @@ h5{ } .login-button { .button { + // //font-size: 15px; + background-color: #B1B1B1; font-weight: 600; border-bottom: 3.5px solid #DADADA; border-radius: 5px; padding: 9px; - background-color: #a75692; - border-color: #881378; + + &:hover { + background-color: #CC1AB5; + border-color: #881378; + } } } @@ -375,15 +388,16 @@ h5{ border-radius: 5px; text-transform: uppercase; margin-left: 70px; + color: #ffc14e; padding: 6px 17px; font-family: "OpenSans-Semibold", sans-serif; margin-top: 50px; border: 2px solid #ffc14e; - color:white; - background-color: #a75692; &:hover{ + background-color:rgba(255,193,78,0.3); cursor:pointer; + color:white; } @@ -576,9 +590,12 @@ h5{ ul { &.left li { border-right: 2px solid #16539f; + + } li { - background: $primary-blue; + /* background: $primary-blue; */ + background: rgba(22, 74, 123, 0.04); &>a { @@ -664,7 +681,7 @@ h5{ } .top-bar-section { ul.left li>a { - padding: 0px 20px; + padding: 0px 30px; &.active{ color:#fff; font-size: 17px; @@ -672,14 +689,17 @@ h5{ margin-top: -3px; border-bottom: 3px solid $secondary-orange; } + + } li { + &:not(.has-form) { a:not(.button) { cursor: pointer; background: transparent; border-bottom: 0px; - line-height: 50px; + line-height: 52px; border-left-width: 0px; font-family: OpenSans-Regular; @@ -695,17 +715,14 @@ h5{ } } &.has-dropdown { - a:not(.button) a:not(.not-click) { + a:not(.button) .logout { &:hover { color: $secondry-blue; border-bottom: 0px; border-left: 3px solid $secondary-orange; - - } } } - } &.active:not(.has-form) { a:not(.button):hover { @@ -714,6 +731,7 @@ h5{ } } } + } .profile-menu { &>a svg { @@ -749,6 +767,8 @@ h5{ } } + + } } } @@ -971,7 +991,6 @@ ul.horizontal_tabs_gstudio { margin: 0px 10px 0px 0px; cursor: pointer; border-radius: 3px; - margin-left:130px; } .course_actions>i{ @@ -986,7 +1005,6 @@ ul.horizontal_tabs_gstudio { border-radius: 3px; margin-right:80px; } - } .activity_tile { @@ -1349,7 +1367,14 @@ ul.horizontal_tabs_gstudio { } - +.preview_asset_page { + //background: #ccc; + //border: 2px solid #999; + word-wrap: break-word; + width: 200%; + min-height: 350px; + margin-left: 14px; +} .preview_asset { background: #ccc; @@ -1416,11 +1441,11 @@ input[type="text"], input[type="file"] { margin-top: 5px; } label { - font-size: 12px; - text-transform: uppercase; - color: #99aaba; - margin-bottom: 7px; - margin-left: 20px; + font-size: 15px; + text-transform: initial; + color: rgba(43, 51, 63, 0.75); + margin-bottom: 15px; + margin-left: 0px; } @@ -1560,22 +1585,6 @@ input[type="button"] { } } -.pink-button{ - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } -} - .orange-button-template{ color: $primary-orange; padding: 7px 14px; @@ -1623,7 +1632,6 @@ input[type="button"] { border-radius: 4px; margin-right: 30px; margin-bottom: 8px; - margin-top: 300px; &:hover{ background-color:rgba(206,120,105,0.2); color: $primary-orange; @@ -1940,6 +1948,11 @@ ul.jqtree-tree .jqtree-toggler { -webkit-box-align: start !important; -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } .hyperlink-style{ text-decoration: none !important; font-family: inherit !important; @@ -1951,6 +1964,7 @@ ul.jqtree-tree .jqtree-toggler { white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; + } .hyperlink-info{ text-decoration: none !important; @@ -2065,7 +2079,7 @@ ul.jqtree-tree .jqtree-toggler { margin-bottom: 5px; >span{ - color: #164a7b; + color: $primary-orange; } } @@ -2341,10 +2355,10 @@ ul.jqtree-tree .jqtree-toggler { .notebook { .notebook-header { - // border-color: black; - // border-style: solid; - // border-width: 1px 0px; - // padding-top: 1em; + border-color: black; + border-style: solid; + border-width: 1px 0px; + padding-top: 1em; a, input { margin: 0px; @@ -2562,10 +2576,10 @@ ul.jqtree-tree .jqtree-toggler { .note-page { // display: none; - //color: #000000; + color: #000000; margin-left: 15px; background-color: #fff; - //padding-bottom: 30px; + padding-bottom: 30px; .group_sections_content{ margin-top:5px; } @@ -2598,7 +2612,6 @@ ul.jqtree-tree .jqtree-toggler { } .note-title { // //font-size: 2.3em; - font-size: 20px; font-weight: 500; margin-right: 1em; } @@ -3279,7 +3292,7 @@ ul.jqtree-tree .jqtree-toggler { } .overlay-title{ - margin: 15px 10px 10px 10px; + margin: 15px 10px 10px 14px; letter-spacing: -1px; } @@ -3523,7 +3536,7 @@ ul.jqtree-tree .jqtree-toggler { .bg-img{ //background: url(/static/ndf/images/group-tile.png) no-repeat; - background: url(/static/ndf/images/i2c-bg.png); + //background: url(/static/ndf/images/i2c-bg.png); height:100%; background-size: 100%; background-repeat: no-repeat; @@ -3750,7 +3763,6 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; background-color: $ah_2_background_color; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); >div { - height: $activity-header-height; line-height: $activity-header-height; display: inline-block; @@ -3766,94 +3778,8 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; } } - .header_title { - position: relative; - color: #fff; - font-weight: 500; - font-size: 20px; - letter-spacing: 0.6px; - padding: 0px 15px; - margin-left: -2px; - border-right: 1px solid white; - a { - color: $ah_2_icon_color; - } - - @media only screen and (min-device-width : 1025px) and (max-device-width : 2130px) { - // /* Styles */ - text-overflow:ellipsis; - width:calc(100% - 938px); - - } - - @media only screen and (min-device-width : 2131px) { - // /* Styles */ - text-overflow:ellipsis; - width:calc(100% - 970px); - - } - - @media only screen and (max-device-width : 1024px) { - // /* Styles */ - text-overflow:ellipsis; - width:calc(100% - 753px); - - } - - - - // /* iPads (portrait and landscape) ----------- */ - // @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { - // /* Styles */ - // text-overflow:ellipsis; - // width:267px; - - // } - - // @media only screen and (min-device-width : 1024px) and (max-device-width : 1190px) { - // /* Styles */ - // text-overflow:ellipsis; - // width:267px; - - // } - // /* Galaxy Tab 2 (portrait and landscape) ----------- */ - // @media only screen and (min-device-width : 1200px) and (max-device-width : 1220px) { - // /* Styles */ - // width: 341px; - // text-overflow: ellipsis; - // } - - - // Desktops and laptops ----------- - // @media only screen and (min-width : 1224px) { - // /* Styles */ - // width: 363px; - // text-overflow: ellipsis; - // } - // @media only screen and (min-width : 1330px) { - // /* Styles */ - // width: 474px; - // text-overflow: ellipsis; - // } - // /* Large screens ----------- */ - // @media only screen and (min-width : 1440px) and (max-width:1880px) { - // /* Styles */ - // width: 902px; - // text-overflow: ellipsis; - // } - - - // @media only screen and (min-width : 2122px) { - // /* Styles */ - // width: 1180px; - // text-overflow: ellipsis; - // } - - - } - .header_icon { - font-size: 16px; + font-size: 20px; line-height: $activity-header-height; color: $ah_2_icon_color; } @@ -3864,94 +3790,66 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; cursor: pointer; text-align: center; } - .header_text_sm_block{ - padding: 0px 10px; - @media screen and (min-width: 1025px) { - padding: 0px 15px; + + .header_text_block { + padding: 0px 15px; + a { + color: $ah_2_icon_color; } } - .lesson-nav{ - @media screen and (min-width: 1025px) { - float: right; - margin-right:70px; - background-color: $ah_2_background_color; - + .back_button { + border-color: $activity-border-color; + background-color: $ah_2_background_color_hover; + i { + color: #71318b; } + } - @media screen and (max-width: 1024px) { - background-color: $ah_2_background_color; - + .settings { + i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; } - - div{ - height: 45px; - line-height: 45px; - display: inline-block; - vertical-align: top; + &:hover i{ + transform: rotate(90deg); + -webkit-transform: rotate(90deg); } - .header_text_block { - padding: 0px 15px; - margin-left: -2px; - border-right: 1px solid white; - a { - color: $ah_2_icon_color; - } + } + .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 18px; + letter-spacing: 0.6px; + width: calc(100% - 1024px); + } + .pagination { + &:not(i) { + color: #a983b9; + } + } +} - } - .header_text_lg_block{ - padding: 0px 9px; - @media screen and (min-width: 1025px){ - padding: 0px 15px; - - } - - } - .header_text_md_block{ - padding: 0px 7px; - @media screen and (min-width: 1025px){ - padding: 0px 15px; - - } - - } - .back_button { - border-color: $activity-border-color; - background-color: $ah_2_background_color_hover; - i { - color: #71318b; - } +/* Overriding off-canvas class of foundation for responsive activity player header*/ +.tab-bar{ + background: $ah_2_background_color; + } - .settings { - i { - transition: transform .5s ease-in-out; - -webkit-transition: -webkit-transform .5s ease-in-out; - } - &:hover i{ - transform: rotate(90deg); - -webkit-transform: rotate(90deg); - } - } - .pagination { - &:not(i) { - color: #a983b9; - } + .left-off-canvas-menu{ + background: $ah_2_background_color; } - } -} + .right-off-canvas-menu{ + background: $ah_2_background_color; + } -.float-right{ - float:right; -} + -.float-left{ - float:left; -} /* Buddy Vertical Bar Css */ @@ -4180,7 +4078,7 @@ $primary-button-background-color: #00a9ee; background-color: #fff; color:#717171; border-radius: 4px; - font-size: 16px; + font-size: 11px; letter-spacing: 0.7px; line-height: 25px; text-transform: none; @@ -4204,7 +4102,7 @@ ul.nav_menu_1 { >a{ list-style-type: none; display: inline-block; - padding: 10px 10px 9px; + padding: 12px 12px 9px; color: $nav_menu_1_color; cursor: pointer; font-size: 18px; @@ -4213,7 +4111,6 @@ ul.nav_menu_1 { &.selected, &:hover{ - font-weight: bold; border-bottom: 3px solid $nav_menu_1_tab_border; } @@ -4423,7 +4320,6 @@ ul.nav_menu_1 { .course_editor_section{ background:#fff; min-height: 100vh; - min-width:910px; margin-bottom:10px; padding-right:4px; #scstyle{ @@ -4431,6 +4327,8 @@ ul.nav_menu_1 { } } + + .lesson-title{ font-size: 18px; padding-top: 10px; @@ -4472,6 +4370,7 @@ ul.nav_menu_1 { // width:145%; max-width:100%; } + /* Rating css */ .rating-bar { @@ -4569,16 +4468,16 @@ $unit-card-lines-to-show: 3; color: #000; padding: 15px; margin: 10px; + cursor: pointer; border-radius: 5px; font-size: $unit-card-font-size; border: 2px solid #d5d5d5; position: relative; - height:210px; &:hover { - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25); + box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); } - + .unit_status { position: absolute; @@ -4638,60 +4537,10 @@ $unit-card-lines-to-show: 3; } } .unit_actions { - //border-top : 1px solid #ccc; - //margin: 20px 0px 0px; + border-top : 1px solid #ccc; + margin: 20px 0px 0px; padding: 5px 0px; - //enroll-button - .unit-card-enrol{ - background: rgb(162, 35, 141); - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; - - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } - } - - .unit-card-analytics{ - color: #a2238d; - font-weight: 500; - font-size: 14px; - letter-spacing: 0.3px; - border-bottom:2px solid #a2238d; - } - - .unit-card-analytics-points{ - background: #ffffff; - color: rgb(162, 35, 141); - font-size: 15px; - border-radius: 20px; - letter-spacing: 0.4px; - padding: 2px 3px 3px 1px; - font-weight:bold; - cursor: default; - } - - .view_unit{ - height: 37px; - text-align: center; - color: rgb(162, 35, 141); - font-size: 19px; - margin-top: 2px !important; - letter-spacing: 0.4px; - - &:hover { - border-bottom:2px solid $secondary-orange; - } - } } - } /* @@ -4928,7 +4777,7 @@ $inCompleteBgColor: #fd9e29; } } - } +} /** * Sass styles related to module cards */ @@ -4955,10 +4804,8 @@ $module-card-lines-to-show: 3; display: table-cell; height: 290px; } - .card_banner { - width: 250px; - height:290px; + width: 300px; vertical-align: middle; overflow: hidden; background-size: 100% 100%; @@ -5004,11 +4851,11 @@ $module-card-lines-to-show: 3; .card_title { display: block; width:230px; - font-size: 32px; font-weight: 600; text-align: center; margin: 0px auto; letter-spacing: 1px; + font-size: 24px; } &.animated_card { @@ -5068,25 +4915,6 @@ $module-card-lines-to-show: 3; text-overflow: ellipsis; white-space: nowrap; } - - //enroll-button - .module-card-enrol{ - background: rgb(162, 35, 141); - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; - - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } - } } .module_brief { @@ -5108,8 +4936,6 @@ $module-card-lines-to-show: 3; - - //LMS Page: Unit detail of LMS .lms_page{ @@ -5165,7 +4991,7 @@ $module-card-lines-to-show: 3; margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } .right-margin{ @@ -5237,34 +5063,31 @@ ul.nav_menu_1 { width:50%; >li { display: inline-block; - - >a{ - list-style-type: none; - display: inline-block; - padding: 12px 12px 9px; - color: $nav_menu_1_color; - cursor: pointer; - font-size: 18px; - letter-spacing: 0.8px; - border-bottom: 3px solid transparent; + .course_actions>span{ + //margin-right: 5px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + margin-top:100px; - - &.selected, &:hover{ - border-bottom: 3px solid $nav_menu_1_tab_border; } - } - } -} + } + ul.authoring-tab{ - background-color:$nav_menu_1_color; margin-bottom: 0px; display:inline; width:50%; >li { display: inline-block; - + background-color:$nav_menu_1_color; >a{ list-style-type: none; margin-right:-4px; @@ -5284,8 +5107,6 @@ ul.authoring-tab{ } - - .course-content { background: #fff; @@ -5305,61 +5126,383 @@ ul.authoring-tab{ } } } - } - - .course-unit-name { - padding-left: 20px; - &:not(:last-child){ - border-bottom: 1px solid #d2cfcf; - } - - >div { - .jqtree-title { - color: #3c5264; - font-size: 19px; - font-weight: 600; - } - } - } - .course-activity-group >div { - .jqtree-title { - color: #74a0c0; - font-size: 17px; - } - } - .course-activity-name >div { - .jqtree-title { - color: #74a0c0; - font-size: 17px; - } - } -} - -.listing-row{ - margin-top: 10px !important -} - -.raw_material_asset { - width: auto; - top: -0.50em; - position: absolute; - display: inline-block; - color: #ce7869; - right: 1em; - padding: 0.3em 0.5em; - text-transform: uppercase; - font-size: 12px; - border-radius: 4px; - border: 2px solid #ffc14e; - background-color: #eefaff; - letter-spacing: 0.3px; + } } -.status-completed { - width: auto; - top: -1.15em; - position: absolute; - display: inline-block; +.notifications_listing{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .notifications_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .notifications_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .notifications_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: $primary-blue !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } + } + } + } +} + + + +.analytics_listing{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .analytics_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .analytics_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .analytics_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: $primary-blue !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } + } + } + } +} + + + + +.lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top:150px; +} + +@media screen and (max-width: 480px) { + .lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top:382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 640px) { + .lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top:382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 800px) { + .lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top:382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} + + +.topnav { + overflow: hidden; + background-color: #fff; +} + +.topnav a { + float: left; + display: block; + color: #ce7869; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 18px; + letter-spacing: 0.8px; +} + +.topnav a:hover { + border-bottom: 3px solid #ffc14e; + color: #ce7869; +} +.selected { + border-bottom: 3px solid #ffc14e; + } + +.topnav .icon { + display: none; +} + +@media screen and (max-width: 600px) { + .topnav a:not(:first-child) {display: none;} + .topnav a.icon { + float: right; + display: block; + } +} + +@media screen and (max-width: 600px) { + .topnav.responsive {position: relative;} + .topnav.responsive .icon { + position: absolute; + right: 0; + top: 0; + } +.topnav.responsive a { + float: none; + display: block; + text-align: left; +} +} + + +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; + + ul.jqtree-tree { + .course-tree-node { + &.jqtree-selected .jqtree-element{ + background: #fff; + } + &>div{ + height: 35px; + a { + margin-right: 0.7em; + } + } + } + } + + .course-unit-name { + padding-left: 20px; + &:not(:last-child){ + border-bottom: 1px solid #d2cfcf; + } + + >div { + .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + } + } + } + .course-activity-group >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } + .course-activity-name >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } +} + +.listing-row{ + margin-top: 10px !important +} + +.raw_material_asset { + width: auto; + top: -0.50em; + position: absolute; + display: inline-block; + color: #ce7869; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 12px; + border-radius: 4px; + border: 2px solid #ffc14e; + background-color: #eefaff; + letter-spacing: 0.3px; +} + +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; color: #fff; right: 1em; padding: 0.3em 0.5em; @@ -5422,6 +5565,22 @@ ul.authoring-tab{ letter-spacing: 0.4px; } +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} .lesson-dropdown ul { display:none; @@ -5444,7 +5603,7 @@ ul.authoring-tab{ margin-top:6px; } -.lms_explore_head{ +.lc{ width: 100%; height: 45px; background-color:#fff; @@ -5485,40 +5644,6 @@ ul.authoring-tab{ margin-top:-23.3px; } -.empty-dashboard-message { - border: 3px solid #e4e4e4; - background: #f8f8f8; - padding: 40px 0; - text-align: center; - >p{ - font-size: 24px; - color: #646464; - margin-bottom: 20px; - text-shadow: 0 1px rgba(255,255,255,0.6); - } - >a{ - background-color: #164a7b; - border: 1px solid #164a7b; - box-shadow: 0 1px 8px 0 rgba(0,0,0,0.1); - box-sizing: border-box; - color: #fff; - font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; - display: inline-block; - letter-spacing: 1px; - margin-top: 5px; - margin-left: 5px; - padding: 15px 20px; - } - .button-explore-courses{ - font-size: 20px; - font-weight: normal; - text-shadow: none; - text-transform: capitalize; - border-radius: 0.22rem; - width: 170px; - } -} - // My Desk customized classes .mydesk_page { @@ -5658,9 +5783,6 @@ ul.authoring-tab{ .jqtree-title > .fa-check{ color: green; } -.jqtree-title > .fa-check-circle-o{ - color: green; -} .jqtree-title > .fa-clock-o{ color: orange; } @@ -5673,105 +5795,7 @@ ul.authoring-tab{ width:1351px; } -.wrapper-footer{ - box-shadow: 0 -1px 5px 0 rgba(0,0,0,0.1); - border-top: 1px solid #c5c6c7; - padding: 0px 0px 0px 3px; - //position: fixed; - //margin-top: -100px; - right: 0; - bottom: 0; - left: 0; - z-index:10; - max-width:1200px; - display:flex; - background: rgba(221, 221, 221, 0.18); - clear: both; - //height:200px; - - #footer-clix{ - box-sizing: border-box; - max-width: 1200px; - margin-left: auto; - margin-right: auto; - margin: 0 auto; - - - .links-logos{ - float: left; - display: block; - margin-right: 2.35765%; - width: 65.88078%; - - .nav-links-logos{ - margin: 10px 0px 0px 18px; - - ol { - display:inline; - list-style-type: none; - li { - float: left; - margin-right: 15px; - &>a{ - color:$primary-orange; - &:hover { - color: $primary-orange; - border-bottom: 3px solid $secondary-orange; - } - } - } - - - } - } - - .nav-legal{ - margin: 0px 0px 0px 20px; - ol { - display:inline; - list-style-type: none; - li { - float: left; - margin-right: 15px; - display: inline-block; - font-size: 0.6875em; - &>a{ - transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; - border-bottom: none; - color: #777; - text-decoration: none !important; - &:hover { - color:#777; - border-bottom: 3px solid hsla(316, 88%, 42%, 1); - } - } - } - - - } - } - .wrapper-logo{ - margin: 13px 0; - display:inline-block; - p{ - color:inherit; - margin:0; - display:inline-block; - a{ - display: inline-block; - } - } - .footer-logo{ - &>img{ - height: 10px; - } - } - } - } - } - -} #overlay{ /* we set all of the properties for are overlay */ @@ -5855,8 +5879,6 @@ ul.authoring-tab{ - - } @@ -5865,30 +5887,248 @@ ul.authoring-tab{ margin-left: -56px; } -.top-margin-translation{ - margin-top: 0px; +.top-margin-translation{ + margin-top: 0px; +} + +.activity-editor-header-top{ + margin-top:-50px; + +} +.add-lesson-top-margin{ + margin-top:5px; +} +.translation-detail-top-margin{ + margin-top: 0px; +} +.outer +{ + width:100%; + text-align: center; +} +.inner +{ + display: inline-block !important; +} + +.transcript-toggler{ + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(hsla(259, 40%, 40%, 1), hsla(259, 40%,30%, 1)); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top:7px !important; + text-transform: uppercase; +} + + +.double-buttons{ + margin-top: 100px; + margin-left: 729px; +} + +.lesson-form-name{ + padding-top: 10px; +} + +.lesson-form-desc{ + padding-top: 25px; +} + +.enroll_chkbox{ + transform: scale(1.5); +} +.enroll_all_users{ + width: 15% !important; +} + +.enrollBtn{ + width: 124px !important; + background: rgba(75, 72, 82, 0.8); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 5px 8px; + color: #fff; + font-size: 20px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + //opacity: 0.8; + margin-top: 101px !important; + margin-right: 15px; + &:hover { + background: rgba(75, 72, 82, 0.8); + color: #000000; + } +} + +.enroll-act_lbl{ + color: #0c2944; +} + + +.wrkspace{ + margin-right:80px; +} + +.status-btn{ + background-color: #fff; + margin-right: auto; + padding-bottom: 0px; + text-transform: none; + .disabled{ + background-color: #008cba; + border-color: #007095; + color: white; + cursor: default; + opacity: 0.7; + box-shadow: none; + } +} + +.margin-right-50{ + margin-right:50px; +} + + + + +.color-btn{ + background-color: #720f5e; + width: 77px; + margin-left: 17px; + &:hover{ + color: #720f5e; + background-color: #ffffff; + } +} + +.mid_label{ + margin-top: 15px; + font-size: 15px; +} + +.compulsory{ + color: red; + font-size: smaller; +} + +.select-drop{ + height: auto; +} + +.template-select{ + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 40%; + font-size: 14px; +} + +.white-text{ + color: white; +} + +.quiz-player{ + .quiz_qtn{ + margin-left:20px !important; + font-size: 20px; + } + .question_edit{ + margin-left: 20px !important; + } + + input[type=checkbox], input[type=radio]{ + margin-right: 10px; + width: 15px; + height: 15px; + } + + .chk_ans_lbl, .rad_ans_lbl{ + font-size: 22px; + margin-left: 5px; + } + + .fi-check{ + color: green; + } + + .fi-x{ + color: red; + } +} + +.hyperlink-tag{ + cursor: pointer; + cursor: pointer; + /* text-align: center; */ + vertical-align: middle; + /* margin: 12px 10px 10px 10px; */ + height: 10px; + margin-left: 79px; + font-size: 24px; + color: #164A7B; + } - -.activity-editor-header-top{ - margin-top:-50px; +.scard { + background:#FFF; + border:1px solid #AAA; + border-bottom:3px solid #BBB; + padding:0px; + margin:5px; + overflow:hidden; + width:11rem; + height:9rem; + &:hover{ + box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); + transition: box-shadow 0.5s ease; + } + /*float:left;*/ +.scard_header { + text-align:center; + position:fixed; + height:20rem; + border:1px solid #AAA; + border-bottom:3px solid #BBB; + padding:0px; + margin:5px; + left:0px; + right:0px; + background:#FFF; + padding:25px 0px 5px 0px; + border-bottom:5px solid #CCC; + font-size:20px; + font-weight:bold; + } } -.add-lesson-top-margin{ - margin-top:5px; -} -.translation-detail-top-margin{ - margin-top: 0px; -} -.outer -{ - width:100%; - text-align: center; -} -.inner -{ - display: inline-block !important; -} +.scard-content { + height: 2.7em; + padding: 0.5rem; + margin:5px; + padding-top: 0.5cm; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + margin-top: -0.3em; + /*height: 8.25rem;*/ + background-color:#3e3e3e; + .scard-title{ + font-size: 0.8em; + margin-top: -1em; + float: left; + color:#ececec; + //width:50%; + display:inline-block; + text-align: center; + } + + } .transcript-toggler{ display: block; width: 155px !important; @@ -5918,585 +6158,896 @@ input.transcript-toggler{ vertical-align: middle; /* align the text vertically centered */ } +.scard-action { + //color:#ececec; + height: height; + font-size:0.6em; + padding: 0.5rem; + margin:5px; + padding-top: 0.1cm; + margin-top:-0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + background-color:#CCCCCC; -.double-buttons{ - margin-top: 100px; - margin-left: 729px; } -.lesson-form-name{ - padding-top: 10px; +.scard-desc{ + font-size:0.7em; + color:#333333; + height: 40px; + padding: 0.5rem; + margin:5px; + padding-top: 0.1cm; + margin-top:-0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + background-color:#E6E6E6; + display-inline:block; +} + + + +.scard-image { + padding:0px; + margin:0px; + height:100%; + background-position:center; + background-repeat:no-repeat; + position:relative; + overflow:hidden; + background-color:#f2f2f2; + img { + border-radius: 2px 2px 0 0; + display: block; + margin: 0 auto; + opacity: 0.9; + //width:100%; + height:100%; + } + + + +} + .published.scard-action { + background: #A6D9CB; + } + + .draft.scard-action { + content: "Draft"; + background: #DCDCDC; + + } + + +.auto_width{ + width: auto !important; +} + +.explore-settings-drop{ + margin-left: 57%; + display: inline-block; + &> button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; + &:hover{ + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; + } + } + a{ + font-size:16px; + } + .f-dropdown li { + + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: $primary-blue; + + a{ + color: $secondry-blue; + } + &:hover{ + border-left: 4px solid $secondary-orange; + } + + } +} + +.attempts_count{ + color: #000000 !important; +} + +#course-settings-drop{ + + li{ + a{ + + text-align: left; + } + } +} +#asset-settings-drop{ + li{ + a{ + + text-align: left; + } + } +} + +.button-bg{ + background-color: $secondry-blue; +} + + +/* Tools page css listing*/ + +.polaroid { + width: 330px; + background-color: white; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + margin-bottom: 25px; + margin-top: 25px; + padding: 10px 10px 10px 10px; + -moz-transition: all 0.3s; + -webkit-transition: all 0.3s; + transition: all 0.3s; + cursor: pointer; +} + +.polaroid:hover img { + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + -o-transform: scale(1.05); + transform: scale(1.05); +} + + +.container { + text-align: center; + padding: 10px 20px; + border-top:5px solid #164a7b; + margin-top: 0px; + + >p{ + color: black; + font-size: 16px; + font-weight: 500; + + } +} + + +.tool-bg{ + background-color: rgba(87, 198, 250, 0.07); +} +.purple-btn{ + width: inherit; + text-transform: uppercase; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background-color: #6a0054; + color: #ffffff !important; + border: 2px solid #6a0054; } -.lesson-form-desc{ - padding-top: 25px; +.disable-purple-btn{ + width: inherit; + text-transform: uppercase !important; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background: #4b4852; + color: #ffffff !important; + border: 2px solid #4b4852; } -.enroll_chkbox{ - transform: scale(1.5); +.user-analytics-data{ + margin: 42px 37px 37px 37px; + border: 2px solid #aaaaaa; + .close-reveal-modal{ + font-size: 20px; + } } -.enroll_all_users{ - width: 15% !important; +.left-space { + margin-left: 0.5em; } -.enrollBtn{ - // width: 124px !important; - // background: $primary-orange; - // border: 1px solid rgba(255, 255, 255, 0.7); - // padding: 5px 8px; - // color: #fff; - // font-size: 20px; - // margin: 0px 10px 0px 0px; - // cursor: pointer; - // border-radius: 3px; - // // opacity: 0.8; - // margin-top: 90px !important; - // margin-right: 15px; - // font-weight:bold; - // &:hover { - // opacity: 1; - // background: #008100; - // color: #ffffff; - // font-weight:bold; - // } - background: rgb(162, 35, 141); - height: 50px; - text-align: center; - color: #ffffff; - /* font-weight: bold; */ - width: 172px; - font-size: 28px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -.enroll-act_lbl{ - color: #0c2944; -} +/* User Dashboard Implementation */ -.wrkspace{ - margin-right:80px; +.left_column{ + float: left; + width: 625px; + border-radius: 3px; + background-color: $secondry-blue; + box-sizing: border-box; + color: #444; } -.status-btn{ - background-color: #fff; - margin-right: auto; - padding-bottom: 0px; - text-transform: none; - .disabled{ - background-color: #008cba; - border-color: #007095; - color: white; - cursor: default; - opacity: 0.7; - box-shadow: none; - } +.dashboard{ + background: #fafafa; + border: none; + border-radius: 6px; + padding: 25px; + font-size: 14px; + position: relative; + box-shadow: none; } -.margin-right-50{ - margin-right:50px; +.account_heading{ + border-bottom: 2px solid #E5E5E5; + color: #444; + font-size: 24px; + font-weight: normal; + line-height: 1; + margin: 0; + padding-bottom: 28px; } +.account_group{ + display: table; + padding: 20px 0; + width: 100%; + .group_label{ + font-weight: bold; + display: table-cell; + padding: 0 10px; + vertical-align: top; + width: 145px; + >h3{ + font-weight: bold; + margin: 0; + .account_subheading{ + font-size: 14px; + line-height: 1.2; + } + } + } + .group_content{ + display: table-cell; + padding: 0 10px; + vertical-align: top; + } -/* responsive footer */ -.clearfix {clear: both;} + .account{ + margin: 0 0 10px; + display:block; + position:relative; + .accordion_trigger_wrapper{ + .accordion_label{ + color: #444; + float: left; + font-size: 14px; + margin: 0; + } + .pencil_edit_button{ + position: absolute; + top: 50%; + right: -43px; + width: 48px; + height: 48px; + margin: 0px 0 0 0; + padding: 0; + display: block; + border: none; + background: none; + overflow: hidden; + line-height: 24px; + font-size: 24px; + color: #000; + opacity: 0.25; + text-decoration: none; + text-align: center; + cursor: pointer; + } + .accordion_content{ + .input-setting{ + input.text_field[type="text"]{ + background: transparent; + border: 1px solid #D9D9D9; + color: #444; + font-size: 14px; + margin: 0; + max-width: 100%; + outline: 0; + padding: 6px 9px; + width: 330px; + border-radius: 2px; + } + } + .password-wrapper{ + input.password_placeholder[type="text"] { + color: rgba(68,68,68,0.45) !important; + } + input.password_field[type="password"] { + position:relative; + z-index:2; + } + } -.clr1 {background: #FFFFFF; color: #333743;} -.clr2 {background: #F1F3F5; color: #8F94A3;} -.clr3 {background: rgba(221, 221, 221, 0.18); color: #BDC3CF;} -.clr4 {background: rgba(221, 221, 221, 0.18); color: #E3E7F2;} -.clr5 {color: #F1F3F5;} -.clr6 {color: #39B5A1;} -.clr7 {color: #D45245;} + } + } + } +} -/*##### Footer Structure #####*/ -.bo-wrap { - clear:both; - width: auto; -} -.bo-footer { - clear:both; - width: auto; - padding: 5px; - width: 960px; - margin: 0 auto; -} -.bo-footer-social { - text-align: left; - line-height: 1px; - padding: 10px 10px 10px 10px; +/* ---------------------- */ - &>a{ - color:$primary-orange; - word-spacing:8px; - &:hover { - color: $primary-orange; - border-bottom: 3px solid $secondary-orange; - } +#progressive-validation { + width:400px; + margin:100px auto 0 auto; + input { + display:block; + border-radius:5px; + border:none; + background:white; + font-family:OpenSans-regular; + font-size:16px; + line-height:16px; + font-weight:200; + width:100%; + padding:15px; + margin:0 0 10px 0; + opacity:.2; + outline:none; + box-shadow:0 0 0 1px rgba(0,0,0,.0); + background-size: 0px 0px; + background-position:right 23px; + background-repeat:no-repeat; + &[type="submit"],&[type="submit"]:valid{ + background-color:#1a3e4c; + color:white; + background-image:none; + } + &:focus { + box-shadow:0 0 0 1px #00aeef; + opacity:1 !important; + } + &:enabled { + opacity:.8; + } + &:valid { + background-size: 46px 46px; + background-position:right 0px; + background-repeat:no-repeat; + } } - } -.bo-footer-copyright{ - &>a{ - transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; - border-bottom: none; - color: #777; - text-decoration: none !important; - word-spacing:3px; - &:hover { - color:#777; - border-bottom: 3px solid hsla(316, 88%, 42%, 1); - } - } -} -.bo-footer-smap { - width: 600px; - float: left; - padding: 5px 10px; - text-align: left; - font-size: 18px; - word-spacing:20px; -} -.bo-footer-uonline { - width: 300px; /* Account for margins + border values */ - float: left; - padding: 5px 10px; - text-align: center; +#analyticsFooter +{ + background-color: #e9eaed; + text-align: center; + font-weight: bold; + padding: 8px; + font-size: 12px; + border-top: 1px solid #dddddd; + min-width:400px; } -.bo-footer-power { - width: 300px; - padding: 5px 10px; - float: left; - text-align: right; - font-size: 14px; - color: #636A7D; - vertical-align: middle; +.img-circle{ + border-radius: 50%; + border: 1px solid rgba(128, 128, 128, 0.15); } - -/*##### Footer Responsive #####*/ -/* for 980px or less */ -@media screen and (max-width: 980px) { - - .bo-footer { - width: 95%; - padding: 1% 2%; - } - .bo-footer-smap { - width: 33%; - padding: 1% 2%; - } - .bo-footer-uonline { - width: 46%; - padding: 1% 2%; - float: right; - text-align: right; - } - - .bo-footer-power { - clear: both; - padding: 1% 2%; - width: auto; - float: none; - text-align: center; - } +.container-px{ + background-color: #fafafa; + min-width: 600px; + min-height: 600px; } -/* for 700px or less */ -@media screen and (max-width: 600px) { - .bo-footer-smap { - width: auto; - float: none; - text-align: center; - } - - .bo-footer-uonline { - width: auto; - float: none; - text-align: center; - } - - .bo-footer-power { - width: auto; - float: none; - text-align: center; +.noti{ + max-width: 400px !important; +} + .notification_body{ + max-width: 1546px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; } + + .notifications_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .content-body{ + border-bottom: 1px solid #D6D8DA !important; -} + } + } -/* for 480px or less */ -@media screen and (max-width: 480px) { - -} -.color-btn{ - background-color: #720f5e; - width: 77px; - margin-left: 17px; - &:hover{ - color: #720f5e; - background-color: #ffffff; - } -} -.mid_label{ - margin-top: 15px; - font-size: 15px; -} +/* tasks new UI */ -.compulsory{ - color: red; - font-size: smaller; -} +.task_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; -.select-drop{ - height: auto; -} + &>.columns { + padding: 0px; + height: 100%; + } + .task_editor { + // height: 80vh; + margin-bottom: 10px; + position: relative; -.template-select{ - border: 1px solid #cccccc; - border-radius: 5px; - height: 38px; - width: 40%; - font-size: 14px; -} + /*Overriding default*/ + .accordion .accordion-navigation > .content, .accordion dd > .content { + padding: 0px; + padding-left:0px; + } -.white-text{ - color: white; -} + /*Custom css*/ + >div { + display: inline-block; + vertical-align: top; + // height: calc(100vh - 120px); + } + .task_tree { + @include transition-prop(all); + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; -.quiz-player{ - .quiz_qtn{ - margin-left:20px !important; - font-size: 20px; - } - .question_edit{ - margin-left: 20px !important; - } + .task-lessons { + dd { + border-bottom: 2px solid #9abfd9; + @include transition-prop(border-color); + + &.accordion-navigation { + position: relative; + padding-left:0px; - input[type=checkbox], input[type=radio]{ - margin-right: 10px; - width: 15px; - height: 15px; - } + &>a { + &:before { + // content: '›'; + position: absolute; + left: 23px; + // //font-size: 45px; + line-height: 20px; + color: $secondry-blue; + } + } + a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + @include transition-prop(color); - .chk_ans_lbl, .rad_ans_lbl{ - font-size: 22px; - margin-left: 5px; - } + .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + // //font-size: 14px; + display: block; + position: relative; + display: none; - .fi-check{ - color: green; - } + i { + display: none; + // //font-size: 20px; + } - .fi-x{ - color: red; - } -} + >.entity_actions { + margin-bottom: 0px; -.hyperlink-tag{ - cursor: pointer; - cursor: pointer; - /* text-align: center; */ - vertical-align: middle; - /* margin: 12px 10px 10px 10px; */ - height: 10px; - margin-left: 79px; - font-size: 24px; - color: #164A7B; + li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; + } + } + } + &:hover { + .edit_entity { + display: block; + } + } + } -} -.scard { - background:#FFF; - border:1px solid #AAA; - border-bottom:3px solid #BBB; - padding:0px; - margin:5px; - overflow:hidden; - width:11rem; - height:9rem; - &:hover{ - box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); - transition: box-shadow 0.5s ease; - } - /*float:left;*/ + &.active >a:before { + content: ''; //arrow facing down + // //font-size: 45px; + line-height: 55px; + color: #d7d7d7; -.scard_header { - text-align:center; - position:fixed; - height:20rem; - border:1px solid #AAA; - border-bottom:3px solid #BBB; - padding:0px; - margin:5px; - left:0px; - right:0px; - background:#FFF; - padding:25px 0px 5px 0px; - border-bottom:5px solid #CCC; - font-size:20px; - font-weight:bold; - } -} -.scard-content { - height: 2.7em; - padding: 0.5rem; - margin:5px; - padding-top: 0.5cm; - border-radius: 0 0 2px 2px; - overflow: hidden; - width:11rem; - margin-top: -0.3em; - /*height: 8.25rem;*/ - background-color:#3e3e3e; - .scard-title{ - font-size: 0.8em; - margin-top: -1em; - float: left; - color:#ececec; - //width:50%; - display:inline-block; - text-align: center; - } + } + .course-activities { + margin: 0px; + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + @include transition-prop(border-color); - } + &>a { + color: #7ca0d0; + width: 100%; + display: block; + @include transition-prop(color); + } + } + } -.scard-action { - //color:#ececec; - height: height; - font-size:0.6em; - padding: 0.5rem; - margin:5px; - padding-top: 0.1cm; - margin-top:-0.25em; - border-radius: 0 0 2px 2px; - overflow: hidden; - width:11rem; - background-color:#CCCCCC; + .content { + background: inherit; + } -} + } + } + } + } -.scard-desc{ - font-size:0.7em; - color:#333333; - height: 40px; - padding: 0.5rem; - margin:5px; - padding-top: 0.1cm; - margin-top:-0.25em; - border-radius: 0 0 2px 2px; - overflow: hidden; - width:11rem; - background-color:#E6E6E6; - display-inline:block; -} + .task-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + @include transition-prop(width); + height: inherit; + max-height: 100%; + overflow-y: auto; + background:#fff; - + .editor-header{ + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; -.scard-image { - padding:0px; - margin:0px; - height:100%; - background-position:center; - background-repeat:no-repeat; - position:relative; - overflow:hidden; - background-color:#f2f2f2; - img { - border-radius: 2px 2px 0 0; - display: block; - margin: 0 auto; - opacity: 0.9; - //width:100%; - height:100%; - } + .header-left { + padding: 29px 0px; + >span { + color: #3c5264; + font-weight: 600; + // //font-size: 20px; + // //font-size: 28px; + margin-right: 10px; + } + } + .custom_dropdown { + margin: 40px 35px 0px; + } + } + .editor-tool { + .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; + ul { + margin: 0px; + li { + list-style: none; + display: inline-block; + &:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; + } -} - .published.scard-action { - background: #A6D9CB; + span { + display: inline-block; + // //font-size: 14px; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; + } + } + } + } + } + } } +} - .draft.scard-action { - content: "Draft"; - background: #DCDCDC; - +.task_editor_section{ + background:white; + min-height: 100vh; + margin-bottom:10px; + padding-right:4px; + border:1px solid rgba(128, 128, 128, 0.23); + width:79%; + box-shadow:0px 0px 5px #73859f; + #scstyle{ + margin-top:-10px; } + .task_editor_top{ + border-top: 4px solid #74b3dc; + width: 101.3%; + margin-left: -15px; + margin-top: -1px; -.scard_footer { - border-top: 1px solid rgba(160, 160, 160, 0.2); - padding: 0.25rem 0.5rem; - color: gray; - font-size: small; - height: 2rem; - } + } + .task_head{ + height: 65px; + font-size: 22px; + padding: 16px 5px 5px 57px; + color: black; + // border-bottom: 2px solid rgba(128, 128, 128, 0.23); + + } -.auto_width{ - width: auto !important; -} + form { + font-size:17px; + padding:10px 0px 0px 10px; -.explore-settings-drop{ - margin-left: 59%; - display: inline-block; - &> button { - color: #164a7b; - font-weight: 400; - cursor: pointer; - background-color: #ddeff9; - border: 2px solid #719dc8; - border-radius: 5px !important; - display: inline-block; - padding: 3px 8px 4px 8px; - margin-top: 10px; - margin-left: 20px; - &:hover{ - border-radius: 10px; - background-color: #ddeff9; - color: #164a7b; - } - } - a{ - font-size:16px; } - .f-dropdown li { + .task_ex{ + border-bottom: 2px solid rgba(128, 128, 128, 0.23); + &.active{ + border: 2px solid rgb(116, 179, 220); + margin-left: -16px; + width: 101.5%; + margin-top: -2px; + } - font-size: 0.875rem; - cursor: pointer; - line-height: 1.125rem; - margin: 0; - background-color: $primary-blue; + } - a{ - color: $secondry-blue; - } + .task_listing{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .task_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .task_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .task_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: $primary-blue !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; - &:hover{ - border-left: 4px solid $secondary-orange; + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } + } } - + } } } -.attempts_count{ - color: #000000 !important; -} -#course-settings-drop{ - li{ - a{ - text-align: left; - } - } -} -#asset-settings-drop{ - li{ - a{ - text-align: left; - } - } +.lesson-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 10px; } -.button-bg{ - background-color: $secondry-blue; -} +.activity-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; + border: 2px solid rgba(128, 128, 128, 0.15); + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; + height:150px; + background-color:white; -/* Tools page css listing*/ + &.active { + background: rgba(0, 140, 186, 0.42); + height:150px; + margin-top:-10px; -.polaroid { - width: 330px; - background-color: white; - box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); - margin-bottom: 25px; - margin-top: 25px; - padding: 10px 10px 10px 10px; - -moz-transition: all 0.3s; - -webkit-transition: all 0.3s; - transition: all 0.3s; - cursor: pointer; -} + } + &>a { + color:black; + } + } -.polaroid:hover img { - -webkit-transform: scale(1.05); - -moz-transform: scale(1.05); - -ms-transform: scale(1.05); - -o-transform: scale(1.05); - transform: scale(1.05); } -.container { - text-align: center; - padding: 10px 20px; - border-top:5px solid #164a7b; - margin-top: 0px; - - >p{ - color: black; - font-size: 16px; - font-weight: 500; - } +.task_page_rendered{ + //margin-top:10px; + margin-left:20px; + max-width: 900px; + // width:145%; } -.tool-bg{ - background-color: rgba(87, 198, 250, 0.07); -} -.purple-btn{ - width: inherit; - text-transform: uppercase; - border-radius: 5px; - font-family: "OpenSans-Semibold", sans-serif; - background-color: #6a0054; - color: #ffffff !important; - border: 2px solid #6a0054; -} +.round{ + border-radius: 1px; + background-color: orange; -.disable-purple-btn{ - width: inherit; - text-transform: uppercase !important; - border-radius: 5px; - font-family: "OpenSans-Semibold", sans-serif; - background: #4b4852; - color: #ffffff !important; - border: 2px solid #4b4852; + } + + .circle-normal{ + background: #ffc14e; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} + .circle-high{ + background: #f04124; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} + .circle-low{ + background: #008cba; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; } -.user-analytics-data{ - margin: 42px 37px 37px 37px; - border: 2px solid #aaaaaa; - .close-reveal-modal{ - font-size: 20px; - } +.status-indication{ + border-radius: 124px; + padding: 0px 8px 3px 8px; + line-height: 25px; + margin: 4px 14px 10px 0; + height: auto; + display: inline-block !important; + border: 2px solid rgba(115, 133, 159, 0.5); + color: grey; } -.left-space { - margin-left: 0.5em; +.priority-margin{ + margin-left: -30px; } +.iconclr{ + color:#999999; +} -// STicky bottom footer .top-right-menu{ margin-right: 80px !important; @@ -6563,5 +7114,175 @@ input.transcript-toggler{ background-color: #fff; color: #912a7d; } +} +} + + +html,body{ + height: 100%; +} +#gbase_wrap{ + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto ; + /* Pad bottom by footer height */ + padding: 0 0 60px; +} +#base_wrap{/* + min-height: 100%;*/ + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 10px; +} + +body>footer { + //Site footer + padding:10px 5px; + position: relative; + background-color: rgba(0,0,0,0.8); + height:auto; + width:100%; + display:table; + + + ul { + list-style-type: none; + text-decoration: none; + li { + font-size: 15px; + margin-bottom: 5px; + } + } + p { + margin: 10px; + font-size: 18px; + } + h2 { + font-size: 25px; + } + li { + color: #bbbbbb; + } + a { + color: #bbbbbb; + margin-top:0; + padding: 0; + display: inline; + &:hover { + text-decoration: none; + color: #ffffff; + margin-top:0; + padding: 0; + display: inline; + } + } + .myfooter { + margin-top: 10px; + display:table-row; + height:1px; + + .footer-section { + color: #ffffff; + text-align: center; + } + .inline_mar-right { + display: inline-block; + margin: 0 25px 15px 0; + } + //Footer links + .footer_content { + margin: 20px; + + .footer-logo { + height: 65px; + width: 150px; + } + } + .links_collapse { + max-height: 78px; + overflow: hidden; + transition: all 0.5s ease-out; + + ul { + display: inline; + padding: 0; + margin: 0px !important; + } + } + .footer_link_cont { + display: inline-block; + vertical-align: top; + /*margin: 20px;*/ + text-align: left; + + .links_show { + //change as per requirement on addition on more links in future + max-height: 600px; + } + h4{ + color: #999; + } + .social_links{ + font-size: 24px; + margin-right:5px; + } + + .show_foot_links { + color: #777777; + cursor: pointer; + i{ + font-size: 24px; margin-right:5px; + } + &:hover { + text-decoration: underline; + } + } + } + + } + hr.footerlogo-divider{ + border-color: #555; + margin-top: 10px; + } +} + +body > footer ul#footerlogo li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; +} + + +body > footer ul#poweredlogos{ + margin-left: 0px; +} + +#poweredlogos li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; +} + +.coll-arrows { + cursor:pointer; + display: block; + padding: 0.5rem; + + &:hover{ + background-color: #D3D3D3; + } +} -} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss index eb6abe89a3..7ea522de13 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss @@ -19,9 +19,7 @@ }*/ } -body>footer { - background-color: rgb(93, 5, 95); -} + #top-headers { @@ -63,9 +61,7 @@ body>footer { font-weight: 600; } - .has-dropdown > a:after { - border-color: #000000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) !important; - } + ul.dropdown { background: #fff !important; @@ -372,3 +368,6460 @@ body>footer { } } } + + + + + +/*Blue color variable*/ +$primary-blue : #164A7B; +$secondry-blue : #74b3dc; +$tertiary-blue : #719dc7; + +/*Orange color variables*/ +$primary-orange : #ce7869; +$secondary-orange : #ffc14e; + +$header-link-hover-color: #50c2fa; +$header-link-active-color: #50c2fa; + + +@mixin transition-prop($prop) { + transition: $prop 1s ease; + -webkit-transition: $prop 1s ease; +} + +@mixin transition-two-prop($prop1, $prop2) { + transition: $prop1 1s ease, $prop2 1s ease; + -webkit-transition: $prop1 1s ease, $prop2 1s ease; +} + + +html { + height: 100%; +} +body { + //ackground: linear-gradient(135deg, #e5a426, #ae208c); + background: #eefaff; + height: 100%; + margin: 0; + background-repeat: no-repeat; + background-attachment: fixed; + font-family: 'OpenSans-Regular', sans-serif; + overflow-x: hidden; +} + + +h3{ + font-size: 20px; + color: $primary-blue; + font-family: 'OpenSans-Semibold'; +} + +h5{ + color: #99aaba; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 2px; + margin-left: 5px; +} + + + + +.overlay-head{ + background-color: #fff; + height: 60px; + margin-bottom:20px; +} + + +.icon-widget{ + font-size:24px; + +} + +.icon-color{ + color:#2e3f51 !important; + padding: right; +} + +.icon-wid{ + font-size: 34px; + color: #a2b1be; + margin-right: 10px; +} + +.buddy-wid{ + font-size: 34px; + color: #a2b1be; + margin-right: 30px; + margin-top:8px; + + +} + + +/* Landing page */ +.landing_page { + position: relative; + text-align: center; + + + .panel { + background-color: inherit; + border: none; + } + + .landing_page_background { + //height: 100%; + height: 100vh; + width: 100%; + position: absolute; + z-index: -1; + } + + .clix_brief { + text-align: left; + padding: 20px 5%; + + img { + margin: 30px 20px; + height: 70px; + @media screen and (max-width: 450px) { + margin: 25px 10px; + height: 55px; + } + } + p { + color: #fff; + //font-size: 26px; + @media screen and (max-width: 450px) { + //font-size: 18px; + } + font-weight: 300; + + } + } + + + + .invitation_to_clix { + background-color: rgba(255,255,255, 0.92); + border-radius: 10px; + width: 100%; + margin: 20px auto; + @media screen and (min-width: 1025px) { + margin: 30px; + } + text-align: left; + padding: 30px 40px 21px; + // box-shadow: 0px 0px 30px rgba(0, 0,0, 0.5); + + >span { + + color: #6658af; + //font-size: 18px; + font-weight: bold; + letter-spacing: 0.2px; + text-transform: uppercase; + display: inline-block; + vertical-align: middle; + } + p { + color: #b0108d; + //font-size: 21px; + padding: 25px 0px 30px; + font-weight: 300; + + } + + img { + height: 30px; + } + form { + margin-top: 30px; + + input { + // //font-size: 24px; + height: 45px; + margin: 5px 0px 24px; + } + } + .flowers { + left: 50px; + height: 200px; + width:100%; + @media screen and (max-width: 450px) { + //height: 50px; + width: 100%; + } + @media screen and (min-width: 451px) and (max-width: 1025px) { + //height:50px; + width:100%; + } + bottom: 0px; + opacity: 0.6; + } + .bees { + position: absolute; + top: 5px; + right: 50px; + height: 100px; + float: left; + + @media screen and (max-width: 450px) { + right: 15px; + height: 50px; + } + } + + + .landing-page-text { + color: #6153ae; + + p { + // //font-size: 18px; + } + } +} + input.button { + // //font-size: 25px; + border-radius: 10px; + + + text-transform: uppercase; + background-color: $primary-blue; + margin-top: 80px; + background-color:rgba(255,193,78,0.3); + } + a.grey { + color: #999; + /*display: inline-block; + padding: 6px 12px; + background: #B0108D; + color: #fff; + font-weight: 600; + font-family: 'ubuntu-bold'; + text-transform: uppercase;*/ + } + } + + +/* Login Page */ + + +.login-page { + position: relative; + /*background: url(/static/ndf/images/login-background.png);*/ + background-size: 100% 100%; + min-height: 100vh; + + .login-page-opacity { + height: 100%; + width: 100%; + position: absolute; + opacity: 0.6; + //background: -webkit-gradient(linear, left top, right top, from(#E9A900), to(#B0108D)); + //background: -webkit-linear-gradient(left, #E9A900, #B0108D); + //background: -moz-linear-gradient(left, #E9A900, #B0108D); + //background: -ms-linear-gradient(left, #E9A900, #B0108D); + //background: -o-linear-gradient(left, #E9A900, #B0108D); + } + + .login-page-form { + background-color: #fff; + border-radius: 10px; + padding: 10px 40px; + opacity: 0.95; + max-width: 90%; + width: 350px; + margin: 100px auto; + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); + + .login-page-header { + img { + height: 80px; + width: 280px; + } + span { + display: block; + text-transform: uppercase; + color: #d5d5d5; + font-weight: 600; + letter-spacing: 1px; + } + } + .login-captcha { + margin: 10px 0; + + >div { + display: inline-block; + vertical-align: top; + } + .fi-refresh { + color: #A0148E; + // //font-size: 25px; + } + #captcha-content { + th{ + display: none; + } + td>input { + display: inline-block; + + &#id_captcha_1 { + width: 130px; + } + } + } + } + .login-button { + .button { + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; + background-color: #a75692; + border-color: #881378; + } + } + + .explore-button { + .button { + // //font-size: 15px; + background-color: #B1B1B1; + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; + margin-top: 160px; + + &:hover { + background-color: #CC1AB5; + border-color: #881378; + } + } + } + + + + .forgot-password { + label { + // //font-size: 10px; + text-align: center; + text-decoration: underline; + } + } + .register-user { + label { + // //font-size: 10px; + margin: 10px 0px 0px; + } + span { + color: #A0148E; + } + } + } +} + + + +.explore-button { + // //font-size: 25px; + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; + &:hover{ + background-color:#ffffff;; + cursor:pointer; + color: #6a0054; + } +} + + +.login-home-button{ + border-radius: 5px; + text-transform: uppercase; + margin-left: 70px; + padding: 6px 17px; + font-family: "OpenSans-Semibold", sans-serif; + margin-top: 50px; + border: 2px solid #ffc14e; + color:white; + background-color: #a75692; + + &:hover{ + cursor:pointer; + } + + +} + + +.top-bar-second, .top-bar-second .name { + height: 55px; + background:#ddeff9; + color: #719dc9; + margin-bottom:30px; + +} + + +.top-bar-second { + .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; + } + .name { + text-align: center; + + .close-dropdown, .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + // //font-size: 35px; + font-weight: 100; + } + + } + li.toggle-topbar { + i { + color: #fff; + display: inline-block; + vertical-align: bottom; + } + } + .top-bar-second-section { + ul { + li { + background: $primary-blue; + &>a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: $secondry-blue; + line-height: 40px; + font-weight: bold; + // //font-size: 14px; + letter-spacing: 0.5px; + + } + &:hover, &.active { + &>a { + border-left-color: $secondary-orange; + color: $primary-orange; + } + } + } + } + + .dropdown li.parent-link a { + display: none; + } + + .side-bar-menu { + .add_buddy { + i { + color: #2e3f51; + background: #acd4fa; + } + } + } + } +} + +@media screen and (min-width: 40.063em) { + .top-bar-second { + .title-area { + box-shadow: none; + .name { + text-align: right; + } + } + .top-bar-second-section{ + li { + &:not(.has-form) { + a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + + &:hover { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + } + } + &.active { + a:not(.button) { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + } + } + + &.has-dropdown { + a:not(.button) { + &:hover { + color: $secondry-blue; + border-bottom: 0px; + } + } + } + + } + + &.active:not(.has-form) { + a:not(.button):hover { + background: transparent; + } + } + + } + + .dropdown { + li:not(.has-form) { + &> a:not(.button) { + border-left-width: 2px; + color: $secondry-blue; + background: $primary-blue; + } + + &:hover, &.active{ + a:not(.button){ + background: $primary-blue; + color: $secondry-blue; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } + } + + } + } + } + } +} + + + + +/*Overridding foundation css*/ + +.top-bar, .top-bar .name { + height: 52px; + background: $primary-blue; + +} + +.top-bar { + .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + } + .name { + text-align: center; + + .close-dropdown, .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; + } + + } + li.toggle-topbar { + i { + color: #fff; + display: inline-block; + vertical-align: bottom; + } + } + .top-bar-section { + ul { + &.left li { + border-right: 2px solid #16539f; + } + li { + background: $primary-blue; + + + &>a { + color: #ffffff; + line-height: 40px; + font-weight: 500; + letter-spacing: 1px; + display: block; + padding: 12px 0 12px 0; + font-family: "OpenSans-Regular"; + font-size: 16px; + + } + &:hover { + &>a { + //border-left-color: $secondary-orange; + //color: $primary-orange; + color:#fff; + //color: $header-link-hover-color; + + } + + } + + input{ + color: $secondry-blue; + background: $primary-blue; + font-family: OpenSans-Regular; + font-size: 15px; + letter-spacing: 1.4px; + + + &:hover{ + color: white; + border-left: 4px solid $secondary-orange; + background: $primary-blue; + } + } + + .lang-font{ + + font-family: "OpenSans-Light"; + font-size: 14px; + + } + + &.active{ + color:#fff; + + } + &.active { + &>a { + color: #fff; + + } + } + } + } + + .dropdown li.parent-link a { + display: none; + + } + + .side-bar-menu { + .add_buddy { + i { + color: #2e3f51; + background: #acd4fa; + } + } + } + } +} + +@media screen and (min-width: 40.063em) { + .top-bar { + .title-area { + box-shadow: none; + .name { + text-align: right; + } + } + .top-bar-section { + ul.left li>a { + padding: 0px 20px; + &.active{ + color:#fff; + font-size: 17px; + font-family: OpenSans-Bold; + margin-top: -3px; + border-bottom: 3px solid $secondary-orange; + background-color:#164a7b !important; + } + } + li { + &:not(.has-form) { + a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 50px; + border-left-width: 0px; + font-family: OpenSans-Regular; + + } + &.active { + a:not(.button) { + //color: $header-link-active-color; + //color: $primary-orange; + color: #fff; + font-family: OpenSans-Bold; + font-size: 18px; + //border-bottom: 3px solid $secondary-orange; + } + } + &.has-dropdown { + a:not(.button) a:not(.not-click) { + &:hover { + color: $secondry-blue; + border-bottom: 0px; + border-left: 3px solid $secondary-orange; + + + } + } + } + } + + &.active:not(.has-form) { + a:not(.button):hover { + background: transparent; + color: #fff; + } + } + } + + .profile-menu { + &>a svg { + height: 52px; + width: 52px; + vertical-align: top; + background: #fff; + margin-right: 15px; + } + } + + .dropdown { + li:not(.has-form) { + &> a:not(.button) { + border-left-width: 2px; + color: $secondry-blue; + background: $primary-blue; + } + + &:hover, &.active{ + a:not(.button){ + background: $primary-blue; + color: $header-link-hover-color; + border-bottom: 0px; + border-left: 2px solid $secondary-orange; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } + } + + } + } + } + } +} + + + +/*Custom css*/ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +.icons-medium { + // //font-size: 23px; + line-height: 23px; + vertical-align: sub; +} +.icons-large { + // //font-size: 45px; + // vertical-align: sub; + line-height: 45px; +} +.round-icon { + border-radius: 100%; + height: 20px; + // //font-size: 15px; + padding: 2px 5px; + +} +.hide { + display: none !important; +} +.badge { + display: inline-block; + height: 21px; + width: 21px; + border-radius: 100%; + line-height: 21px; + text-align: center; + // //font-size: 15px; + + &.badge-blue { + background-color: $secondry-blue; + color: #fff; + } +} + + +#menu_bar_gstudio { + .user-profile-pic-small { + height: 46px; + width: 46px; + margin: 0px 10px; + } + + .loggedin-user { + # background: #505e6c; + border-radius: 100%; + height: 45px; + width: 45px; + display: inline-block; + margin: 5px 5px 0px 5px; + overflow: hidden; + + + img { + height: 100%; + width: 100%; + } + } +} +/* group_list */ +.group_breadcumbs { + color: #6e8ba6; + a { + display: inline-block; + margin: 15px auto; + color: #6e8ba6; + letter-spacing: 1px; + } +} + +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0,0,0,0.4); + &:hover{ + opacity:0.7; + } + .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81,0.7); + } + + .group_desc { + letter-spacing: 0.5px; + // //font-size: 17px; + } +} + +/* curriculum */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; + >li { + display: inline-block; + height: 100%; + >a { + color: $primary-orange; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + // //font-size: 17px; + letter-spacing: 0.3px; + + &.selected, &:hover { + border-bottom: 4px solid $secondary-orange; + } + } + &.sub_group_action { + position: relative; + &>ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; + + li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; + + &:hover { + background: #d6f2fe; + } + } + } + &:hover { + ul { + display: block; + } + } + } + } +} +.max-width{ + max-width:100%; +} +.group_content { + + .group_banner { + @include transition-prop(all); + height: 300px; + overflow-y: auto; + background: url('/static/ndf/images/course-cover.png') no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; + } + .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width:100%; + + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73,102,122,0) 0%, rgba(73,102,122,0.8) 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%);/* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73,102,122,0) 0%,rgba(73,102,122,0.8)100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ + + .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: $primary-blue; + } + .group_actions>button { + display: inline-block; + margin: 7px 10px; + } + } + .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; + } + .group_sections_content { + // min-height: 400px; + background-color: #fff; + margin-bottom: 100px; + margin-top:-1px; + } + .top-bar-secondions_content{ + background-color:#fff; + } + + .course_actions>span{ + margin-right: 5px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-left:130px; + } + + .course_actions>i{ + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right:80px; + } + +} + +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + //height:7rem; + //margin-left: 3px; + height:260px; + border: 1px solid $primary-blue; + .activity_preview { + height: 200px; + //margin-left: 5px; + width:100%; + //background-color: #eee; + //background: url(/static/ndf/images/asset_thumbnail.png)no-repeat; + border-width: 5px; + img{ + width:100%; + height:210px; + } + } + + .activity_text { + padding: 7px 0px 0px 0px; + .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color:$primary-blue; + padding-top: 10px; + padding-left: 6px; + &>a{ + margin-right:0px !important; + } + + .filenode { + z-index: -1; + + } + + } + .activity_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + //height:7rem; + //margin-left: 3px; + height:260px; + border: 1px solid $primary-blue; + .asset_preview { + height: 200px; + //margin-left: 5px; + width:100%; + //background-color: #eee; + //background: url(/static/ndf/images/asset_thumbnail.png)no-repeat; + border-width: 5px; + .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; + } + img{ + width:100%; + height:210px; + } + .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; + } + .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; + } + + @media (max-width: 1200px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + + } + + @media (max-width: 1000px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + } + @media (max-width: 800px) { + .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } + } + @media (max-width: 400px) { + .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } + } + + + .photos-02{ + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + + } + + .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; + } + + @media (max-width: 1200px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 1000px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 800px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 400px) { + .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + + .photos-03{ + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + + } + + .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; + } + + @media (max-width: 1200px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 1000px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 800px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + + @media (max-width: 400px) { + .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } + } + } + + .asset_text { + padding: 7px 0px 0px 0px; + .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color:$primary-blue; + padding-top: 10px; + padding-left: 6px; + + .filenode { + z-index: -1; + + } + + } + .asset_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height:75px; + border: 1px solid $primary-blue; + width: 270px; + margin-right: 15px; + .audio_preview { + audio{ + width: 100%; + } + figcaption { + margin-left: 5px; + } + } + + &:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: $primary-orange; + } + + +} + + +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid $primary-blue; + width: 120px; + margin-right: 15px; + + .template_preview { + height: 85px; + width:100%; + img{ + width:100%; + } + } + &:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: $primary-orange; + } + + .template_text { + padding: 10px 0px 0px 0px; + .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color:$primary-blue; + padding-top: 22px; + padding-left: 6px; + + } + .template_desc { + // //font-size: 13px; + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; + } + } +} + + + + +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 485px; + min-height: 350px; + margin-left: 14px; +} + +h6{ + margin-left:15px; +} + +/*Custom css*/ + +.add_more_files { + color: #aaa; + // //font-size: 14px; + letter-spacing: 0.6px; + margin-left: 10px; +} + + +input.trans-sub[type="text"], input.trans-sub[type="file"] { + margin-top: 5px; + margin-left: 20px; +} + + +input.trans-sub[type="file"]::-webkit-file-upload-button{ + visibility: hidden; +} +input.trans-sub[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + // //font-size: 10pt; + color: #cc7769; + border-color: #cc7769; + float: right; + margin-left: 20px; +} +input.trans-sub[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 20px; + border-radius: 4px; + border: 1px solid #ccc; + width: 98%; +} +input.trans-sub[type="text"]{ + text-align: left; +} + + +input[type="text"], input[type="file"] { + margin-top: 5px; +} +label { + font-size: 12px; + text-transform: uppercase; + color: #99aaba; + margin-bottom: 7px; + margin-left: 20px; +} + + +input[type="file"]::-webkit-file-upload-button{ + visibility: hidden; +} +input[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + // //font-size: 10pt; + color: #cc7769; + border-color: #cc7769; + float: right; +} +input[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 30.4px; + border-radius: 4px; + border: 1px solid #ccc; + width: 95%; +} + + + + +input[type="button"] { + -webkit-appearance: button; + cursor: pointer; + margin-top:15px; + width:8%; +} + + + + + +.select-language{ + display: block; + border: 1px solid #999; + border-radius: 5px; + margin-left: 20px; + width: 457px; + border-radius: 4px solid #cc7769; + height: 47px; + border-color: #cc7769; + + +} +.name-desc-asset-cont-area{ + width:95%; + margin-left: 24px; +} + +#asset_content_desc, #asset_content_name{ + color: black !important; + font-size: 13px; +} + +/* Buttons custom css */ +.button-hollow-white { background: inherit; + border: 2px solid #fff; + border-radius: 5px; + color: #fff; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + // //font-size: 13px; + cursor: pointer; + @include transition-two-prop(color, border-color); +} + +/* Buttons custom css */ +.secondary-header-tabs{ + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + + &:hover{ + color: $primary-blue; + + } + &.active{ + color: $primary-blue; + border-bottom: 2px solid $primary-blue; + padding-bottom: 14px; + font-weight: 600; + + } +} + +.secondary-header-button{ + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; + + &:hover{ + opacity:0.5; + + } +} + +.orange-button { + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + +.pink-button{ + background: #a2238d; + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } +} + +.orange-button-template{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + + + +.orange-button-subtitle { + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + + +.asset-unit-button { + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + + +.disab-button{ + margin-right: 10px; + background-color: #fff; + text-transform: none; + font-size: 14px; +} + + +.save-asset{ + margin-top: 9px; + margin-right: -133px; +} +.asset-save-button { + color: $primary-orange; + display: inline-block; + border: 1px solid #ce7869;; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + // //font-size: 10pt; + color: #cc7769; + border-color: #cc7769; + float: right; + background: #fff; + margin-right: 5px; + margin-top: 5px; +} + +.blue-white-button { + color: #fff; + background: $primary-blue; + border-radius: 4px; + padding: 5px; + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + +button[disabled], .button.disabled, .button[disabled] { + background-color: #eefaff ; + border-color:#eefaff; + color: gray ; + cursor: default; + opacity: 0.7; + box-shadow: none; + border-radius: 4px; + + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + + + +.button-small { + padding: 1px 5px; +} + +/* Create Curriculum */ +ul.jqtree_common { + position: relative; + &:before { + border-width: 0px 0px 1px 1px; + position: absolute; + left: 9px; + border-style: dashed; + border-color: #ccc; + top: 12px; + height: calc(100% - 27px); + width: 16px; + } +} +/*li.jqtree-folder { + position: relative; + &:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 7px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 15px; + } +}*/ + +ul:not(:only-child) li:first-child { + position: relative; + &:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: -22px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 30px; + } +} +.jqtree_common .jqtree-element:not(.leaf_node):not(:only-child), .jqtree_common .jqtree-element.leaf_node { + position: relative; + &:before { + + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 12px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 10px; + } +} + +ul.jqtree-tree .jqtree-element { + margin-top: 15px; +} + +ul.jqtree-tree ul.jqtree_common { + margin-left: 35px; +} + +ul.jqtree-tree li.jqtree-selected > .jqtree-element, ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover { + background: transparent; +} + +ul.jqtree-tree .jqtree-toggler { + color: #aaa; + &:hover { + color: #aaa; + } +} + +.curriculum_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 20px auto; + padding: 0px 0px; + min-height: calc(100vh - 100px); + overflow-y: auto; + padding: 15px; +} +.curriculum_creator_header { + width: 100%; + height: 60px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 13px #000; + + .course_heading span{ + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; + // //font-size: 25px; + } + + + + .course_actions { + ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #999999; + cursor: pointer; + // //font-size: 18px; + letter-spacing: 0.8px; + + + &.active, &:hover { + border-bottom: 3px solid $secondary-orange; + } + } + + } +} + +.curriculum_list{ + width: 100%; + height: 60px; + background: #fff; + padding: 17px 81px; + box-shadow: 0px 1px 4px #004; + color: #2b78e4; + a{ + color: $primary-blue; + font-size: 20px; + font-weight: 600; + } +} + +.curriculum_list_header{ + max-width: 1176px !important; + margin: 0 auto !important; + box-sizing: border-box !important; + padding-left: 20px !important; + padding-right: 20px !important; + padding: 8px !important; + padding-top: 20px !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + justify-content: space-between !important; + border-bottom: 1px solid #D6D8DA !important; + -moz-box-sizing: border-box !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + box-shadow: 0px 3px 6px #000; + background-color: #ffffff; + .title-curriculum{ + font-family: inherit !important; + font-weight: bold !important; + line-height: 23px !important; + color: #21242C !important; + padding: 0px 0px 0px 10px !important; + font-weight: 500 !important; + font-size: 20px !important; + } + + .add-curriculum{ + position: relative !important; + display: -moz-box !important; + display: -ms-inline-flexbox !important; + display: -webkit-box !important; + display: -webkit-inline-flex !important; + display: inline-flex !important; + align-items: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + font-size: 19px !important; + font-weight: 500 !important; + } +} + +.curriculum_listing{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .curriculum_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .curriculum_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .curriculum_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: $primary-blue !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } + } + } + } +} + +.explore-header { + line-height: 4em; + >div { + vertical-align: middle; + display: inline-block; + } + .heading { + // //font-size: 2em; + a { + color: #fff; + } + } + + .expore-type { + + } + + .explore-search { + + } +} + + + + +.node_name_empty{ + border-radius: 5px; + margin-top: 11px; +} + + + + +/*Common css*/ +.toggleButtons { + a{ + padding: 0.5em 1em; + margin: 0px; + background: #dddddd; + color: #000; + border: 1px solid #B7B7B7; + display: inline; + + &:first-child{ + margin-right: -3px; + border-right: 0px solid #000; + } + &:first-child { + border-radius: 10px 0px 0px 10px; + } + &:last-child { + border-radius: 0px 10px 10px 0px; + } + &.active { + background-color: #908F8F; + color: #fff; + } + } +} + + +/* about_course style */ + +/* abput and modules */ +.about-course { + background-color: #fff;; + padding: 10px 23px ; + > h5 { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + // //font-size: 14px; + display: block; + margin: 2px 0px 0px; + color: #99aaba; + margin-left:5px; + } +} +.course-desc { + // //font-size: 19px; + letter-spacing: 0.7px; + font-weight: 400; + color: $primary-blue; + font-size:14px; + margin-left: 4px 0px 0px; + margin-top: 5px; + +} +.course-highlight { + + letter-spacing: 0.7px; + font-weight: 400; + color: #164A7B; + font-size: 14px; + margin-top: -11px; + margin-left: 4px 0px 0px; + margin-left: 4px; + margin-bottom: 5px; + + >span{ + color: #164a7b; + } +} + + +/* group analytics and notifications */ + + +.course-overview-container { + .course-overview >.columns { + padding: 0px 10px; + } + h5 { + text-transform: uppercase; + } + .correct-count { + color: #367714; + } + .incorrect-count { + color: #9b0000; + } + .course-metric-heading { + text-transform: uppercase; + // //font-size: 12px; + letter-spacing: 0.9px; + font-weight: 500; + color: #000000; + display: block; + } + .course-metric-count { + // //font-size: 30px; + font-weight: 600; + letter-spacing: 0.5px; + display: block; + color: #000000; + font-size: 17px; + } + .ongoing-session { + border-bottom: 1px solid #ccc; + margin-bottom: 12px; + padding-bottom: 15px; + + h5,h3 { + color: #2b78e4; + } + button { + // //font-size: 14px; + padding: 7px; + margin: 0px; + background-color: #2B78E4; + } + } + .course-status { + >h5 { + color: #888; + } + >.row { + margin: 10px 0px; + } + .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; + + .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + + &.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; + } + } + } + } + + + .course-notif-logs { + ul { + list-style: none; + } + } + .course-section { + border: 1px solid #ccc; + padding: 10px; + box-shadow: 1px 1px 1px rgba(0, 0, 0,0.5); + margin: 40px 0px; + position: relative; + + >.row { + margin: 20px 0px; + } + + .course-section-heading { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + // //font-size: 14px; + display: block; + margin: 2px 0px 15px; + color: #888; + } + + .course-section-icon { + //position: absolute; + font-size: 20px; + top: -35px; + //right: 5px; + color: #000000; + background: #ffffff; + margin-left: 22px; + } + } + .course-points-breakup { + + } + .course-interactions { + + } + .course-gallery-uploads { + + } + .course-quiz-perf { + + } + .course-notes{ + + } + .course-warning{ + background-color: #fffdd7; + >h5 { + color: #c09100; + } + i { + padding: 10px; + margin-right: 5px; + color: #c09100; + } + a { + text-decoration: underline; + } + } + .course-students-data { + margin: 20px 0px; + + .students-table-legends { + >span:nth-child(odd) { + margin: 0px 10px; + } + >span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; + } + } + } + .student-overview-table { + width: 100%; + margin: 15px 0px; + + tr { + border: none; + } + .progress { + .merter-val { + margin-left: 5px; + } + } + } +} + +.notifications-analytics-tabs{ + .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; + + .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + + &.active { + //background-color: $secondary-orange; + border: 1px solid #CCC; + border-bottom: 0px; + } + } + + } +} + +/* The notification Dashboard */ + +.course-dashboard { + + .course-status, .course-notifications, + .course-performance { + >ul { + list-style: none; + } + + >.row { + padding: 0px; + min-height: 22rem; + position: relative; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + background-color: #F9F9F9; + min-height: 20em; + margin: 0em 0em; + border-radius: 10px; + } + } + + .dash-tile-heading { + padding: 0.2em 0.7em; + border-bottom: 1px solid #DADADA; + font-weight: 500; + // //font-size: 1.3em; + } + .dash-tile-row { + padding: 1em; + } + .dash-tile-row:nth-child(n+3) { + border-top: 1px solid #DCDCDC; + } + + .course-status { + .course-update { + .course-current-state { + color: #000; + font-weight: bold; + // //font-size: 1.2em; + padding: 0.5em 0.8em 0.6em; + } + } + .course-progress { + } + } + .course-notifications { + position: relative; + + .notification-row { + + .notification-text{ + // //font-size: 0.85em; + letter-spacing: 0em; + word-spacing: 0.2em; + } + .time-elapsed { + // //font-size: 0.6em; + color: #424242; + cursor: pointer; + } + } + + .notification-count { + // //font-size: 1em; + position: absolute; + right: 0.5em; + top: 0.3em; + } + } +} + + +.notebook { + .notebook-header { + // border-color: black; + // border-style: solid; + // border-width: 1px 0px; + // padding-top: 1em; + + a, input { + margin: 0px; + } + .notes-count { + text-align: center; + + span + { + &:first-child { + // //font-size: 21px; + font-weight: 600; + padding: 15px; + } + &:last-child { + background: lightgrey; + padding: 2px 5px; + vertical-align: text-bottom; + } + + } + } + + } + .notebook-body { + padding: 0px 0px; + .note-cards { + .row { + margin: 30px 0px; + } + .note-card, .note-details { + border: 1px solid #ccc; + padding: 10px 15px; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + border-radius: 5px; + line-height: 23px; + cursor: pointer; + position: relative; + + .note-heading{ + font-weight: 800; + // //font-size: 20px; + } + .note-close { + position: absolute; + right: 7px; + top: 3px; + // //font-size: 25px; + font-weight: 700; + color: #929292; + } + .note-summary{ + margin: 15px 0px; + } + .note-info,.note-extra-data{ + color: #989898; + // //font-size: 13px; + letter-spacing: 0.9px; + font-weight: 500; + + >span{ + margin-right: 5px; + } + } + .note-tags { + >span { + display: inline-block; + margin: 10px; + background: #ffebb2; + color: #cba552; + padding: 2px 5px; + } + } + .note-actions { + color: #989898; + cursor: pointer; + + span { + margin-right: 10px 5px; + } + } + } + .note-details { + .note-info, .note-extra-data, .note-tags, .note-actions { + display: inline-block; + margin-right: 10px; + } + .note-extra-data { + + } + .note-tags { + float: right; + >span { + margin: 0px; + } + } + .note-actions { + } + } + } + + >div { + padding: 0px; + //height: 50em; + //overflow: scroll; + } + + .notebook-index { + border-right: 1px solid #AFAEAE; + padding: 4px 0px; + background-color: #F1F1F1; + + .tabs-content { + padding: 0px; + + .active { + padding: 0px; + } + } + .tabs { + width: 100%; + margin:0em 0em 0.5em; + border-bottom: 1px solid #CCC; + + .tab-title { + width: 50%; + /*background-color: #DEDEDE;*/ + border-radius: 5px 5px 0px 0px ; + position: relative; + top: 1px; + + a { + border-radius: inherit; + // //font-size: 0.9rem; + text-align: center; + color: #989898; + } + + &.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; + a { + color: rgb(58, 49, 105); + } + } + } + } + + .tab-content { + padding: 0px; + } + + .notes { + .date { + // //font-size: 12px; + font-weight: bold; + background: #EFEFEF; + padding: 7px 10px; + + .note-count { + // //font-size: 11px; + line-height: 2em; + } + } + >div { + border-bottom: 1px solid #AFAEAE; + } + .note { + padding: 5px 15px; + background: #FFF; + cursor: pointer; + color: #A2A2A2; + + .note-heading { + font-weight: 400; + // //font-size: 17px; + } + + .note-meta { + // //font-size: 13px; + + >span:not(:first-child) { + // //font-size: 11px; + font-weight: 600; + color: #717171; + } + } + + .note-footer { + color: #888888; + + span { + margin-right:10px; + } + } + + &.active { + border-left: 5px solid #6153AE; + background: #F4E7FF; + font-weight: 800; + color: #6153AE; + + .note-heading { + font-weight: 500; + // //font-size: 17px; + } + .note-meta>span:not(:first-child) { + color: #6153AE; + } + } + } + } + } + + .note-page { + // display: none; + //color: #000000; + margin-left: 15px; + background-color: #fff; + //padding-bottom: 30px; + .group_sections_content{ + margin-top:5px; + } + + >div{ + background-color: #fff; + } + + .note-toolbar { + padding: 1.8em 1.2em 0em; + margin: 0em; + background-color: #FFF; + + .note-creator { + font-weight:bold; + } + .creator-title { + text-align: left; + color: #C3C3C3; + // //font-size: 12px; + letter-spacing: 0.3px; + margin-top: 5px; + } + .creator-rating { + text-align: right; + >div { + display: inline-block; + } + } + } + .note-title { + // //font-size: 2.3em; + font-size: 20px; + font-weight: 500; + margin-right: 1em; + } + .note-content { + padding: 2em 2em 1em; + background: #fff; + margin: 0em; + .note-header { + + >div { + display: inline-block; + } + + } + .note-text { + // //font-size: 19px; + letter-spacing: 0.7px; + p{ + padding: 0px; + } + } + } + + .comment-sections { + padding: 0em 1em 0em; + + .comments-header { + span { + font-weight: bold; + } + i:not(:first-child) { + margin-left: 15px; + } + } + + .new-comment { + border-top: 1px solid grey; + padding: 15px 10px; + margin-top: 5px; + + .trumbowyg-box, + .trumbowyg-editor { + min-height: 200px; + margin-top: 0px; + } + + .user-prof-image { + // //font-size: 90px; + line-height: 0em; + } + } + } + } + } +} + +/* Explore badges */ + +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + // //font-size: 1.8em; +} + +.badge_ex { + background: #67c1ef; + border-color: #30aae9; + background-image: -webkit-linear-gradient(top, #acddf6, #67c1ef); + background-image: -moz-linear-gradient(top, #acddf6, #67c1ef); + background-image: -o-linear-gradient(top, #acddf6, #67c1ef); + background-image: linear-gradient(to bottom, #acddf6, #67c1ef); +} + +/* line 4120, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 4129, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 4139, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/* Create_Unit styles */ + +.course_creator_header { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + + .unit_editor{ + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + + } + + .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; + } + + .course_heading_unit{ + + width: 500px; + height: 40px; + border: 1px solid $secondry-blue; + box-shadow: none; + float: right; + text-align: center; + + &:focus { + border: 1px solid $secondry-blue; + } + + &::-webkit-input-placeholder + /*&::-moz-placeholder, + &:-ms-input-placeholder, + &:-moz-placeholder*/ { + color: #d9dfe4; + // //font-size: 20px; + letter-spacing: 0.8px; + } + select{ + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid $secondry-blue; + } + + } + + + .course_heading { + input { + width: 500px; + height: 40px; + border: 0px solid $secondry-blue; + box-shadow: none; + float: right; + text-align: center; + + &:focus { + border: 1px solid $secondry-blue; + } + + &::-webkit-input-placeholder + /*&::-moz-placeholder, + &:-ms-input-placeholder, + &:-moz-placeholder*/ { + color: #d9dfe4; + // //font-size: 20px; + letter-spacing: 0.8px; + } + } + + h5{ + margin-top: 15px; + } + } + + .course_heading span{ + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; + // //font-size: 25px; + } + + .course_actions { + ul{ + margin: 0px; + } + ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + // //font-size: 18px; + letter-spacing: 0.8px; + + &.active, &:hover { + border-bottom: 3px solid $secondary-orange; + } + } + + span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + } + + i { + + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + + } + + } +} + + +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; + //height: calc(150vh - 100px); +} + +.button-hollow-black{ + background: #fff; + border: 2px solid $primary-blue; + border-radius: 5px; + color: $primary-blue; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; +} + +.vertically-center { + top: 50%; + transform: translateY(-50%); +} + +/* Unit_Structure styles */ + + +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; + // min-height: calc(100vh - 100px); + + &>.columns { + padding: 0px; + height: 100%; + } + .course_editor { + // height: 80vh; + margin-bottom: 10px; + position: relative; + + /*Overriding default*/ + .accordion .accordion-navigation > .content, .accordion dd > .content { + padding: 0px; + padding-left:0px; + } + + /*Custom css*/ + >div { + display: inline-block; + vertical-align: top; + // height: calc(100vh - 120px); + } + .course_tree { + @include transition-prop(all); + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; + + .course-lessons { + dd { + border-bottom: 2px solid #9abfd9; + @include transition-prop(border-color); + + &.accordion-navigation { + position: relative; + padding-left:0px; + + &>a { + &:before { + // content: '›'; + position: absolute; + left: 23px; + // //font-size: 45px; + line-height: 20px; + color: $secondry-blue; + } + } + a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + @include transition-prop(color); + + .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + // //font-size: 14px; + display: block; + position: relative; + display: none; + + i { + display: none; + // //font-size: 20px; + } + + >.entity_actions { + margin-bottom: 0px; + + li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; + } + } + } + &:hover { + .edit_entity { + display: block; + } + } + } + + &.active >a:before { + content: ''; //arrow facing down + // //font-size: 45px; + line-height: 55px; + color: #d7d7d7; + + } + + .course-activities { + margin: 0px; + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + @include transition-prop(border-color); + + &>a { + color: #7ca0d0; + width: 100%; + display: block; + @include transition-prop(color); + } + } + } + + .content { + background: inherit; + } + + } + } + } + } + + .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + @include transition-prop(width); + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; + + .editor-header{ + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; + + .header-left { + padding: 14px 10px 10px 10px; + + >span { + color: #3c5264; + font-weight: 600; + // //font-size: 20px; + // //font-size: 28px; + margin-right: 10px; + } + } + + .custom_dropdown { + margin: 40px 35px 0px; + } + } + .editor-tool { + .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; + ul { + margin: 0px; + li { + list-style: none; + display: inline-block; + &:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; + } + + span { + display: inline-block; + // //font-size: 14px; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; + } + } + } + } + } + } + + + .add-lesson { + //margin: 10px 50px; + margin-top: 20px; + margin-left: 20px; + float: left; + //padding-top:5px; + } + + .add_activity{ + margin-top: 3px; + //margin-left: -47.1px; + + } + + .create_activity{ + margin-top: 0px; + margin-left: -7.1px; + // padding-top: 5px; + + } + +/* Course edit in the edit mode. */ + &.edit_mode { + button { + color: #5097b5; + border-color: #5097b5; + @include transition-two-prop(color, border-color); + } + .course_tree { + @include transition-prop(all); + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; + + .course-lessons { + dd { + border-color: #295566; + @include transition-prop(border-color); + + &.accordion-navigation { + a { + background: inherit; + color: #8fbbd8; + @include transition-prop(color); + + .edit_entity { + width: 20px; + i { + display: block; + } + + >.entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; + + li { + display: block; + margin: 0px; + padding: 5px 25px; + + &:hover { + background-color: #d5f2ff; + } + } + } + + &:hover>.entity_actions { + display: block; + } + } + } + .course-activities { + &>li { + @include transition-prop(border-color); + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; + + &:not(:last-child) { + &:hover,&.active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; + } + } + + &>a { + color: #edf6ff; + @include transition-prop(color); + } + } + } + } + } + } + } + + .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + + overflow-x: hidden; + //display: inline-block; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; + } + } + } + +} + +.tile_modal { + .editor_modal_content { + .modal_tile { + .th { + width: 100%; + height: 210px; + box-shadow: none; + + &>img { + height: 180px; + width: 100%; + } + + &>span { + display: block; + width: 100%; + text-align: center; + line-height: 22px; + } + } + } + } +} + + +#appModal { + .editor_modal_content { + &>div { + width: 100%; + &>div { + display: inline-block; + vertical-align: top; + } + } + .app_row { + margin-bottom: 39px; + + .app_image { + padding: 10px; + + &>div { + border: 1px solid #999; + height: 222px; + } + } + + .app_desc { + padding-left: 10px; + } + } + } +} + + +.editor_modal { + .editor_modal_title { + // //font-size: 20px; + color: #3c5264; + } + .editor_modal_actions { + &>a { + display: inline-block; + + &.close-reveal-modal { + // //font-size: small; + line-height: inherit; + position: inherit; + color: #c601bc; + } + } + } +} + +.reveal-modal-overlay, dialog{ + padding: 0px; + padding-bottom: 13px; + +} +.overlay-title{ + margin: 15px 10px 10px 14px; + letter-spacing: -1px; + font-size: 24px; + @media only screen and (max-width: 320px) { + font-size:16px; + } + +} + +.custom_dropdown { + // //font-size: 15px; + position: relative; + z-index: 10; + display: inline-block; + + &>a { + height: 30px; + display: block; + } + + &:hover { + .dropdown_content { + display: block; + } + } + + .dropdown_content { + background-color: #fff; + border-radius: 10px; + display: none; + position: absolute; + top: 30px; + border: 1px solid #ccc; + + &.left_align { + left: -54px; + } + + &.right_align { + right: -10px; + } + + li { + padding: 10px 35px; + list-style: none; + white-space: nowrap; + + a { + margin: 0px; + width:70px; + } + + &:hover { + background-color: #d5f2ff; + } + } + + } + + a { + color: #999999; + // margin-left: 25px; + } +} + +.button-hollow-purple { + background: inherit; + border: 2px solid #c601bc; + border-radius: 5px; + color: #c601bc; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + // //font-size: 13px; + cursor: pointer; + @include transition-two-prop(color, border-color); +} + +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + // //font-size: 13px; + cursor: pointer; + @include transition-two-prop(color, border-color); +} + +.button-hollow-blue{ + background: inherit; + border: 2px solid #5097b5; + border-radius: 5px; + color: #5097b5; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; + @include transition-two-prop(color, border-color); +} + +.save_edit_activity{ + margin-right: 16.9px; + margin-top: 37.3px; +} + +.activity-name{ + margin-left: 20px; + margin-top: 5px; +} + +.activity-name-label{ + width: 80%; + margin-left: 20px; + margin-top: 5px; + +} + +.create_activity_new{ + margin-left: -15px; +} + +.create-discussion { + position: relative; + margin-bottom:20px; + + >div { + display: inline-block; + vertical-align: top; + margin: 5px 0px; + } + + .button { + margin: 5px 0px; + } + .ckeditor-content-comment { + width: 85%; + margin-left: 1em; + + >div{ + display: inline-block; + vertical-align: top; + } + + .ckeditor-reply-area { + width: 90%; + } + } +} + +#replies-area { + .ckeditor-content-reply { + margin-top: 1em; + /*width: 97%;*/ + + .ckeditor-reply-area { + display: inline-block; + width: 90%; + margin-left: 1em; + } + .post-btn-div { + display: inline-block; + vertical-align: top; + } + .post-btn{ + background-color: #720f5e; + width: 77px; + margin-left: 17px; + &:hover{ + color: #720f5e; + background-color: #ffffff; + } + + + } + } + + .disc-replies { + + /*background-color:#ddd;*/ + margin-left: 48px; + margin-top: 10px; + padding-bottom:0em; + border-top: 1px solid #B1B1B1; + //background-color: #e6e6e6; + width: 80%; + .reply-btn{ + cursor: pointer; + color:grey !important; + } + + .reply-btn:hover { + color:#000 !important; + } + .discussion-title-username{ + //background-color: #3e3e3e; + color: #ffffff !important; + height: 2em; + padding-right: 10px; + padding-left: 10px; + line-height: 1.5em; + //border-radius: 5px 5px 0px 0px; + } + + .discussion-footer{ + /*background-color:#CCCCCC;*/ + color:gray !important; + height:2em; + padding-right:10px; + padding-left:10px; + border-radius: 0px 0px 5px 5px; + /*background-color: #f2f2f2;*/ + + >a { + vertical-align: middle; + line-height: 2em; + } + } + + .discussion-content{ + color: #262626; + word-wrap: break-word; + /*background-color: #f2f2f2;*/ + } + } +} + +#activity-content{ +// height:30rem!important; + } + + .bg-img{ + //background: url(/static/ndf/images/group-tile.png) no-repeat; + background: url(/static/ndf/images/i2c-bg.png); + height:100%; + background-size: 100%; + background-repeat: no-repeat; + } + +.clix-text{ + z-index:-1; + } + .panel-mod{ + background-color: transparent; + border: none; + } + +.asset_content_upload{ + width: 100% !important; +} + +#upload_asset{ + margin-top: 60px !important; +} + +#profile-img { + height: 40px; + margin-right: 5px; +} + +.profile-img { + height: 40px; + width:40px; + margin-right: 5px; + border-radius:2px; +} + +.activity-detail-page{ + margin-top: 20px; + margin-left: 15px; +} + +.activity-detail-content{ + margin-left: 20px !important; +} + +.activity-detail-content #scstyle header{ + margin-top: 0px !important; +} + +.activity-editor{ + margin:50px; + margin-left: 15px; +} + + +.tag-ele{ + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; + margin-right:-11px; +} + + + +/* Tags styles */ + +.asset-tags-container{ + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + margin-bottom: 65px; + + .tag-input-ele { + margin-left: 17px; + width: 96%; + + } + .added-tags-div{ + margin-left: -206px; + + + } + #add-tag-btn{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } + + } +} + +.tags-container { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + margin-bottom: 65px; + + .add-tag-heading span { + width: 40%; + color:#99aaba; + font-size:10px; + text-transform:uppercase; + letter-spacing:2px; + margin-top: 15px; + margin-left: 8px; + font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; + + } + .tag-input-ele{ + margin-left: 193px; + width: 54%; + + } + .added-tags-div{ + margin-left: 293px !important; + width: 54%; + + } + #add-tag-btn{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } + + } +} + +.activity-lang{ + border: 1px solid #cccccc; + border-radius: 5px; + // margin-top: 7px; + height: 38px; + width: 45%; + font-size: 14px; +} + +/* +.asset-lang{ + height: 40px; + margin-left: 20px; + width: 99%; +} +*/ + +.editor-div{ + height:100%; +} + +#asset-descid{ + margin-bottom:7px; +} + +.page-name{ + margin-top:4px; +} + +.asset_list{ + margin-left:30px; +} + +.interaction-settings-div{ + margin-left:25px; + margin-top:10px; + + .yes_no_disc_div{ + text-align: center; + font-size: 24px; + font-weight: 300; + } +} + +// Activity player header + +$activity-border-color: #e0e0e0; +$activity-header-height: 45px; +$activity-header-icon-block-width: 70px; +body { + background-color: #fff; +} + +/* + Styling for the Secondary header 2 +*/ +$ah_2_icon_color: #ffc14f; +$ah_2_background_color: rgba(107, 0, 84, 0.97); +$ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; +.activity_player_header { + background-color: $ah_2_background_color; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); + >div { + + height: $activity-header-height; + line-height: $activity-header-height; + display: inline-block; + vertical-align: top; + //cursor: pointer; + + &:not(:last-child) { + border-right: 1px solid #fff; + } + + &:hover { + //background-color: $ah_2_background_color_hover; + } + } + + .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 20px; + letter-spacing: 0.6px; + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; + a { + color: $ah_2_icon_color; + } + + @media only screen and (min-device-width : 1025px) and (max-device-width : 2130px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 938px); + + } + + @media only screen and (min-device-width : 2131px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 970px); + + } + + @media only screen and (max-device-width : 1024px) { + // /* Styles */ + text-overflow:ellipsis; + width:calc(100% - 753px); + + } + + + + // /* iPads (portrait and landscape) ----------- */ + // @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { + // /* Styles */ + // text-overflow:ellipsis; + // width:267px; + + // } + + // @media only screen and (min-device-width : 1024px) and (max-device-width : 1190px) { + // /* Styles */ + // text-overflow:ellipsis; + // width:267px; + + // } + // /* Galaxy Tab 2 (portrait and landscape) ----------- */ + // @media only screen and (min-device-width : 1200px) and (max-device-width : 1220px) { + // /* Styles */ + // width: 341px; + // text-overflow: ellipsis; + // } + + + // Desktops and laptops ----------- + // @media only screen and (min-width : 1224px) { + // /* Styles */ + // width: 363px; + // text-overflow: ellipsis; + // } + // @media only screen and (min-width : 1330px) { + // /* Styles */ + // width: 474px; + // text-overflow: ellipsis; + // } + // /* Large screens ----------- */ + // @media only screen and (min-width : 1440px) and (max-width:1880px) { + // /* Styles */ + // width: 902px; + // text-overflow: ellipsis; + // } + + + // @media only screen and (min-width : 2122px) { + // /* Styles */ + // width: 1180px; + // text-overflow: ellipsis; + // } + + + } + + .header_icon { + font-size: 16px; + line-height: $activity-header-height; + color: $ah_2_icon_color; + } + + .header_icon_block { + color: $ah_2_icon_color; + width: $activity-header-icon-block-width; + cursor: pointer; + text-align: center; + } + .header_text_sm_block{ + padding: 0px 10px; + @media screen and (min-width: 1025px) { + padding: 0px 15px; + } + } + + .lesson-nav{ + @media screen and (min-width: 1025px) { + float: right; + margin-right:70px; + background-color: $ah_2_background_color; + + } + + @media screen and (max-width: 1024px) { + background-color: $ah_2_background_color; + + } + + div{ + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; + } + .header_text_block { + padding: 0px 15px; + margin-left: -2px; + border-right: 1px solid white; + a { + color: $ah_2_icon_color; + } + + + } + .header_text_lg_block{ + padding: 0px 9px; + @media screen and (min-width: 1025px){ + padding: 0px 15px; + + } + + } + .header_text_md_block{ + padding: 0px 7px; + @media screen and (min-width: 1025px){ + padding: 0px 15px; + + } + + } + + .back_button { + border-color: $activity-border-color; + background-color: $ah_2_background_color_hover; + i { + color: #71318b; + } + } + + .settings { + i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; + } + &:hover i{ + transform: rotate(90deg); + -webkit-transform: rotate(90deg); + } + } + .pagination { + &:not(i) { + color: #a983b9; + } + } + } + +} + + +.float-right{ + float:right; +} + +.float-left{ + float:left; +} +/* +Buddy Vertical Bar Css +*/ + +$bp_background_color: #101d29; + +.buddy_panel { + position: fixed; + right: 0px; + top: 0px; + width: 70px; + height: 100vh; + padding: 10px; + //background-color: $bp_background_color; + background-color: rgba(16, 29, 41, 0.64); + overflow-y: auto; + z-index:100; + //margin-top:52px; + + .add_buddy_icon { + height: 50px; + width: 50px; + border-radius: 4px; + cursor: pointer; + } +} + +.buddy_icon { + border-radius: 4px; + overflow: hidden; + height: 50px; + width: 50px; + cursor: pointer; + margin-bottom: 10px; + position: relative; + + svg { + height: 50px; + width: 50px; + background-color: #fff; + } + + &.buddy_inactive:before { + content: ''; + position: absolute; + left: 0px; + top: 0px; + height: 100%; + width: 100%; + display: block; + background: rgba(0,0,0,0.5); + } + + .buddy_edit, .buddy_delete { + display: none; + } + + &.buddy_editable { + &:hover .buddy_edit { + position: absolute; + background: rgba(255,255,255,0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; + } + } + + &.buddy_deleteable { + &:hover .buddy_delete { + position: absolute; + background: rgba(255,255,255,0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; + } + } +} + +.add_buddy_modal { + padding: 0px; + .modal_header { + padding: 10px 20px; + position: relative; + + .modal_title { + font-size: 25px; + color: #CE7869; + letter-spacing: 0; + line-height: 35px; + } + .modal_meta { + font-size: 14px; + color: #9DBEDD; + letter-spacing: 0; + line-height: 30px; + } + + .sample_buddy { + position: absolute; + right: 30px; + top: 15px; + } + } + + .modal_body { + background-color: #101d29; + padding: 10px 20px; + max-height: 500px; + overflow: auto; + + .step_title { + font-size: 20px; + font-weight: 400; + color: #fff; + letter-spacing: 0.9px; + margin: 10px 0px; + + .step_number { + color: #82A4C3; + } + } + + .buddy_color_option { + max-width: 75px; + display: inline-block; + vertical-align: top; + margin: 10px 20px; + cursor: pointer; + + .color_sample { + display: block; + width: 50px; + height: 50px; + border-radius: 100%; + margin: 0px auto; + } + + .color_name { + text-transform: capitalize; + font-size: 15px; + color: #82A4C3; + text-align: center; + font-weight: 400; + letter-spacing: 1px; + margin-top: 10px; + } + + &:hover, &.selected { + .color_sample { + border: 3px solid #bfe0ff; + } + } + } + + .buddy_animal { + display: inline-block; + margin: 10px; + cursor: pointer; + + svg { + height: 80px; + width: 80px; + + path { + fill: #374B5E; + } + } + + .buddy_animal_name { + color: #fff; + text-align: center; + text-transform: capitalize; + letter-spacing: 1px; + } + + &:hover, &.selected { + path { + fill: #bfe0ff; + } + } + } + } + + .modal_footer { + height: 70px; + padding: 20px; + + .removeBuddy { + i { + color: #bd2b2b; + font-size: 25px; + } + } + } +} + + + +/* + Common css that can be kept at a single place. +*/ +$primary-button-color: #fff; +$primary-button-background-color: #00a9ee; +.blue_round_button { + background-color: #00a9ee; + color: #fff; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} +.text_button { + background-color: #fff; + color: #949494; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +.edit_button{ + background-color: #fff; + color:#717171; + border-radius: 4px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; + text-transform: none; + margin-top: 10px; + margin-right: -50px; + &:hover{ + color: $primary-orange; + + } +} + +$nav_menu_1_color: #ce7869; +$nav_menu_1_bg_color: #fff; +$nav_menu_1_tab_border: #ffc14e; +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: $nav_menu_1_bg_color; + >li { + display: inline-block; + + >a{ + list-style-type: none; + display: inline-block; + padding: 10px 10px 9px; + color: $nav_menu_1_color; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 5px solid transparent; + + + &.selected, &:hover{ + font-weight: bold; + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + + } +} + +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; + + &>.columns { + padding: 0px; + height: 100%; + } + .course_editor { + // height: 80vh; + margin-bottom: 10px; + position: relative; + + /*Overriding default*/ + .accordion .accordion-navigation > .content, .accordion dd > .content { + padding: 0px; + padding-left:0px; + } + + /*Custom css*/ + >div { + display: inline-block; + vertical-align: top; + // height: calc(100vh - 120px); + } + .course_tree { + @include transition-prop(all); + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; + + .course-lessons { + dd { + border-bottom: 2px solid #9abfd9; + @include transition-prop(border-color); + + &.accordion-navigation { + position: relative; + padding-left:0px; + + &>a { + &:before { + // content: '›'; + position: absolute; + left: 23px; + // //font-size: 45px; + line-height: 20px; + color: $secondry-blue; + } + } + a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + @include transition-prop(color); + + .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + // //font-size: 14px; + display: block; + position: relative; + display: none; + + i { + display: none; + // //font-size: 20px; + } + + >.entity_actions { + margin-bottom: 0px; + + li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; + } + } + } + &:hover { + .edit_entity { + display: block; + } + } + } + + &.active >a:before { + content: ''; //arrow facing down + // //font-size: 45px; + line-height: 55px; + color: #d7d7d7; + + } + + .course-activities { + margin: 0px; + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + @include transition-prop(border-color); + + &>a { + color: #7ca0d0; + width: 100%; + display: block; + @include transition-prop(color); + } + } + } + + .content { + background: inherit; + } + + } + } + } + } + + .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + @include transition-prop(width); + height: inherit; + max-height: 100%; + overflow-y: auto; + background:#fff; + + .editor-header{ + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + + .header-left { + padding: 29px 0px; + + >span { + color: #3c5264; + font-weight: 600; + // //font-size: 20px; + // //font-size: 28px; + margin-right: 10px; + } + } + + .custom_dropdown { + margin: 40px 35px 0px; + } + } + .editor-tool { + .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; + ul { + margin: 0px; + li { + list-style: none; + display: inline-block; + &:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; + } + + span { + display: inline-block; + // //font-size: 14px; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; + } + } + } + } + } + } + } +} + +.course_editor_section{ + background:#fff; + min-height: 100vh; + min-width:910px; + margin-bottom:10px; + padding-right:4px; + #scstyle{ + margin-top:-10px; + } +} + +.lesson-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +.activity-title{ + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; + + &>li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; + + &.active { + background: rgba(116, 0, 255, 0.31); + + } + &>a { + color:black; + } + } + +} + + + +.activity_page_rendered{ + //margin-top:10px; + margin-left:20px; + max-width: 900px; + // width:145%; +} +/* Rating css */ + +.rating-bar { + + &>span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; + } + + &.unrated{ + /* If the user has not rated yet */ + &:checked ~ label:before{ + color: $secondary-orange; + } +} + + +[type*="radio"] { + display: none; + & + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin:0; + vertical-align: bottom; + + &:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; /* WHITE STAR */ + color: #888; + } + } + &:checked ~ label:before, + & + label:hover ~ label:before, + & + label:hover:before { + content: '\2605'; /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; + } +} + +/* the hidden clearer */ + +.last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} + + +.last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} + + /* this is gross, I threw this in to override the starred + buttons when hovering. */ + &:hover{ + [type*="radio"] + label:before { + content: '\2606'; /* WHITE STAR */ + color: #888; + text-shadow: none; + } + [type*="radio"] + label:hover ~ label:before, + [type*="radio"] + label:hover:before { + content: '\2605'; /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; + } +} +} + + + + +/** + * Sass styles related to unit cards + */ +$unit-card-font-size: 14px; +$unit-card-line-height: 1.4; +$unit-card-lines-to-show: 3; + +.unit_card { + width: 300px; + // height: 300px; commented as info of number of lesson and etc was not passed currently + color: #000; + padding: 15px; + margin: 10px; + border-radius: 5px; + font-size: $unit-card-font-size; + border: 2px solid #d5d5d5; + position: relative; + height:210px; + + + + .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; + } + + .unit_header { + display: table; + .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; + } + .unit_title { + display: table-cell; + font-size: 20px; + font-weight: 500; + letter-spacing: 0.6px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; + } + } + .unit_desc { + display: block; /* Fallback for non-webkit */ + display: -webkit-box; + height: $unit-card-font-size*$unit-card-line-height*$unit-card-lines-to-show; /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: $unit-card-font-size; + line-height: $unit-card-line-height; + -webkit-line-clamp: $unit-card-lines-to-show; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; + } + .unit_breif { + .unit_breif_row { + i { + margin-right: 10px; + color: #99aaba; + } + } + } + .unit_actions { + //border-top : 1px solid #ccc; + //margin: 20px 0px 0px; + padding: 5px 0px; + //enroll-button + .unit-card-enrol{ + background: rgb(162, 35, 141); + height: 37px; + text-align: center; + color: #ffffff; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 120px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + } + + .unit-card-analytics{ + color: #a2238d; + font-weight: 500; + font-size: 14px; + letter-spacing: 0.3px; + border-bottom:2px solid #a2238d; + } + + .unit-card-analytics-points{ + background: #ffffff; + color: rgb(162, 35, 141); + font-size: 15px; + border-radius: 20px; + letter-spacing: 0.4px; + padding: 2px 3px 3px 1px; + font-weight:bold; + cursor: default; + } + + .view_unit{ + height: 37px; + text-align: center; + color: rgb(162, 35, 141); + font-size: 19px; + margin-top: 2px !important; + letter-spacing: 0.4px; + + &:hover { + border-bottom:2px solid $secondary-orange; + } + } + } + +} + +/* + Common css + */ +.text-button-blue { + background-color: transparent; + color: #00A9EE; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + + +/** + Status styles added for the unit styles. + */ +$inProgressColor: #fff; +$inProgressBgColor: #fd9e29; + +$inCompleteColor: #fff; +$inCompleteBgColor: #fd9e29; + +.in-progress-status { + color: $inProgressColor; + background-color: $inProgressBgColor; +} + +.in-complete-status { + color: $inCompleteColor; + background-color: $inCompleteBgColor; +} + +.thumbnail_style{ + margin-top: -30px; + margin-left: -30px; +} + +.strip{ + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +.title-strip{ + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + margin-top: -29px; + padding-left:10px; + a{ + + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; + + + } + + .position-actions{ + margin-top: -60px; + margin-left: 760px; + } + + .right-margin{ + margin-right: 46px; + } + .course_actions>span{ + //margin-right: 5px; + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: rgb(46, 63, 81); + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + margin-top:30px; + z-index:1; + + + } + + .course_actions>i{ + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + } + +} + +.dropdown-settings{ + text-align: left; + text-transform: none; + margin-top: 0px; + margin-right: 0px; + width: 198px; + background: white; + border-radius: 1px; + &:hover{ + color: $primary-orange; + border-left:2px solid $secondary-orange; + } +} + +.activity-slides-container { + //border: 1px solid black; + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; + + .activity-slides { + height: 100%; + color: #f8f8f8; + + + .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; + + .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; + } + .page { + >section { + margin-left: 50%; + transform: translate(-50%); + } + } + } + .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; + } + .content-expanded { + >i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; + } + .related-content-header { + margin-left: 20px !important; + >span:first-child{ + display: none !important; + } + .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; + } + .related-content-title { + font-size: 15px !important; + position: relative; + + .related-content-close { + display: block; + } + >i { + display: none !important; + } + } + } + .related-content-body { + display: block !important; + } + } + #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; + + >i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; + } + + .related-content-header { + margin-left: 40px; + .back-to-activity { + display: none; + } + span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; + } + .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; + } + } + .related-content-body { + display: none; + } + } + + } + } +/** + * Sass styles related to module cards + */ + +$module-card-font-size: 12.5px; +$module-card-line-height: 1.4; +$module-card-lines-to-show: 3; + +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + + &>div { + display: table-cell; + height: 290px; + } + + .card_banner { + width: 250px; + height:290px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; + + >img{ + height:100%; + width:100%; + border-radius:4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)); + &:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; + + + } + } + + >h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + //color: #ffedda !important; + color: #ffffff !important; + //text-shadow: 2px 2px #a61680; + text-shadow: 2px 0px 8px black; + + } + + } + + + .card_title { + display: block; + width:230px; + font-size: 24px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; + } + + &.animated_card { + .card_banner { + border-radius: 8px; + } + &:hover .card_banner{ + border-radius: 8px 0px 0px 8px; + } + } + &.animated_card.isOpen { + .card_banner { + border-radius: 8px 0px 0px 8px; + } + } + &.animated_card:hover .card_summary { + left: 30px; + } + &.animated_card .card_summary { + left: 5px; + } + + .card_summary{ + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; /* Safari */ + transition-property: left; + + .card_label { + font-weight: 500; + font-size: $module-card-font-size; + letter-spacing: 1px; + color: black; + } + .card_section { + margin: 5px 0px; + padding: 5px 0px; + + &:not(:last-child) { + border-bottom: 1px solid #ccc; + } + p { + margin-bottom: 7px; + font-size: $module-card-font-size; + } + .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + //enroll-button + .module-card-enrol{ + background: rgb(162, 35, 141); + height: 37px; + text-align: center; + color: #ffffff; + width: 172px; + font-size: 19px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; + + &:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + } + } + } + + .module_brief { + display: block; /* Fallback for non-webkit */ + display: -webkit-box; + height: $module-card-font-size*$module-card-line-height*$module-card-lines-to-show; /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: $module-card-font-size; + line-height: $module-card-line-height; + -webkit-line-clamp: $module-card-lines-to-show; + -webkit-box-orient: vertical; + color: black; + } + } +} + + + + + + +//LMS Page: Unit detail of LMS + +.lms_page{ + .lms_banner{ + width:100%; + height:150px; + //background-image: url('/static/ndf/images/maths-cover.png'); + background-size:100% 100%; + position:relative; + //opacity:0.9; + + &:before { + content: ' '; + background-color: rgba(0,0,0,.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + // z-index: 10; + box-shadow: inset 0 0 40px rgba(0,0,0,.2); + + a{ + cursor: pointer; + } + } + + .div-height{ + //width:100%!important; + height:150px!important; + background-size:100% 100%; + position:absolute!important; + + } + + .enroll_unit>a{ + cursor: pointer; + } + + .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; + + + .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; + } + + .right-margin{ + margin-right: 46px; + } + } + } +} + + + +.border-bottom-lms-header{ + border-bottom: 1px solid #00000029; +} + + +.lms_secondary_header{ + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + .course_actions{ + margin-top: 8px; + + >span{ + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + + } + + @media screen and (min-width: 980px) and (max-width: 1000px){ + + .course_actions{ + margin-top: 8px; + + >span{ + margin-left: 50px; + background: rgb(46, 63, 81); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity:0.8; + + } + } + } + } +} + +$nav_menu_1_color: #164a7b; +$nav_menu_1_bg_color: #fff; +$nav_menu_1_tab_border: #a2238d; +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: $nav_menu_1_bg_color; + >li { + display: inline-block; + + >a{ + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: $nav_menu_1_color; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + + + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + + } +} + +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; + + ul.jqtree-tree { + .course-tree-node { + &.jqtree-selected .jqtree-element{ + background: #fff; + } + &>div{ + height: 35px; + a { + margin-right: 0.7em; + } + } + } + } + + .course-unit-name { + padding-left: 20px; + &:not(:last-child){ + border-bottom: 1px solid #d2cfcf; + } + + >div { + .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; + } + } + } + .course-activity-group >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } + .course-activity-name >div { + .jqtree-title { + color: #74a0c0; + font-size: 17px; + } + } +} + +.listing-row{ + margin-top: 10px !important +} + +.raw_material_asset { + width: auto; + top: -0.50em; + position: absolute; + display: inline-block; + color: #ce7869; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 12px; + border-radius: 4px; + border: 2px solid #ffc14e; + background-color: #eefaff; + letter-spacing: 0.3px; +} + +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family:OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #008000; + letter-spacing: 0.4px; +} +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: $secondary-orange; + letter-spacing: 0.4px; +} + +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: $secondry-blue; + letter-spacing: 0.4px; +} + +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: grey; + letter-spacing: 0.4px; +} + + +.lesson-dropdown ul { + display:none; +} + +.lesson-dropdown:hover ul{ + display:block; +} + +.lesson_name_in_export{ + list-style: none; + &:hover{ + border-left: 2.5px solid #ce7869; + } +} + +.buddy_margin{ + margin-right: 80px; + font-family:OpenSans-Regular; + margin-top:6px; +} + +.lms_explore_head{ + width: 100%; + height: 45px; + background-color:#fff; + color: $primary-blue; + margin-top:-30px; + >p{ + margin-left: 81px; + padding: 12px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; + } + >a{ + padding: 12px 85px 3px 0px; + } +} +.lms_explore_head_unit{ + width: 100%; + height: 50px; + background-color:#fff; + color: $primary-blue; + >p{ + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; + } + >a{ + padding: 0px 85px 3px 0px; + } +} + +.lms_explore_back{ + background-color: #fff; +} + +.lms_explore_back_unit{ + background-color: #fff; + margin-top:-23.3px; +} + +.empty-dashboard-message { + border: 3px solid #e4e4e4; + background: #f8f8f8; + padding: 40px 0; + text-align: center; + >p{ + font-size: 24px; + color: #646464; + margin-bottom: 20px; + text-shadow: 0 1px rgba(255,255,255,0.6); + } + >a{ + background-color: #164a7b; + border: 1px solid #164a7b; + box-shadow: 0 1px 8px 0 rgba(0,0,0,0.1); + box-sizing: border-box; + color: #fff; + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif; + display: inline-block; + letter-spacing: 1px; + margin-top: 5px; + margin-left: 5px; + padding: 15px 20px; + } + .button-explore-courses{ + font-size: 20px; + font-weight: normal; + text-shadow: none; + text-transform: capitalize; + border-radius: 0.22rem; + width: 170px; + } +} + +// My Desk customized classes + +.mydesk_page { + .page_banner { + width: 100%; + height: 200px; + background-image: url('/static/ndf/images/mydesk_banner.png'); + background-size: 100% 100%; + position: relative; + + &:before { + content: ' '; + background-color: rgba(0,0,0,.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0,0,0,.2); + } + + .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; + + .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; + + svg { + + height: 100px; + width: 100px; + + path { + fill: #7a422a; + } + } + } + .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; + + .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; + } + } + } + } + .page_menu { + border-bottom: 1px solid #e5e5e5; + + li{ + >a{ + padding: 12px 20px 9px; + } + + } + + } +} + + +.input_links{ + margin-left: 10px; + a{ + margin-right: 35px; + margin-top: 5px; + } +} + +#course-notification + #status{ + width: 100% !important; + } + + +.add-note-btn{ + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +.bef-note-btn{ + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +.edit-note-btn{ + float:right; + border: 1px solid #CFCFCF; + padding: 1px 16px; + border-radius: 3px; + color:#A2A2A2; + background-color: #f7f7f7; + width:85px; + i{ + margin-right: 5px; + } +} +.delete-note-btn{ + float:right; + border: 1px solid #CFCFCF; + padding: 1px 6px; + margin-right: 25px; + border-radius: 3px; + color:#A2A2A2; + background-color: #f7f7f7; + width:85px; + i{ + margin-right: 5px; + } +} + +.jqtree-title > .fa-check{ + color: green; +} +.jqtree-title > .fa-check-circle-o{ + color: green; +} +.jqtree-title > .fa-clock-o{ + color: orange; +} +.course-status-icon{ + font-size: 20px; + margin-right: 5px; +} +.img-height{ + height:150px; + width:1351px; +} + +.wrapper-footer{ + box-shadow: 0 -1px 5px 0 rgba(0,0,0,0.1); + border-top: 1px solid #c5c6c7; + padding: 0px 0px 0px 3px; + //position: fixed; + //margin-top: -100px; + right: 0; + bottom: 0; + left: 0; + z-index:10; + max-width:1200px; + display:flex; + background: rgba(221, 221, 221, 0.18); + clear: both; + //height:200px; + + #footer-clix{ + box-sizing: border-box; + max-width: 1200px; + margin-left: auto; + margin-right: auto; + margin: 0 auto; + + + .links-logos{ + float: left; + display: block; + margin-right: 2.35765%; + width: 65.88078%; + + .nav-links-logos{ + margin: 10px 0px 0px 18px; + + ol { + display:inline; + list-style-type: none; + li { + float: left; + margin-right: 15px; + &>a{ + color:$primary-orange; + &:hover { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + } + } + } + + + } + } + + .nav-legal{ + margin: 0px 0px 0px 20px; + ol { + display:inline; + list-style-type: none; + li { + float: left; + margin-right: 15px; + display: inline-block; + font-size: 0.6875em; + &>a{ + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + &:hover { + color:#777; + border-bottom: 3px solid hsla(316, 88%, 42%, 1); + } + } + } + + + } + } + .wrapper-logo{ + margin: 13px 0; + display:inline-block; + p{ + color:inherit; + margin:0; + display:inline-block; + a{ + display: inline-block; + } + } + + .footer-logo{ + &>img{ + height: 10px; + } + } + } + } + } + +} + +#overlay{ /* we set all of the properties for are overlay */ + + height: 116px; + width: 1024px; + margin: 0 auto; + background: white; + color: #999999; + padding: 28px 10px 10px 0px; + position: absolute; + top: 40%; + left: 10%; + z-index: 1000; + text-align: center; + display: none; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; + border-radius: 10px; +} + +#mask{ /* create are mask */ + position:fixed; + top:0; + left:0; + background:rgba(0,0,0,0.6); + z-index:500; + width:100%; + height:100%; + display:none; +} +/* use :target to look for a link to the overlay then we find are mask */ +#overlay:target, #overlay:target + #mask{ + display:block; + opacity:1; +} +.close{ /* to make a nice looking pure CSS3 close button */ + display: block; + position: absolute; + top: -20px; + right: -16px; + background: rgba(0, 0, 0, 0.5); + color: white; + height: 40px; + width: 40px; + line-height: 40px; + font-size: 34px; + text-decoration: none; + text-align: center; + font-weight: bold; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + -o-border-radius: 40px; + border-radius: 38px +} +#open-overlay{ /* open the overlay */ + padding: 0px 0px; + color: gray; + text-decoration: none; + display: inline-block; + margin: 0px; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; +} + +.enroll-btn{ + width: 90px; + opacity: 1; + background-color: rgba(0,0,0,.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + //border: 2px solid #ffc14e; + border: 1px solid #c1b4b5; + background-color: #4b4852; + + + + + + } + + +.img-style-land{ + margin-top: 28px; + margin-left: -56px; +} + +.top-margin-translation{ + margin-top: 0px; +} + +.activity-editor-header-top{ + margin-top:-50px; + +} +.add-lesson-top-margin{ + margin-top:5px; +} +.translation-detail-top-margin{ + margin-top: 0px; +} +.outer +{ + width:100%; + text-align: center; +} +.inner +{ + display: inline-block !important; +} + +.transcript-toggler{ + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(hsla(259, 40%, 40%, 1), hsla(259, 40%,30%, 1)); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top:7px !important; + text-transform: uppercase; +} + + +.double-buttons{ + margin-top: 100px; + margin-left: 729px; +} + +.lesson-form-name{ + padding-top: 10px; +} + +.lesson-form-desc{ + padding-top: 25px; +} + +.enroll_chkbox{ + transform: scale(1.5); +} +.enroll_all_users{ + width: 15% !important; +} + +.enrollBtn{ + // width: 124px !important; + // background: $primary-orange; + // border: 1px solid rgba(255, 255, 255, 0.7); + // padding: 5px 8px; + // color: #fff; + // font-size: 20px; + // margin: 0px 10px 0px 0px; + // cursor: pointer; + // border-radius: 3px; + // // opacity: 0.8; + // margin-top: 90px !important; + // margin-right: 15px; + // font-weight:bold; + // &:hover { + // opacity: 1; + // background: #008100; + // color: #ffffff; + // font-weight:bold; + // } + background: rgb(162, 35, 141); + height: 50px; + text-align: center; + color: #ffffff; + /* font-weight: bold; */ + width: 172px; + font-size: 28px; + border: 2px solid rgba(43, 51, 63, 0.42); + border-radius: 5px; + width: 164px !important; + margin-top: 2px !important; + letter-spacing: 0.4px; +} + +.enroll-act_lbl{ + color: #0c2944; +} + + +.wrkspace{ + margin-right:80px; +} + +.status-btn{ + background-color: #fff; + margin-right: auto; + padding-bottom: 0px; + text-transform: none; + .disabled{ + background-color: #008cba; + border-color: #007095; + color: white; + cursor: default; + opacity: 0.7; + box-shadow: none; + } +} + +.margin-right-50{ + margin-right:50px; +} + + + + + + +.color-btn{ + background-color: #720f5e; + width: 77px; + margin-left: 17px; + &:hover{ + color: #720f5e; + background-color: #ffffff; + } +} + +.mid_label{ + margin-top: 15px; + font-size: 15px; +} + +.compulsory{ + color: red; + font-size: smaller; +} + +.select-drop{ + height: auto; +} + +.template-select{ + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 40%; + font-size: 14px; +} + +.white-text{ + color: white; +} + +.quiz-player{ + .quiz_qtn{ + margin-left:20px !important; + font-size: 20px; + } + .question_edit{ + margin-left: 20px !important; + } + + input[type=checkbox], input[type=radio]{ + margin-right: 10px; + width: 15px; + height: 15px; + } + + .chk_ans_lbl, .rad_ans_lbl{ + font-size: 22px; + margin-left: 5px; + } + + .fi-check{ + color: green; + } + + .fi-x{ + color: red; + } +} + +.hyperlink-tag{ + cursor: pointer; + cursor: pointer; + /* text-align: center; */ + vertical-align: middle; + /* margin: 12px 10px 10px 10px; */ + height: 10px; + margin-left: 79px; + font-size: 24px; + color: #164A7B; + +} +.scard { + background:#FFF; + border:1px solid #AAA; + border-bottom:3px solid #BBB; + padding:0px; + margin:5px; + overflow:hidden; + width:11rem; + height:9rem; + &:hover{ + box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); + transition: box-shadow 0.5s ease; + } + /*float:left;*/ + +.scard_header { + text-align:center; + position:fixed; + height:20rem; + border:1px solid #AAA; + border-bottom:3px solid #BBB; + padding:0px; + margin:5px; + left:0px; + right:0px; + background:#FFF; + padding:25px 0px 5px 0px; + border-bottom:5px solid #CCC; + font-size:20px; + font-weight:bold; + } +} +.scard-content { + height: 2.7em; + padding: 0.5rem; + margin:5px; + padding-top: 0.5cm; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + margin-top: -0.3em; + /*height: 8.25rem;*/ + background-color:#3e3e3e; + .scard-title{ + font-size: 0.8em; + margin-top: -1em; + float: left; + color:#ececec; + //width:50%; + display:inline-block; + text-align: center; + } + + + } + +.scard-action { + //color:#ececec; + height: height; + font-size:0.6em; + padding: 0.5rem; + margin:5px; + padding-top: 0.1cm; + margin-top:-0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + background-color:#CCCCCC; + +} + +.scard-desc{ + font-size:0.7em; + color:#333333; + height: 40px; + padding: 0.5rem; + margin:5px; + padding-top: 0.1cm; + margin-top:-0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width:11rem; + background-color:#E6E6E6; + display-inline:block; +} + + + +.scard-image { + padding:0px; + margin:0px; + height:100%; + background-position:center; + background-repeat:no-repeat; + position:relative; + overflow:hidden; + background-color:#f2f2f2; + img { + border-radius: 2px 2px 0 0; + display: block; + margin: 0 auto; + opacity: 0.9; + //width:100%; + height:100%; + } + + + +} + .published.scard-action { + background: #A6D9CB; + } + + .draft.scard-action { + content: "Draft"; + background: #DCDCDC; + + } + +.scard_footer { + border-top: 1px solid rgba(160, 160, 160, 0.2); + padding: 0.25rem 0.5rem; + color: gray; + font-size: small; + height: 2rem; + } + +.auto_width{ + width: auto !important; +} + +.explore-settings-drop{ + margin-left: 59%; + display: inline-block; + &> button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; + &:hover{ + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; + } + } + a{ + font-size:16px; + } + .f-dropdown li { + + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: $primary-blue; + + a{ + color: $secondry-blue; + } + + &:hover{ + border-left: 4px solid $secondary-orange; + } + + } +} + +.attempts_count{ + color: #000000 !important; +} + +#course-settings-drop{ + li{ + a{ + + text-align: left; + } + } +} +#asset-settings-drop{ + li{ + a{ + + text-align: left; + } + } +} + +.button-bg{ + background-color: $secondry-blue; +} + + +/* Tools page css listing*/ + +.polaroid { + width: 330px; + background-color: white; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + margin-bottom: 25px; + margin-top: 25px; + padding: 10px 10px 10px 10px; + -moz-transition: all 0.3s; + -webkit-transition: all 0.3s; + transition: all 0.3s; + cursor: pointer; +} + +.polaroid:hover img { + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + -o-transform: scale(1.05); + transform: scale(1.05); +} + + +.container { + text-align: center; + padding: 10px 20px; + border-top:5px solid #164a7b; + margin-top: 0px; + + >p{ + color: black; + font-size: 16px; + font-weight: 500; + + } +} + + +.tool-bg{ + background-color: rgba(87, 198, 250, 0.07); +} +.purple-btn{ + width: inherit; + text-transform: uppercase; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background-color: #6a0054; + color: #ffffff !important; + border: 2px solid #6a0054; +} + +.disable-purple-btn{ + width: inherit; + text-transform: uppercase !important; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background: #4b4852; + color: #ffffff !important; + border: 2px solid #4b4852; +} + +.user-analytics-data{ + margin: 42px 37px 37px 37px; + border: 2px solid #aaaaaa; + .close-reveal-modal{ + font-size: 20px; + } +} +.left-space { + margin-left: 0.5em; +} + + + +// STicky bottom footer + +.top-right-menu{ + margin-right: 80px !important; +} + + +html,body{ + height: 100%; +} +#gbase_wrap{ + min-height: 100%; + height: auto; + /* Negative indent footer by its height */ + margin: 0 auto ; + /* Pad bottom by footer height */ + padding: 0 0 60px; +} +#base_wrap{ + min-height: auto; + height: auto; + /* Negative indent footer by its height */ + margin: 0 0 -10px 0; + /* Pad bottom by footer height */ + padding: 0 0 10px; +} + +body>footer { + //Site footer + padding:10px 5px; + position: relative; + background-color: rgba(0,0,0,0.8); + height:auto; + width:100%; + display:table; + + ul { + list-style-type: none; + text-decoration: none; + li { + font-size: 15px; + margin-bottom: 5px; + } + } + p { + margin: 10px; + font-size: 18px; + } + h2 { + font-size: 25px; + } + li { + color: #bbbbbb; + } + a { + color: #bbbbbb; + margin-top:0; + padding: 0; + display: inline; + &:hover { + text-decoration: none; + color: #ffffff; + margin-top:0; + padding: 0; + display: inline; + } + } + .myfooter { + + display:table-row; + height:1px; + + .footer-section { + color: #ffffff; + text-align: center; + } + .inline_mar-right { + display: inline-block; + margin: 0 25px 15px 0; + } + //Footer links + .footer_content { + margin: 20px; + + .footer-logo { + height: 65px; + width: 150px; + } + } + .links_collapse { + max-height: 78px; + overflow: hidden; + transition: all 0.5s ease-out; + + ul { + display: inline; + padding: 0; + margin: 0px !important; + } + } + .footer_link_cont { + display: inline-block; + vertical-align: top; + /*margin: 20px;*/ + text-align: left; + + .links_show { + //change as per requirement on addition on more links in future + max-height: 600px; + } + h4{ + color: #999; + } + .social_links{ + font-size: 24px; + margin-right:5px; + } + + .show_foot_links { + color: #777777; + cursor: pointer; + i{ + font-size: 24px; margin-right:5px; + } + &:hover { + text-decoration: underline; + } + } + } + + } + hr.footerlogo-divider{ + border-color: #555; + margin-top: 10px; + } +} + +body > footer ul#footerlogo li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; +} + + +body > footer ul#poweredlogos{ + margin-left: 0px; +} + +#poweredlogos li +{ + margin: 0px 5px; + display:inline; + +} +.no-gap ul +{ + margin-left: 0rem; +} + +.coll-arrows { + cursor:pointer; + display: block; + padding: 0.5rem; + + &:hover{ + background-color: #D3D3D3; + } +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_nroer_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_nroer_styles.scss index 1033217b10..f57f16aed4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_nroer_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_nroer_styles.scss @@ -1,8 +1,8 @@ /* * NROER Platform Stylesheet */ - - +$secondary-orange : #ffc14e; +$primary-blue : #164A7B; .workspace{ // group level menu bar @@ -11,9 +11,20 @@ } //This is the main content container between the header and footer - background: url("watermark.png") no-repeat 1% 65%; + background: url("watermark.png") no-repeat 0% 88%; + @media only screen and (max-width: 320px) { + background: url("watermark.png") no-repeat 50% 120%; + } +/* @media screen and (min-width: 321px) and (max-width: 850px) { + background: url("watermark.png") no-repeat 70% 70%; + }*/ + min-height: 100%; margin-bottom: -130px!important; + @media only screen and (max-width: 320px) { + margin-bottom: 20px!important; + } + margin-top:0px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; @@ -118,3 +129,205 @@ div.banner{ } } +.curriculum_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 20px auto; + padding: 0px 0px; + min-height: calc(100vh - 100px); + overflow-y: auto; + padding: 15px; +} +.curriculum_creator_header { + width: 100%; + height: 60px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 13px #000; + + .course_heading span{ + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; + // //font-size: 25px; + } + + + + .course_actions { + ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #999999; + cursor: pointer; + // //font-size: 18px; + letter-spacing: 0.8px; + + + &.active, &:hover { + border-bottom: 3px solid $secondary-orange; + } + } + + } +} + +.curriculum_list{ + width: 100%; + height: 60px; + background: #fff; + padding: 17px 81px; + box-shadow: 0px 1px 4px #004; + color: #2b78e4; + a{ + color: $primary-blue; + font-size: 20px; + font-weight: 600; + } +} + +.curriculum_list_header{ + max-width: 1176px !important; + margin: 0 auto !important; + box-sizing: border-box !important; + padding-left: 20px !important; + padding-right: 20px !important; + padding: 8px !important; + padding-top: 20px !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + justify-content: space-between !important; + border-bottom: 1px solid #D6D8DA !important; + -moz-box-sizing: border-box !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + box-shadow: 0px 3px 6px #000; + background-color: #ffffff; + .title-curriculum{ + font-family: inherit !important; + font-weight: bold !important; + line-height: 23px !important; + color: #21242C !important; + padding: 0px 0px 0px 10px !important; + font-weight: 500 !important; + font-size: 20px !important; + } + + .add-curriculum{ + position: relative !important; + display: -moz-box !important; + display: -ms-inline-flexbox !important; + display: -webkit-box !important; + display: -webkit-inline-flex !important; + display: inline-flex !important; + align-items: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + font-size: 19px !important; + font-weight: 500 !important; + } +} + +.curriculum_listing{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .curriculum_content{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; + } + .curriculum_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .curriculum_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: $primary-blue !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; + + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } + } + } + } +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/403.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/403.html index a57bcb89e6..ff388f425a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/403.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/403.html @@ -8,19 +8,18 @@

    Permission Denied!


    - {% if site.SITE_NAME == "NROER" %} + Please check the URL or navigate back to:
    Repository | Partners | Groups
    +
    {% else %} - You do not have permission to retrieve the URL or link you requested.
    - Please check the URL or head to the - homepage. + You do not have permission to access the link/URL you requested.
    + Go back or visit our homepage {% endif %} -

    {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/404.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/404.html index 29e24bb3d6..4b51bd1dfd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/404.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/404.html @@ -1,24 +1,23 @@ {% extends "error_base.html" %} -{% block error_title %} 400 - Page not found {% endblock %} +{% block error_title %} 404 - Page Not Found {% endblock %} {% block error_body_text %}
    -

    Sorry, You got the wrong address!

    - +

    Sorry. The Page you are looking for does not exist.


    - {% if site.SITE_NAME == "NROER" %} + Double check the URL or navigate back to:
    Repository | Partners | Groups
    +
    {% else %} - Double check the URL or head to the   homepage. + Go back or visit our homepage {% endif %} -

    {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/500.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/500.html index ea995e9899..0d96369e6c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/500.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/500.html @@ -1,27 +1,13 @@ - - - 500 - Internal Server Error - - - -
    - + + 500-Internal Server Error! + +
    -

    Sorry, Internal Server Error.

    - -
    -

    -
    - - The requested page is unavailable. -
    - Our developers have been informed about error. -

    -
    -

    -
    -
    - - +

    500 - Internal Server Error !


    +

    + The server encountered an internal error and was unable to complete your request. Please try again after sometime or contact support@gnowledge.org
    +

    + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/error_base.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/error_base.html index 7a83deef4d..40642f109f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/error_base.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/error_base.html @@ -3,7 +3,6 @@ {% load i18n %} {% load get_site_variables from ndf_tags %} {% get_site_variables as site %} - @@ -14,17 +13,17 @@ {% block error_title %}{% endblock %} - + - + - - - - - + + + + + + {% if site.SITE_NAME == 'clix' %} + + {% include "ndf/header_clix.html" %} + + {% else %} + + {% include "ndf/header.html" %} + {% endif %} + + + + + -


{% endcomment %} -

Select Image

-
    +

    Select Image

    + {% if GSTUDIO_ELASTIC_SEARCH %} +
    +
    + {% get_filters_data "File" "home" as filter_dict %} + {% include "ndf/filters.html" with filter_dict=filter_dict %} + {% csrf_token %} +
    + +
    +
    + +
    +
    + +
    +
    +
    +
      + {% for each in imageCollection %} +
    • + +
      {{each.name|truncatechars:10}}
      + +
    • + {% endfor %} +
    + + +{% else %} +
    +
    + {% get_filters_data "File" "home" as filter_dict %} + {% include "ndf/filters.html" with filter_dict=filter_dict %} + {% csrf_token %} + + +
    + +
    +
      {% for each in imageCollection %}
    • @@ -221,5 +300,6 @@

      Select Image

    • {% endfor %}
    - +{% endif %} +{% include "ndf/ImageAudioVideoFilterSearch.html" with filters="image"%} {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/Upload_File.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/Upload_File.html index 80b8c6022f..a363b226b5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/Upload_File.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/Upload_File.html @@ -1,6 +1,7 @@ {% load i18n %} {% load ndf_tags %} - + - +{% comment %} + +{% endcomment %} {% get_group_name groupid as group_name_tag %} {% if user.is_authenticated %} @@ -71,8 +118,10 @@
    +
    +
    {% trans 'Add' %} @@ -284,6 +333,8 @@
    + + {% else %}

    {% trans "You are not an authorised user. Please login to upload files." %}

    @@ -463,4 +514,5 @@ map.invalidateSize(); }); - \ No newline at end of file + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/action_panel.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/action_panel.html index 0db658e866..ea04a07b02 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/action_panel.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/action_panel.html @@ -10,7 +10,7 @@ {% check_is_user_group node.pk as is_user_group %} {% get_relation_value node.pk 'has_help' as grel_dict %} {% include 'ndf/widget_user_access_modal.html' %} -
    -
{% endif %} +
-
+
+
{% if activity_node.tags %} {% for tag in activity_node.tags %}
@@ -96,6 +108,7 @@

{% firstof activity_node.altnames activity_node.name %} + {% else %}
@@ -104,12 +117,14 @@

{% firstof activity_node.altnames activity_node.name %} {% trans "Delete" %} {% endif %} {% if user.is_authenticated %} + {% if site.SITE_NAME == 'NROER' %} + {% trans "Add Cordinator's page" %} + {% else %} + {% trans "Add Teacher's page" %} + {% endif %} {% trans "Add Activity page" %} - {% trans "Add Teacher's page" %} {% trans "Add Help page" %} {% endif %} - -

@@ -123,10 +138,9 @@

{% firstof activity_node.altnames activity_node.name %} - {% endif %} {% include 'ndf/pagination.html' with urlname="course_pages_paged" first_arg=group_id page_info=course_pages_info %} - +{% endblock %} + $('.close-reveal-modal').click(function(event) { + + $(".listing-row").html(""); + $(".section-edit-area").css('display', 'none') + $('.section-view-area').css('display', 'block') + + }); + + $('.edit_section').click(function(event) { + $('.section-edit-area').css('display', 'block') + $('.section-view-area').css('display', 'none') + + }); + $('.edit_subsection').click(function(event) { + $(".listing-row").html(""); + $('.subsection-edit-area').css('display', 'block') + $('.subsection-view-area').css('display', 'none') + + }); + + + + function search_func(){ + var filter_caps,topiclist_arr,option_val,i,input_var; + input_var = document.getElementById("myInput"); + filter_caps = input_var.value.toUpperCase(); + topiclist_arr = document.getElementById("topic_list"); + option_val = topiclist_arr.getElementsByTagName("option"); + + for (i = 0; i < option_val.length; i++) { + section_name = option_val[i].getAttribute('data-topic'); + if (section_name.toUpperCase().indexOf(filter_caps) > -1) { + option_val[i].style.display = ""; + } else { + option_val[i].style.display = "none"; + + } + } +} + + {% endblock body_content %} + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html index 5e7bf19b09..803511b2cf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html @@ -1,17 +1,19 @@ {% extends "ndf/gbase.html" %} {% load i18n %} {% load ndf_tags %} +{% block title %} {% trans "Topic Map" %} {% endblock %} {% block body_content %} - - + {% if request.user.is_authenticated %} + + {% endif %} {% for each in nodes %} {% include "ndf/curriculum_list.html" with node=each first_arg=group_id second_arg=each.pk url_name="curriculum_detail" %} {% endfor %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html index 24338a3c97..af67c64c38 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html @@ -1,4 +1,112 @@ -{% load ndf_tags %} -{% load simple_filters %} +{% extends "ndf/gbase.html" %} {% load i18n %} - +{% load ndf_tags %} +{% block title %} {% endblock %} +{% block body_content %} + + + + + + + + +{% endblock body_content %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html index f308cb8571..bfd371fa77 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html @@ -4,7 +4,7 @@ {% load ndf_tags %} {% load simple_filters %} -{% block title %} Repository {% endblock %} +{% block title %} {{ title }}{% endblock %} {% block head %} @@ -59,7 +59,11 @@ {% trans "eBooks" %} {% if all_ebooks %} - {{all_ebooks.count}} + {% if GSTUDIO_ELASTIC_SEARCH %} + {{all_ebooks_count}} + {% else %} + {{all_ebooks.count}} + {% endif %} {% endif %} @@ -95,7 +99,6 @@ {% group_type_info groupid request.user as grouptype %} - {% for node in all_ebooks %} @@ -115,16 +118,18 @@ {% endblock %} {% endcomment %} -{# ===================================== #} +{# =================================================================================================================#} {% block body_content %} +
- {% if ebook_gst.altnames and ebook_gst.altnames != "None" %} - {{ebook_gst.altnames}} - {% else %} - {{ebook_gst.name}} - {% endif%} + + {% if ebook_gst.altnames and ebook_gst.0.altnames != "None" %} + {{ebook_gst.altnames}} + {% else %} + {{ebook_gst.name}} + {% endif%}
{{ebook_gst.content_org|default_if_none:""|safe}}
@@ -132,7 +137,7 @@ {% get_filters_data "E-Book" as filter_dict %} {% include "ndf/filters.html" with filter_dict=filter_dict %} -
{% include "ndf/file_list_tab.html" with resource_type=all_ebooks detail_urlname="page_details" filetype="ebook" res_type_name="" page_info=page_info %}
+
{% include "ndf/file_list_tab.html" with resource_type=all_ebooks detail_urlname="page_details" filetype="ebook" res_type_name="" page_info=page_info title="eBooks"%}
{% endblock body_content %} @@ -140,7 +145,7 @@ {% block script %} // \ No newline at end of file + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html index 4f3c487392..b1faf3dec0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html @@ -1,49 +1,193 @@ {% load i18n %} -{% load get_latest_git_hash from simple_filters %} +{% load get_latest_git_hash from simple_filters %} {% load ndf_tags %} + + + + {% get_gstudio_footer_links as footer_links %} + +
+ +
+
+ +
+
+ +
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html index 566f786032..347f1f36bf 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html @@ -25,7 +25,8 @@ - + + @@ -60,15 +61,25 @@ - - {% if site.BUDDY_LOGIN and user.is_authenticated and request.author.agency_type == 'Student'%} +
+ {% if site.BUDDY_LOGIN and user.is_authenticated and site.SITE_NAME == 'clix' and request.author.agency_type == 'Student'%} {% include "ndf/buddy.html" %} {% endif %} - {% include "ndf/header_clix.html" %} + {% if site.SITE_NAME == 'NROER' %} + {% include "ndf/header.html" %} + {% else %} + {% include "ndf/header_clix.html" %} + {% endif %} + {% block extended_header %}{% endblock %} - {% block body_content %} {% endblock %} + {% block body_content %} + + + {% endblock %} + + @@ -179,7 +190,7 @@ // {% block document_ready %} {% endblock %} // } - // finally{ + // finally{s // // function defined in app.js to check the font and load it asynchronously. // checkOpenSansFont(); // } @@ -195,43 +206,41 @@ // }); {% block script %} {% endblock %} - - -
-
- - {% if not no_footer %} - {% include 'ndf/footer_clix.html' %} - {% endif %} - diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html index 99a9becfa4..3b331d6f2d 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html @@ -58,23 +58,14 @@ {# {% datetime_now as datetime_now %} #}

My Courses

- {% for k, v in user_concern_groups.items %} - +
    + + {% for each_node in course_coll %} +
  • + {% include 'ndf/card_group.html' with node=each_node url_name='groupchange' first_arg=each_node.pk groupid=each_node.pk is_gstaff=is_gstaff %} +
  • {% endfor %} +
{% comment %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html index 9ce6879275..ce4e7807c2 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html @@ -9,68 +9,68 @@ {% block title %}{% trans 'Events' %} {% endblock %} {% block style %} - .course_outline_table, tr { - border: 2px solid #0b8a91; - border-collapse: collapse; - } - - .gray-text{ - color: gray; - } - - #content > p { - color: #6F6F6F !important; - /*font-size: inherit;*/ - } - - tr:hover{ - cursor:pointer; - } - - .tab{ - padding-left: 2em; - background-color:yellow !important; - } - - .tab2{ - padding-left: 4em; - } - - #eventModal > label { - color: white; - font-weight: bold; - font-size: 1rem; - } - - .all_blogs{ - overflow-y: auto; - height:500px; - } - - .jqtree-tree .jqtree-title { - margin: 5px; - font-size: 15px; - color: black !important; - /*Change the color here to change font color of tree*/ - } - - li.remove-dot{ - list-style: none; - } - - .div-height { - margin-bottom: 0px !important; - height: 258px !important; - } - - .course-banner{ - text-shadow: 2px 2px black !important; - background: none !important; - } - - #status{ - width: 100% !important; - } +.course_outline_table, tr { +border: 2px solid #0b8a91; +border-collapse: collapse; +} + +.gray-text{ +color: gray; +} + +#content > p { +color: #6F6F6F !important; +/*font-size: inherit;*/ +} + +tr:hover{ +cursor:pointer; +} + +.tab{ +padding-left: 2em; +background-color:yellow !important; +} + +.tab2{ +padding-left: 4em; +} + +#eventModal > label { +color: white; +font-weight: bold; +font-size: 1rem; +} + +.all_blogs{ +overflow-y: auto; +height:500px; +} + +.jqtree-tree .jqtree-title { +margin: 5px; +font-size: 15px; +color: black !important; +/*Change the color here to change font color of tree*/ +} + +li.remove-dot{ +list-style: none; +} + +.div-height { +margin-bottom: 0px !important; +height: 258px !important; +} + +.course-banner{ +text-shadow: 2px 2px black !important; +background: none !important; +} + +#status{ +width: 100% !important; +} {% endblock %} {% block head %} @@ -89,19 +89,19 @@ {% endblock %} {% block body_content %} - {% check_is_gstaff groupid request.user as is_gstaff %} - {% user_access_policy groupid request.user as user_access %} - {# {% get_course_session_status group_obj True as next_session_in_course %} #} +{% check_is_gstaff groupid request.user as is_gstaff %} +{% user_access_policy groupid request.user as user_access %} +{# {% get_course_session_status group_obj True as next_session_in_course %} #} -
- - × -
-
+
+ + × +
+
-
+
-
+
@@ -109,29 +109,29 @@
-
-
- {% include 'ndf/widget_photo_upload.html' with url_name='course_about' widget_for="group_banner" is_banner=True is_profile=False no_update_btn=True node=group_obj %} -
-
- {% if is_gstaff %} +
+
+ {% include 'ndf/widget_photo_upload.html' with url_name='course_about' widget_for="group_banner" is_banner=True is_profile=False no_update_btn=True node=group_obj %} +
+
+ {% if is_gstaff %} - {% else %} -
+ {% else %} +
{% if user_access == "allow" %} - ENROLLED + ENROLLED {% else %} - {% if user.is_authenticated %} - {% if allow_to_join == "Open" %} - ENROLL - {% else %} - Enrollment {{allow_to_join}} - {% endif %} - {% else %} - ENROLL - {% endif %} + {% if user.is_authenticated %} + {% if allow_to_join == "Open" %} + ENROLL + {% else %} + Enrollment {{allow_to_join}} + {% endif %} + {% else %} + ENROLL + {% endif %} {% endif %}
-
- {% endif %} - +
+ {% endif %} -
-
- {% firstof group_obj.altnames group_obj.name %} -
-
- {% comment %} - {% if request.user.is_authenticated %} -
-
- -
-
+
+
+ {% firstof group_obj.altnames group_obj.name %} +
-
-
- {% endif %} - {% endcomment %} + {% comment %} + + {% if request.user.is_authenticated %} +
+
+ +
+
+
+
+
+ {% endif %} + {% endcomment %} - {% comment %} - {% if request.user.is_authenticated %} + {% comment %} + {% if request.user.is_authenticated %} - {% endif %} - {% endcomment %} + {% endif %} + {% endcomment %} -
-
+ --> +
+
+
- -
-
-
- + +
+
+
+ +
-
- -
-
- {% if title == 'dashboard' %} + +
+
+ {% if title == 'dashboard' %} {% include "ndf/gcourseDashboard.html" %} - {% elif title == 'course content' %} + {% elif title == 'course content' %} {% include "ndf/gcollection_ajax_view.html" %} - {% elif title == 'notebook' %} + {% elif title == 'notebook' %} {% include "ndf/gnotebook.html" %} - {% elif title == 'gallery' %} + {% elif title == 'gallery' %} {% include "ndf/ggallerypage.html" with file_detail_url='course_gallery_detail' redirect_tab_url='course_gallery' %} - {% elif title == 'raw material' %} + {% elif title == 'raw material' %} {% include "ndf/ggallerypage.html" with file_detail_url='course_raw_material_detail' redirect_tab_url='course_raw_material'%} - {% elif title == 'course_quiz_data' %} + {% elif title == 'course_quiz_data' %} {% include "ndf/course_quiz_data.html" %} - {% elif title == 'about' %} + {% elif title == 'about' %} {% include "ndf/course_about.html" %} {% comment %}
@@ -341,43 +341,44 @@
{% endcomment %} - {% endif %} + {% endif %} +
+
- -
-
- {% if title == "gallery" %} - {% include 'ndf/pagination.html' with urlname="course_gallery_paged" first_arg=group_name_tag page_info=gallery_page_info %} - {% elif title == "raw material" %} - {% include 'ndf/pagination.html' with urlname="course_raw_material_paged" first_arg=group_name_tag page_info=raw_material_page_info %} - {% endif %}
+ {% if title == "gallery" %} + {% include 'ndf/pagination.html' with urlname="course_gallery_paged" first_arg=group_name_tag page_info=gallery_page_info %} + {% elif title == "raw material" %} + {% include 'ndf/pagination.html' with urlname="course_raw_material_paged" first_arg=group_name_tag page_info=raw_material_page_info %} + {% endif %}
+
+ @@ -385,71 +386,71 @@ {% block script %} - {{block.super}} - - $(document).on('click','.enroll-btn',function(){ - //trigger the ajax call to enroll - $.ajax({ - url: "{% url 'enroll_to_course' group_id %}", - - data: { - 'csrfmiddlewaretoken': "{{csrf_token}}" - }, - - type: "POST", - - dataType: "json", - - success: function(data){ - success_state = data["success"] - if(success_state){ - $(".enroll-btn").attr('value', 'ENROLLED') - $(".enroll-btn").attr("disabled","disabled") - location.reload(); - } - }, - });//end of ajax +{{block.super}} + +$(document).on('click','.enroll-btn',function(){ +//trigger the ajax call to enroll +$.ajax({ +url: "{% url 'enroll_to_course' group_id %}", + +data: { +'csrfmiddlewaretoken': "{{csrf_token}}" +}, + +type: "POST", + +dataType: "json", + +success: function(data){ +success_state = data["success"] +if(success_state){ +$(".enroll-btn").attr('value', 'ENROLLED') +$(".enroll-btn").attr("disabled","disabled") +location.reload(); +} +}, +});//end of ajax +}) + +// -{% endblock %} + // + {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html new file mode 100644 index 0000000000..765fe93687 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -0,0 +1,287 @@ +{% extends "ndf/gbase.html" %} +{% load i18n %} +{% load ndf_tags %} +{% block title %} {% trans "Events" %} {% endblock %} + + +{% block body_content %} + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ +
+
+ + + + + + +{% endblock body_content %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent_base.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent_base.html index 5f65f58c60..9074a1b6f9 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent_base.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent_base.html @@ -33,6 +33,12 @@
{% endif %} + {% include "ndf/toolbar.html" %} + +
+
@@ -38,7 +44,7 @@
  • -

    +

  • @@ -64,7 +70,7 @@

    {% trans "Repository" %} - + {% comment %} {% for each_menu in nroer_menu.top_menus %} {% for menuk, menuv in each_menu.items %} @@ -103,9 +109,46 @@

+ {% endfor %} {% endfor %} + {% endcomment %} +
  • + + {% trans "Workspaces" %} + +
  • + + + {% if request.user.is_authenticated %} +
  • + {% trans "My Desk" %} +
  • + {% endif %} + {% comment %} +
  • + + {%endcomment%} +
  • {% comment %} @@ -318,6 +361,30 @@
    {{each_buddy}}
    {# --{{request.session.buddies_authid_name_dict}}-- #} {% endif %} + {% if "CourseEventGroup" not in group_object.member_of_names_list and site.SITE_NAME != "clix" %} + + {% endif %} + + +
  •  {% trans "Logout" %} @@ -339,11 +406,35 @@
    {{each_buddy}}
    Otherwise it will get into unending loop i.e. as soon as logs-in it gets logged-out as redirection-url was of logout; similar case with password-reset! --> +
  • + + {% if not user.is_authenticated %} + + {% endif %} +
  • {# {% trans "Login to your clix account" %} #} - {# {% trans "Login" %} #} + {# {% trans "Login" %} #}   {% trans "Login" %} @@ -363,7 +454,7 @@
    {{each_buddy}}
    --> -{% if "CourseEventGroup" not in group_object.member_of_names_list and site.SITE_NAME != "clix" %} + + -->
    @@ -397,12 +512,13 @@
    {{each_buddy}}
    + - + {% if site.SECOND_LEVEL_HEADER %} @@ -414,34 +530,41 @@
    {{each_buddy}}
  • + {% endif %} {% if site.SITE_NAME != "NROER" %} @@ -479,7 +604,7 @@

    {% endif %} - + {% endif %} {% endif %} @@ -501,23 +626,21 @@

    --> -
  • + - -
  • @@ -561,22 +684,30 @@

    + + {% endif %} {% endif %} {% endif %} + + {% endcomment %} +

    + {% endif %} {% endif %} {% endif %} {% endif %} + {#
    #}
    +
    {% if site.SITE_NAME != "NROER" %} @@ -615,3 +746,15 @@

    {% endif %} + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html index 5ffe50e2d1..3d9732a1c1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html @@ -29,6 +29,56 @@
    + {% comment %} + + +
      +
    • + +
    • + + {% endcomment %}
        {% if request.user.is_authenticated %} @@ -47,6 +97,9 @@
      {% if user.is_authenticated %} {% endif %} +{% comment %} + +
        + {% if request.user.id %} +
      • My Desk
      • + {% endif %} +
      • Explore +
      • +
      • + Interactives +
      • + + {% if site.ELASTIC_SEARCH %} +
      • +
        +
        +
        + +
        + +
        + + + +
        +
        + +
        +
      • + {% endif %} +
      +{% endcomment %}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/horizontal_card.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/horizontal_card.html index efefb50c45..a983f0f445 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/horizontal_card.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/horizontal_card.html @@ -9,45 +9,39 @@ {% elif first_arg %} {% endif %} -
    {% get_relation_value node.pk 'has_banner_pic' as grel_dict %} - {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.thumbnail.relurl %} - - {% else %} - - {% endif %} -

    - {% firstof node.altnames|truncatechars:50 node.name|truncatechars:50 %} -

    - {% get_dict_from_list_of_dicts node.attribute_set as node_attrs %} + {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.thumbnail.relurl %} + + {% else %} + + {% endif %} + {% get_dict_from_list_of_dicts node.attribute_set as node_attrs %}
    -

    - {{node.content|safe|striptags|truncatechars:100}} -

    +

    + {% firstof node.altnames|truncatechars:50 node.name|truncatechars:50 %} +

    - - {% trans "Subject" %}: {{node_attrs.educationalsubject}} - -

    - - {% trans "No. of Units" %}: {{node.collection_set|length}} - -

    +

    + + {% trans "Subject" %}: {{node_attrs.educationalsubject}} + +

    +

    + + {% trans "No. of Units" %}: {{node.collection_set|length}} + +

    +

    {% trans "Grade" %} : {{node_attrs.educationallevel|join:', '}} -

    - -

    +

    -
    {% if not is_gstaff %} {% if request.user.is_authenticated %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html index f8ca580c1a..6f1bd4f11a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html @@ -21,8 +21,6 @@ {% endif %} - - + + + + + + + + + + + + +
    +
    +
    +

    {% trans "Analytics" %}

    +
    +
    +
    + {% trans "Workspaces" %} +

    {{groups_count}}

    +
    +
    +
    + + +
    +
    +
    +

    {% trans "Discussion" %}

    +

    {{ discussion_count }}

    +
    +
    +
    +
    +
    +
    + {% trans "eResourses" %} +

    {{ files_count }}

    +
    +
    +
    +
    +
    +
    +

    {% trans "Registered Users" %}

    +

    {{authors_count}}

    +
    +
    +
    +
    +
    + + + + + {% endcache %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html index 66585c02b0..fde6ac3495 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html @@ -8,7 +8,6 @@ {% block title %} {% firstof group_obj.altnames group_obj.name %} {% endblock%} - {% block head %} {% endblock head %} @@ -23,11 +22,12 @@ {% endcomment %} {% include 'ndf/widget_user_access_modal.html' %} {% get_group_object group_id as group_object %} -
    -
    - - {% include 'ndf/widget_photo_upload.html' with url_name='course_about' widget_for="group_banner" is_banner=True no_update_btn=True node=group_obj %} +
    +
    +
    + + {% include 'ndf/widget_photo_upload.html' with url_name='course_about' widget_for="group_banner" is_banner=True no_update_btn=True node=group_obj %}
    {% firstof group_object.altnames group_object.name %}
    @@ -38,71 +38,215 @@ {% with group_object.member_of_names_list as group_object_member_of_names_list %}
    - -
    -
    +
    {% if is_gstaff %} -
    -
    + + {% else %}
    {% if request.user.is_authenticated %} @@ -154,13 +325,12 @@

    {% trans "Delete Unit:" %} {% firstof group_object.altnames group_object.nam {% endwith %} - -
    +
    {% if title == "about" %} @@ -173,6 +343,13 @@

    {% trans "Delete Unit:" %} {% firstof group_object.altnames group_object.nam {% include "ndf/gnotebook.html" %} {% endif %}

    + +
    + {% if title == 'progress_report' %} + {% include "ndf/user_course_analytics.html" %} + {% endif %} +
    +
    {% if title == 'course content' %} {% include "ndf/course_content.html" %} @@ -198,11 +375,24 @@

    {% trans "Delete Unit:" %} {% firstof group_object.altnames group_object.nam {% if title == "asset_detail" or title == "asset_content_detail" or title == "raw_material_detail" or title == "asset_gallery_detail" %} {% include "ndf/add_asset.html" with title=title %} {% endif %} + {% if title == "create_asset_pages" %} + {% include "ndf/course_page_create_edit.html" %} + {% endif %} {% if title == "asset_list" %} {% include "ndf/assets.html" with title="asset_list" %} {% endif %}

    +
    + {% if title == "Task" %} + {% include "ndf/gtask.html" %} + {% endif %} +
    +
    + {% if title == "task_detail" %} + {% include "ndf/gtask_details.html" %} + {% endif %} +
    @@ -281,6 +471,7 @@

    {% trans "Delete Unit:" %} {% firstof group_object.altnames group_object.nam + + {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html index 74eea1ec9b..bc90654efd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html @@ -11,8 +11,9 @@ {% block body_content %} {% load ndf_tags %} {% get_gstudio_workspace_instance as is_workspace_instance %} - +{% check_is_gstaff group_id request.user as is_gstaff %}
    + -{% endcomment %} -
    + + {% endcomment %} +
    +{% include 'ndf/widget_photo_upload.html' with url_name='my_desk' widget_for="group_banner" is_profile=True no_update_btn=True node=node groupid=group_id if_module=True is_mydesk=True %}
    - {% if title == "my desk" %} -
    -
      - {% for each_obj in units_cur %} -
    • - {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.pk no_enroll=True %} -
    • - {% empty %} -
      -

      You are not enrolled in any course!

      - Explore -
      - {% endfor %} -
    -
    + {% if site.SITE_NAME == "NROER" %} + {% if title == "my desk" %} +
    +

    {% trans "My Workspace" %}

    +
      +
    • + {% if site.GSTUDIO_ELASTIC_SEARCH and site.TESTING_VARIABLE_FOR_ES %} + {% include "ndf/card_group.html" with node=node url_name="course_about" first_arg=node.id no_enroll=True is_gstaff=is_gstaff %} + {% else %} + {% include "ndf/card_group.html" with node=node url_name="course_about" first_arg=node.pk no_enroll=True is_gstaff=is_gstaff %} + {% endif %} +
    • +
    +
    +
    +
    +

    {% trans "Joined Workspaces & Enrolled Courses" %}

    +
    +
    +
    +
    +
      + {% for each_obj in units_cur %} +
    • + {% if site.GSTUDIO_ELASTIC_SEARCH and site.TESTING_VARIABLE_FOR_ES %} + {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.id no_enroll=True is_gstaff=is_gstaff %} + {% else %} + {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.pk no_enroll=True is_gstaff=is_gstaff %} + {% endif %} +
    • + {% endfor %} +
    + {% include 'ndf/pagination.html' with urlname="my_desk_paged" first_arg=request.user.id second_arg="" %} +
    +
    + +
    + + {% trans "Explore" %} +
    + + + + {% endif %} + {% else %} + {% if title == "my desk" %} +
    +
      + {% for each_obj in units_cur %} +
    • + {% if site.GSTUDIO_ELASTIC_SEARCH and site.TESTING_VARIABLE_FOR_ES %} + {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.id no_enroll=True is_gstaff=is_gstaff %} + {% else %} + {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.pk no_enroll=True is_gstaff=is_gstaff %} + {% endif %} +
    • + + {% endfor %} +
    +
    +
    +

    {% trans "You are not enrolled in any course!" %}

    + {% trans "Explore" %} +
    + + + + {% endif %} {% endif %} -
    +

    {% if title == "my performance" %} @@ -79,19 +143,28 @@
      {% for each_obj in units_cur %}
    • - {% include "ndf/card_group.html" with group_counts=True node=each_obj no_url=True first_arg=each_obj.pk %} + {% if site.GSTUDIO_ELASTIC_SEARCH and site.TESTING_VARIABLE_FOR_ES %} + {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.id no_enroll=True is_gstaff=is_gstaff %} + {% else %} + {% include "ndf/card_group.html" with group_counts=True node=each_obj no_url=True first_arg=each_obj.pk is_gstaff=is_gstaff %} + {% endif %}
    • {% empty %}
      -

      You are not enrolled in any course!

      - Explore +

      {% trans "You are not enrolled in any course!" %}

      + {% trans "Explore" %}
      {% endfor %}

    - + +
    + + +
    {% endif %} + {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html index 4995dc0d50..5e1b5e9099 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html @@ -15,7 +15,6 @@ {% endfor %}
    -

    Units

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html index 71ebfab03b..48876bf33e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html @@ -13,24 +13,46 @@ {% elif first_arg %} {% endif %} -

    {% firstof resource.altnames resource.name %}

    + + {% if lang_code == "hi" %} + {% if "State Partners" == resource.name %} +

    {% trans "State Partners" %}

    + {% elif "Teachers" == resource.name %} +

    {% trans "Teachers" %}

    + {% elif "Institutional Partners" == resource.name %} +

    {% trans "Institutional Partners" %}

    + {% elif "Individual Partners" == resource.name %} +

    {% trans "Individual Partners" %}

    + {% elif "Interest Groups" == resource.name %} +

    {% trans "Interest Groups" %}

    + {% elif "Schools" == resource.name %} +

    {% trans "Schools" %}

    + {% else %} +

    + {% endif %} + {% else %} +

    {% firstof resource.altnames resource.name %}

    + {% endif %}
    {% get_relation_value resource.pk 'has_profile_pic' as grel_dict %} + {% get_relation_value resource.pk 'has_banner_pic' as grel_banner_dict %} {% get_dict_from_list_of_dicts resource.attribute_set as attr_set_dict %} {% if grel_dict.grel_node.if_file.original.relurl %} + {% elif grel_banner_dict.grel_node.if_file.original.relurl %} + {% else %} Profile picture for this group. {% endif %}
    - {{resource.content_org|default_if_none:"Add some description."|truncatechars:45}} -
    -
    - + {{resource.content_org|default_if_none:"Add some description."|safe|striptags|truncatechars:85}} + +
    + - \ No newline at end of file + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html index afcb47ebcd..66475cc501 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html @@ -6,17 +6,21 @@ {% block body_content %} {% check_is_gstaff group_id request.user as is_gstaff %} - -{% include 'ndf/explore_secondary_header.html' %} + +{% if site.SITE_NAME != "NROER" %} + {% include 'ndf/explore_secondary_header.html' %} +{% endif %}
    +
    {% include 'ndf/widget_photo_upload.html' with url_name='module_detail' widget_for="group_banner" is_banner=True no_update_btn=True node=node groupid=group_id if_module=True %}
    +
    - {% trans "Module Name: " %} {{node.name}}
    - {% trans "Module Description: " %} {{node.content|default:'No description added yet.'|safe}} + {% trans "Name: " %} {{node.name}}
    + {% trans "Description: " %} {{node.content|default:'No description added yet.'|safe}}
    @@ -26,57 +30,181 @@ + {% endif %}
    - - +{% if units_under_module_count == 0 and has_search == True %} +
    +

    Sorry, We couldn't find any results matching "{{ search_text|slice:"2:"|slice:"-2" }}"

    +
    +{% endif %} {# {% include 'ndf/card_group.html' with node=node groupid=node.pk %} #} -
    - -
      - {% for each_node in units_under_module %} -
    • - {% include 'ndf/card_group.html' with node=each_node url_name='groupchange' first_arg=each_node.pk groupid=each_node.pk is_gstaff=is_gstaff %} -
    • + {% for each_node in units_under_module %} +
    • + {% if each_node.name in PARTNER_LIST %} + {% include 'ndf/card_group.html' with node=each_node url_name='e-library' first_arg=each_node.pk groupid=each_node.pk is_gstaff=is_gstaff %} + {% comment %} + {% include 'ndf/card_group.html' with node=each_node has_prof_pic=True url_name='e-library' first_arg='home' second_arg='' search_url_text='filter?selfilters=[{"or":[{"selFieldValue":"source","selFieldValueAltnames":"source","selFieldGstudioType":"attribute","selFieldText":"'|add:each_node.name|add:'","selFieldPrimaryType":"basestring"}]}]' %} + {% endcomment %} + {% else %} + {% include 'ndf/card_group.html' with node=each_node url_name='groupchange' first_arg=each_node.pk groupid=each_node.pk is_gstaff=is_gstaff %} + {% endif %} +
    • {% endfor %}
    + {% endblock %} - diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html index cd7700b380..7838df0379 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html @@ -1,7 +1,7 @@ {% load ndf_tags %} {% load i18n %} {% load cache %} - +{% load es_tags %} {% get_download_filename node as download_filename %} {% get_schema node as schema %} {% get_group_name groupid as group_name_tag %} @@ -360,7 +360,7 @@

    {{node.name}}:

    {% elif 'html' in node.if_file.mime_type %} - {% elif 'pdf' in node.if_file.mime_type %} @@ -414,8 +414,8 @@

    + + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_details_base.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_details_base.html index 25a9c7b779..33f5468c35 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_details_base.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_details_base.html @@ -80,7 +80,7 @@
    Change Thumbnail
    - {% include "ndf/widget_photo_upload.html" with node_id=node.pk url_name="file" widget_for="file_detail_view" is_banner=False is_profile=False is_thumbnail=True %} + {% include "ndf/widget_photo_upload.html" with node_id=node.pk url_name="file_detail" widget_for="file_detail_view" is_banner=False is_profile=False is_thumbnail=True %}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/notification_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/notification_detail.html new file mode 100644 index 0000000000..e43eae7e65 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/notification_detail.html @@ -0,0 +1,102 @@ + +{% extends "ndf/gbase.html" %} +{% load i18n %} +{% load ndf_tags %} +{% block body_content %} + + + + + + +{% for each in activity_list %} + {% if "File" in each.member_of_names_list or "Task" in each.member_of_names_list or "Theme" in each.member_of_names_list or "Asset" in each.member_of_names_list or "Topic" in each.member_of_names_list or "theme_item" in each.member_of_names_list %} +
    +
    +
    +
    + {% if "File" in each.member_of_names_list and each.relation_set.0.assetcontent_of.0 %} + + + + + {% elif "File" in each.member_of_names_list %} + + + + {% elif "Asset" in each.member_of_names_list %} + + + + {% elif "Theme" in each.member_of_names_list %} + + + + {% else %} + + + {% endif %} +
    +
    + {{each.created_by|get_username}} {{each.relation_set.0.assetcontent_of.0}} {{each.activity}} +
    +
    +
    + created {{each.created_at|timesince}} ago. +
    +
    +
    + {% endif %} +{% endfor %} + +{% endblock body_content %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html index d8fe17cd96..84430c94d9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html @@ -13,14 +13,18 @@ {% endblock %} {% block body_content %} -
    {{groups_category}}
    + + + + +
    {{app_gst.content_org|default_if_none:''|safe}}
    {% autopaginate group_nodes 23 %} {% for node in group_nodes %}
    - {% include 'ndf/main_simple_card.html' with resource=node has_prof_pic=True url_name="groupchange" first_arg=node.name %} + {% include 'ndf/main_simple_card.html' with resource=node has_prof_pic=True url_name="module_detail" first_arg=group_id second_arg=node.pk %}
    {% endfor %}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner_showcase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner_showcase.html index af2922eabc..0a90165b47 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner_showcase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner_showcase.html @@ -14,10 +14,10 @@ {% endblock %} {% block body_content %}
    All Partners
    - diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/resource_view.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/resource_view.html index 512e2b1bf6..fba54ed467 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/resource_view.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/resource_view.html @@ -53,7 +53,6 @@ {% else %} - - {{node.name}} - + {{node.content|safe}} + {% endif %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html new file mode 100644 index 0000000000..e7b84706e0 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html @@ -0,0 +1,73 @@ +{% extends "ndf/gbase.html" %} +{% load i18n %} +{% load ndf_tags %} + + +{% get_group_name groupid as group_name_tag %} + + +{% block title %} {{ node.member_of_names_list|join:", " }} - {{ node.name }} {% endblock %} +{% block head %} + + +{% endblock %} + + +{% block style %} + +{% endblock style %} + +{% block meta_content %} + + +{% endblock %} + + +{% block related_content %} +{% endblock %} + + + +{% block body_content %} +{# {{node.name}} #} + +{% if 'image' in node.if_file.mime_type or 'video' in node.if_file.mime_type or 'audio' in node.if_file.mime_type or 'pdf' in node.if_file.mime_type %} +
  • +
    + {% if 'image' in node.if_file.mime_type %} + + {% elif 'audio' in node.if_file.mime_type %} +





    + {% elif 'pdf' in node.mime_type %} + +
    + {% elif 'Pandora_video' in node.member_of_names_list %} + {% get_source_id k as source_id %} + + + {% elif 'video' in node.if_file.mime_type %} + + + {% endif %} +
    {{node.name}}
    +
    +
  • +{% endif %} + +{% endblock %} + +{% block script%} + + +{% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/search_page.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/search_page.html index fb281c0619..adebdbdd17 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/search_page.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/search_page.html @@ -3,6 +3,13 @@ {% load i18n %} {% block title %}{% trans 'Search' %}{% endblock %} {% block concern_information %} + + + + +

    Search Help

      @@ -23,19 +30,35 @@

      Search Help

    - -
    -
      - {% for each in search_curr %} -
    • - {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each %} -
    • - {% endfor %} -
    - {% if not search_curr %} - No results found - {% endif %} +
    + +
    +
      + + {% for each in search_curr %} +
    • + {% if GSTUDIO_ELASTIC_SEARCH == True %} + + {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each.id %} + + {% else %} + {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each%} + {%endif%} +
    • + {% endfor %} +
    + {% if not search_curr %} + No results found + {% endif %} +
    +
    +
    + +{% if has_next %} + +{% endif %}
    {% comment %} @@ -202,5 +225,17 @@
    Search by:
    + + {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html new file mode 100644 index 0000000000..1747876634 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -0,0 +1,106 @@ +{% comment %} + +{% endcomment %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card.html index 5946220e12..2c9652708e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card.html @@ -46,10 +46,16 @@ {% endif %} {% endif %}
    + + {% if site.GSTUDIO_ELASTIC_SEARCH != True %} + {% get_dict_from_list_of_dicts resource.attribute_set as attr_set_dict %} + {% get_relation_value resource.pk 'has_thumbnail' as grel_dict %} + {% else %} + {% convert_list_to_dict resource.attribute_set as attr_set_dict %} + {% get_relation_value resource.id 'has_thumbnail' as grel_dict %} + {% endif %} + {% get_member_of_list resource.member_of as member_of %} - {% get_dict_from_list_of_dicts resource.attribute_set as attr_set_dict %} - - {% get_relation_value resource.pk 'has_thumbnail' as grel_dict %} {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.fs_file_ids.1 %} {% elif grel_dict.grel_node.if_file.thumbnail.relurl and 'video' or "File" in resource.if_file.mime_type %} @@ -64,34 +70,40 @@ {% elif resource.fs_file_ids.1 %} - {% elif "File" in resource.member_of_names_list or "Page" in resource.member_of_names_list%} + {% elif "File" in resource.member_of_names_list or "Page" in resource.member_of_names_list or "File" in member_of or 'Page' in member_of or 'Jsmol' in member_of or "interactive_page" in member_of %} {% if resource.collection_set %} - {% elif attr_set_dict.educationaluse and attr_set_dict.educationaluse != "Documents" %} + {% elif attr_set_dict.educationaluse %} {% elif resource.fs_file_ids.0 and 'image' in resource.mime_type %} - {% elif ".ggb" in resource.name %} Geogebra {% elif resource.if_file.mime_type %} + {% else %} {% endif %} - {% elif "Group" in resource.member_of_names_list or has_logo == True or has_prof_pic == True %} - {% if "Course" in resource.member_of_names_list or has_logo == True %} - + {% elif "Group" in resource.member_of_names_list or "Group" in member_of or has_logo == True or has_prof_pic == True %} + {% if "Course" in resource.member_of_names_list or 'Course' in member_of or has_logo == True %} + {% if site.GSTUDIO_ELASTIC_SEARCH != True %} {% get_relation_value resource.pk 'has_logo' as grel_dict %} + {% else %} + {% get_relation_value resource.id 'has_logo' as grel_dict %} + {% endif %} {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.mid.relurl %} {% else %} Profile picture for this group. {% endif %} - {% else %} + {% if site.GSTUDIO_ELASTIC_SEARCH != True %} {% get_relation_value resource.pk 'has_profile_pic' as grel_dict %} + {% else %} + {% get_relation_value resource.id 'has_profile_pic' as grel_dict %} + {% endif %} {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.mid.relurl %} {% else %} @@ -133,11 +145,20 @@ {{resource.created_by|get_username|truncatechars:"10"}} {% endif %} - {{resource.created_at|date:"d-m-Y"}} - + {% if site.GSTUDIO_ELASTIC_SEARCH != True %} + {{resource.created_at|date:"d-m-Y"}} + {% elif resource.created_at|cal_length == 13 %} + {{resource.created_at|convert_date_string_to_date|slice:"10"}} + {% else %} + {{resource.created_at|slice:"10"}} + {% endif %} {% if user.is_authenticated and not group_object.edit_policy == "NON_EDITABLE" or gstaff_access %} {% if not no_checkbox %} - + {% if site.GSTUDIO_ELASTIC_SEARCH != True %} + + {% else %} + + {% endif %} {% endif %} {% endif %}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sitemap.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sitemap.html new file mode 100644 index 0000000000..fe71e0afbe --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sitemap.html @@ -0,0 +1,84 @@ +{% extends "ndf/gbase.html" %} +{% block body_content %} +
    +
    +
    +
    + + +{% endblock %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index 66aa98c1c6..96c14ebdd4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -1,264 +1,91 @@ - -{% extends "ndf/gbase.html" %} +{% extends "ndf/base.html" %} {% load i18n %} {% load ndf_tags %} -{% block body_content %} - -
    -

    Create Curriculum Tree Structure

    -
    - -
    - - - - - - - - - - - - - - - - - - - - -{% endblock body_content %} +{% get_group_name groupid as group_name_tag %} +{% check_is_gstaff groupid request.user as is_gstaff %} +{% get_node groupid as group_obj %} +{% block title %} {{title}} {% endblock %} + + +{% block style %} +.top-gap +{ +margin-top:15px !important; +} +.filter-body +{ +margin-top:5px !important; +} + .first-load { display: none; } + + .tabs dd.active a, .tabs .tab-title.active a { background-color: #f7f7f7; color: black; } + .tabs dd > a, .tabs .tab-title > a {color: #4c4c4c;} + + .tabs dd { width: 100%; } + + .tabs dd a { padding-right: 0; width: 100%; } + + .count { position: absolute; right: 5px; opacity: 0.75; } + + .panel > .side-nav > .tabs i {margin-right: 0.5rem;} + + .tabs-content > .content.active{ + margin-left:-1px !important; + } + + ul.errorlist {display: none;} + h3 {text-align:center;} + p {text-align:center;} + div.pagination {display: block; width: 40%; margin: 0 auto; } + #grid {width: 200px; padding-top: 5px;} + #selid {width: 200px; padding-top: 5px} + #but { position:absolute; + top:50px; + right:0;} + #filter { + padding-top: 5px; + } + #ss { + padding-top: 5px; width:200px; + } + + + +{% endblock %} + + + + + + + + + + + +{% block meta_content %} + +{% endblock %} + + +{% block related_content %} +{% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/theme.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/theme.html index 9bd54aef72..08efecc454 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/theme.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/theme.html @@ -294,6 +294,11 @@

    Using the Theme Tree:

    {% endif %} + {% if nodes_count == 0 %} +
    +

    Sorry, We couldn't find any results matching "{{ search_text|slice:"2:"|slice:"-2" }}"

    +
    + {% endif %} @@ -314,7 +319,6 @@

    Using the Theme Tree:

    -
      {% for each in nodes %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/toolbar.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/toolbar.html new file mode 100644 index 0000000000..9bb7253348 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/toolbar.html @@ -0,0 +1,46 @@ + +
      + +
      +
      +
      + + +
      +
      + +
      +
      +
      + A-  A A+ +
      +
      + +
      + +
      +
      \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translate_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translate_detail.html index 414ee64274..31e5813c69 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translate_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translate_detail.html @@ -8,7 +8,10 @@
      -
      +
      + +
      +

      {% firstof node.altnames node.name %}

      @@ -17,6 +20,7 @@

      {% firstof node.altnames node.name %}

      +
      {% include 'ndf/node_ajax_content.html' %} {% if other_translations %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_list.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_list.html index d3320ee800..d9a683a900 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_list.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/translation_list.html @@ -6,23 +6,31 @@ {% block body_content %}
      +
      + +

      {% firstof node.altnames node.name %}

      {% include 'ndf/node_ajax_content.html' %} -
      -
      -
      -

      {% if not unit_obj.project_config.section_name %}{% trans "Lesson Name" %}{% else %} {{unit_obj.project_config.section_name}} {% endif %} *

      -
      -
      -
      -

      {% trans "Lesson Description" %} {% trans "optional" %}

      -
      -
      + {% if site.SITE_NAME == "NROER" %} +
      +

      {% if not unit_obj.project_config.section_name %}{% trans "Name" %}{% else %} {{unit_obj.project_config.section_name}} {% endif %} *

      +
      +
      + {% else %} +
      +

      {% if not unit_obj.project_config.section_name %}{% trans "Lesson Name" %}{% else %} {{unit_obj.project_config.section_name}} {% endif %} *

      +
      +
      + {% endif %} + + {% if site.SITE_NAME == "NROER" %} +
      +

      {% trans "Description" %} {% trans "optional" %}

      +
      +
      + {% else %} +
      +

      {% trans "Lesson Description" %} {% trans "optional" %}

      +
      +
      + {% endif %} + +
      - + {% if site.SITE_NAME == "NROER" %} + + {% else %} + + {% endif %} {% comment %} {% endcomment %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html index 2ee4e0026e..1b1600e894 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html @@ -13,260 +13,314 @@ display: none; } + .analytics-details{ + border-style: solid; + border-width: 70px; + border-color: rgba(107, 0, 84, 0.97); + background-color: #80808026; + } + .analytics-user{ + //background-color: #80808026; + } + .analytics-card{ + background-color: black; + } + + .analytics_tile { + height: 300px; + background-size: 100% 100%; + background-color: white; + padding: 20px 22px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + border-radius: 6px; + } + + .analytics_tile-name { + font-size: 25px; + font-weight: 500; + letter-spacing: 1.1px; + margin-bottom: 15px; + display: block; + color:black; + } + + .analytics_tile_desc { + letter-spacing: 0.5px; + font-size: 17px; + color:black; + } + + .course-section-heading { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + // //font-size: 14px; + display: block; + margin: 2px 0px 15px; + color: #888; + } + + .course-section-icon { + //position: absolute; + font-size: 20px; + top: -35px; + //right: 5px; + color: #000000; + background: #ffffff; + margin-left: 22px; + } + .course-metric-count { + // //font-size: 30px; + font-weight: 600; + letter-spacing: 0.5px; + display: block; + color: #000000; + font-size: 17px; + } + + .course-metric-heading { + text-transform: uppercase; + // //font-size: 12px; + letter-spacing: 0.9px; + font-weight: 500; + color: #000000; + display: block; + } + + .course-points-breakup{ + color:black; + } + + .user-analytics-data{ + margin: 42px 37px 37px 37px; + border: 2px solid #aaaaaa; + .close-reveal-modal{ + font-size: 20px; + } +} + +.admin-analytics{ + //background-color: #164A7B; + border-style: solid; + border-width: 50px; + border-color: #164A7B; +} + -
      -
      - {% trans "Your analytics is loading. Please wait." %} -
      -
      -

      PROGRESS REPORT

      - Close [×] -
      -

      {{ group_name }}


      -

      User:

      {{username}}

    -
    -
    -

    Total points gained:

    {{users_points}}

    -
    -

    -
    -
    -
    -
    - {% comment %} -

    {% trans "Course status" %}

    - {% endcomment %} -
    -
    - {{level1_lbl}} -

    {{level1_progress_stmt}}

    -
    -
    -
    -
    -
    -
    -
    - {{level2_lbl}} -

    {{level2_progress_stmt}}

    -
    -
    -
    + + {% if admin_analytics %} + + + + + + + + +
    +
    +
    +
    +
    +

    Points table for students:

    +
    +
    +   + Gallery uploads +   + Note Making +   + Quiz Performance +   + Interactions +
    +
    +
    * Click on the student's name to view detailed analytics.
    -
    -
    -
    +
    +
    +
    +
    + + +
    + + {% else %} + +
    +
    +
    PROGRESS REPORT
    +
    +

    Course: {{ group_name }}


    +
    +
    +

    User: {{username}}

    +
    +
    +

    Total points gained:

    {{users_points}}

    +
    + ×
    -
    - {% with group_obj.member_of_names_list as group_member_of_name %} - +
    -
    -
    - Assessment Performance - {% if "announced_unit" in group_member_of_name %} - Refresh - - - - - {% endif %} - -
    -
    - {% trans "Total Questions" %} - {{total_quizitems}} +
    +
    + {{level1_lbl}} +

    {{level1_progress_stmt}}

    +
    +
    -
    +
    + {{level2_lbl}} +

    {{level2_progress_stmt}}

    +
    +
    +
    +
    +
    + {% with group_obj.member_of_names_list as group_member_of_name %} +
    +
    + + + + Assessment Performance + {% if "announced_unit" in group_member_of_name %} + Refresh + {% endif %} +
    +
    + {% trans "Total Questions" %} + {{total_quizitems}} +
    Correct Answers {{correct_attempted_quizitems}} -
    -
    - - -
    -
    - Attempted - {{attempted_quizitems}} -
    - -
    +
    + Attempted + {{attempted_quizitems}} +
    {% trans "Incorrect answers" %} {{incorrect_attempted_quizitems}} -
    + {% if "announced_unit" in group_member_of_name %} +
    + {% trans "Not Attempted" %} + {{unattempted_quizitems}} +
    + {% endif %}
    - - {% if "announced_unit" in group_member_of_name %} -
    -
    - {% trans "Not Attempted" %} - {{unattempted_quizitems}} +
    + {% endwith %} +
    +
    + + + + {% trans "Note Making" %} +
    +
    + {% trans "Notes Written" %} + {{user_notes}}
    -
    - {% endif %} + {% trans "Views Gained" %} + {{others_reading_my_notes}} +
    + {% trans "Comments recieved" %} + {{cmts_on_user_notes}} +
    + {% trans "Visits on Other Notes" %} + {{total_notes_read_by_user}} +
    + {% trans "Comments on other notes" %} + {{commented_on_others_notes}} +
    + {% trans "Avg. Rating Awarded" %} + +
    +
    +
    {{total_rating_rcvd_on_notes}}
    +
    +
    -
    -
    - {% trans "Interactions" %} + {% with group_obj.member_of_names_list as group_member_of_name %} +
    +
    + {% trans "Interactions" %} -
    -
    - {% trans "Comments By me" %} +
    + {% trans "Comments By me" %} {{total_cmnts_by_user}} -
    - {% comment %} -
    - Avg Rating for my comments - -
    -
    -
    -
    -
    -
    - {% endcomment %} -
    -
    -
    - {% trans "Comments for me" %} +
    + {% trans "Comments for me" %} {{cmnts_rcvd_by_user}} +
    +
    + {% endwith %} +
    +
    +
    +
    - {% comment %} -
    - Avg Ratings to others - -
    -
    -
    -
    - -
    -
    - {% endcomment %}
    -
    - {% endwith %} - - -
    -
    - - - {% endcomment %} -
    + {% endif %} + + + + + + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/videoDashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/videoDashboard.html index b654b2f4bc..7fd8abfcf4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/videoDashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/videoDashboard.html @@ -1,6 +1,6 @@ {% load i18n %} {% load ndf_tags %} -{% block title %} video Gallery {% endblock %} + {% block body_content %} {% get_group_name groupid as group_name_tag %} {% comment %} @@ -186,12 +186,74 @@
    {% endcomment %} -

    -
      +

      Select Video:

      + {% if GSTUDIO_ELASTIC_SEARCH %} +
      +
      + {% get_filters_data "File" "home" as filter_dict %} + {% include "ndf/filters.html" with filter_dict=filter_dict %} + {% csrf_token %} +
      + +
      +
      + +
      +
      + +
      +
      +
      +
        {% for each in files_cur %} - + +
      • + +
        {{each.name|truncatechars:15}}
        + +
      • + {% endfor %} +
      + {% else %} +
      +
      + {% get_filters_data "File" "home" as filter_dict %} + {% include "ndf/filters.html" with filter_dict=filter_dict %} + {% csrf_token %} + + +
      + +
      +
        + {% for each in files_cur %} +
      • - {% endfor %}
      + {% endif %} +{% include "ndf/ImageAudioVideoFilterSearch.html" with filters="video"%} {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html index 073ffd6ae8..cef4b69151 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html @@ -147,13 +147,26 @@

      {% firstof group_object.altnames group_object.n {% if module_enrollment %} {% if not enrolled_status_dict|get_dict_value_from_key:request.user.pk %} + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("Join").attr("title", "Join ") + {% else %} $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll ") + {% endif %} {% endif %} {% else %} {% if request.user.pk not in group_object.author_set %} - $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll") + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("join").attr("title", "Join") + {% else %} + $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll") + {% endif %} + {% else %} - $(".enrollact-{{group_object.pk}}").val("Enrolled").attr("title", "You are enrolled") + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("Joined").attr("title", "You are joined") + {% else %} + $(".enrollact-{{group_object.pk}}").val("Enrolled").attr("title", "You are enrolled") + {% endif %} {% endif %} {% endif %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html index c7c4a13d16..322a36fd12 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html @@ -17,7 +17,7 @@

      Interaction Settings

    -

    {% trans "Do you want to enable Comments/Discussion on this Activity for Students ? " %}

    +

    {% trans "Do you want to enable Comments/Discussion on this Activity ? " %}

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html index 0bde6aa4f1..f006171dc7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html @@ -1,6 +1,5 @@ {% load i18n %} {% load ndf_tags %} -
    @@ -80,9 +79,9 @@
    {% trans "Source: " %}
    {# - {% else %}> + {% else %} - {% endif %}> + {% endif %} {% endfor %}
    @@ -95,7 +94,6 @@
    {% trans "Source: " %}
    -