├── scss ├── coreui │ ├── _vendors.scss │ ├── bootstrap │ │ ├── _tags.scss │ │ ├── _breadcrumb.scss │ │ ├── _progress.scss │ │ ├── _buttons.scss │ │ ├── _input-group.scss │ │ ├── _tables.scss │ │ ├── bootstrap.scss │ │ ├── _dropdown.scss │ │ └── _navbar.scss │ ├── main │ │ ├── _others.scss │ │ ├── _charts.scss │ │ ├── navigation │ │ │ ├── _disabled.scss │ │ │ └── _top.scss │ │ ├── _temp.scss │ │ ├── _footer.scss │ │ ├── _navigation.scss │ │ ├── _grid.scss │ │ ├── _breadcrumb-menu.scss │ │ ├── _animate.scss │ │ ├── _avatars.scss │ │ ├── _utilities-border.scss │ │ ├── _callout.scss │ │ ├── _mobile.scss │ │ ├── _aside.scss │ │ ├── _typography.scss │ │ └── _loading.scss │ ├── coreui.scss │ ├── _bootstrap.scss │ ├── _main.scss │ ├── vendors │ │ └── chart.js │ │ │ └── chart.scss │ ├── bootstrap-variables.scss │ └── _mixins.scss └── bootstrap │ ├── utilities │ ├── _clearfix.scss │ ├── _screenreaders.scss │ ├── _display.scss │ ├── _pulls.scss │ ├── _background.scss │ ├── _visibility.scss │ ├── _spacing.scss │ ├── _flex.scss │ └── _text.scss │ ├── mixins │ ├── _pulls.scss │ ├── _clearfix.scss │ ├── _size.scss │ ├── _text-hide.scss │ ├── _lists.scss │ ├── _text-truncate.scss │ ├── _tag.scss │ ├── _resize.scss │ ├── _text-emphasis.scss │ ├── _nav-divider.scss │ ├── _reset-filter.scss │ ├── _alert.scss │ ├── _background-variant.scss │ ├── _tab-focus.scss │ ├── _navbar-align.scss │ ├── _progress.scss │ ├── _pagination.scss │ ├── _reset-text.scss │ ├── _list-group.scss │ ├── _table-row.scss │ ├── _screen-reader.scss │ ├── _border-radius.scss │ ├── _cards.scss │ ├── _image.scss │ ├── _hover.scss │ ├── _grid-framework.scss │ ├── _gradients.scss │ ├── _grid.scss │ ├── _buttons.scss │ ├── _forms.scss │ └── _breakpoints.scss │ ├── _custom.scss │ ├── bootstrap-flex.scss │ ├── bootstrap-reboot.scss │ ├── _utilities.scss │ ├── bootstrap-grid.scss │ ├── _animation.scss │ ├── _jumbotron.scss │ ├── _responsive-embed.scss │ ├── _close.scss │ ├── _grid.scss │ ├── bootstrap.scss │ ├── _breadcrumb.scss │ ├── _code.scss │ ├── _mixins.scss │ ├── _alert.scss │ ├── _images.scss │ ├── _media.scss │ ├── _tags.scss │ ├── _pagination.scss │ ├── _tooltip.scss │ ├── _print.scss │ ├── _type.scss │ ├── _nav.scss │ ├── _modal.scss │ └── _list-group.scss ├── .gitignore ├── fonts ├── Sahel-FD.eot ├── Sahel-FD.ttf ├── Sahel-FD.woff ├── FontAwesome.otf ├── Sahel-Bold-FD.eot ├── Sahel-Bold-FD.ttf ├── Sahel-Black-FD.eot ├── Sahel-Black-FD.ttf ├── Sahel-Black-FD.woff ├── Sahel-Bold-FD.woff ├── Simple-Line-Icons.eot ├── Simple-Line-Icons.ttf ├── Simple-Line-Icons.woff ├── Simple-Line-Icons.woff2 ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── img ├── avatars │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── flags │ ├── CIS.png │ ├── Chad.png │ ├── Cuba.png │ ├── Fiji.png │ ├── Guam.png │ ├── Iran.png │ ├── Iraq.png │ ├── Laos.png │ ├── Mali.png │ ├── NATO.png │ ├── OPEC.png │ ├── Oman.png │ ├── Peru.png │ ├── Togo.png │ ├── USA.png │ ├── ASEAN.png │ ├── Angola.png │ ├── Aruba.png │ ├── Belize.png │ ├── Benin.png │ ├── Bhutan.png │ ├── Brazil.png │ ├── Brunei.png │ ├── Canada.png │ ├── Chile.png │ ├── China.png │ ├── Cyprus.png │ ├── Egypt.png │ ├── Faroes.png │ ├── France.png │ ├── Gabon.png │ ├── Gambia.png │ ├── Ghana.png │ ├── Greece.png │ ├── Guinea.png │ ├── Guyana.png │ ├── Haiti.png │ ├── India.png │ ├── Israel.png │ ├── Italy.png │ ├── Japan.png │ ├── Jersey.png │ ├── Jordan.png │ ├── Kenya.png │ ├── Kosovo.png │ ├── Kuwait.png │ ├── Latvia.png │ ├── Libya.png │ ├── Macao.png │ ├── Malawi.png │ ├── Malta.png │ ├── Mexico.png │ ├── Monaco.png │ ├── Nauru.png │ ├── Nepal.png │ ├── Niger.png │ ├── Norway.png │ ├── Palau.png │ ├── Panama.png │ ├── Poland.png │ ├── Qatar.png │ ├── Russia.png │ ├── Rwanda.png │ ├── Samoa.png │ ├── Spain.png │ ├── Sudan.png │ ├── Sweden.png │ ├── Syria.png │ ├── Taiwan.png │ ├── Tonga.png │ ├── Turkey.png │ ├── Tuvalu.png │ ├── Uganda.png │ ├── Wales.png │ ├── Yemen.png │ ├── Zambia.png │ ├── Albania.png │ ├── Algeria.png │ ├── Andorra.png │ ├── Anguilla.png │ ├── Argentina.png │ ├── Armenia.png │ ├── Australia.png │ ├── Austria.png │ ├── Bahamas.png │ ├── Bahrain.png │ ├── Barbados.png │ ├── Belarus.png │ ├── Belgium.png │ ├── Bermuda.png │ ├── Bolivia.png │ ├── Botswana.png │ ├── Bulgaria.png │ ├── Burundi.png │ ├── CARICOM.png │ ├── Cambodja.png │ ├── Cameroon.png │ ├── Colombia.png │ ├── Comoros.png │ ├── Croatia.png │ ├── Denmark.png │ ├── Djibouti.png │ ├── Dominica.png │ ├── Ecuador.png │ ├── England.png │ ├── Eritrea.png │ ├── Estonia.png │ ├── Ethiopia.png │ ├── Finland.png │ ├── Georgia.png │ ├── Germany.png │ ├── Gibraltar.png │ ├── Greenland.png │ ├── Grenada.png │ ├── Guatemala.png │ ├── Guernsey.png │ ├── Honduras.png │ ├── Hong Kong.png │ ├── Hungary.png │ ├── Iceland.png │ ├── Indonezia.png │ ├── Ireland.png │ ├── Jamaica.png │ ├── Kiribati.png │ ├── Lebanon.png │ ├── Lesotho.png │ ├── Liberia.png │ ├── Lithuania.png │ ├── Macedonia.png │ ├── Malaysia.png │ ├── Maldives.png │ ├── Mauritius.png │ ├── Moldova.png │ ├── Mongolia.png │ ├── Morocco.png │ ├── Namibia.png │ ├── Nicaragua.png │ ├── Nigeria.png │ ├── Pakistan.png │ ├── Palestine.png │ ├── Paraguay.png │ ├── Portugal.png │ ├── Red Cross.png │ ├── Reunion.png │ ├── Romania.png │ ├── Scotland.png │ ├── Senegal.png │ ├── Singapore.png │ ├── Slovakia.png │ ├── Slovenia.png │ ├── Somalia.png │ ├── Sri Lanka.png │ ├── Suriname.png │ ├── Swaziland.png │ ├── Tanzania.png │ ├── Thailand.png │ ├── Tunisia.png │ ├── Ukraine.png │ ├── Uruguay.png │ ├── Vanutau.png │ ├── Venezuela.png │ ├── Viet Nam.png │ ├── Zimbabwe.png │ ├── Afghanistan.png │ ├── Antarctica.png │ ├── Arab League.png │ ├── Azerbaijan.png │ ├── Bangladesh.png │ ├── Cape Verde.png │ ├── Costa Rica.png │ ├── El Salvador.png │ ├── Guadeloupe.png │ ├── Isle of Man.png │ ├── Kazakhstan.png │ ├── Kyrgyzstan.png │ ├── Luxembourg.png │ ├── Madagascar.png │ ├── Martinique.png │ ├── Mauritania.png │ ├── Micronesia.png │ ├── Montenegro.png │ ├── Montserrat.png │ ├── Mozambique.png │ ├── Netherlands.png │ ├── New Zealand.png │ ├── North Korea.png │ ├── Philippines.png │ ├── Puerto Rico.png │ ├── Saint Lucia.png │ ├── San Marino.png │ ├── Seychelles.png │ ├── Somaliland.png │ ├── South Korea.png │ ├── Switzerland.png │ ├── Tajikistan.png │ ├── Timor-Leste.png │ ├── Uzbekistan.png │ ├── African Union.png │ ├── American Samoa.png │ ├── Burkina Faso.png │ ├── Cayman Islands.png │ ├── Commonwealth.png │ ├── Cook Islands.png │ ├── Cote d'Ivoire.png │ ├── Czech Republic.png │ ├── European Union.png │ ├── Guinea-Bissau.png │ ├── Liechtenshein.png │ ├── Myanmar(Burma).png │ ├── New Caledonia.png │ ├── Saudi Arabia.png │ ├── Sierra Leone.png │ ├── South Africa.png │ ├── Turkmenistan.png │ ├── United Nations.png │ ├── United-Kingdom.png │ ├── Vatican City.png │ ├── Western Sahara.png │ ├── Marshall Islands.png │ ├── Northern Cyprus.png │ ├── Northern Ireland.png │ ├── Olimpic Movement.png │ ├── Papua New Guinea.png │ ├── Solomon Islands.png │ ├── St Kitts & Nevis.png │ ├── Antigua & Barbuda.png │ ├── Congo-Brazzaville.png │ ├── Dominican Republic.png │ ├── Equatorial Guinea.png │ ├── Islamic Conference.png │ ├── Sao Tome & Principe.png │ ├── Serbia(Yugoslavia).png │ ├── Trinidad & Tobago.png │ ├── Virgin Islands US.png │ ├── Bosnia & Herzegovina.png │ ├── Congo-Kinshasa(Zaire).png │ ├── Netherlands Antilles.png │ ├── United Arab Emirates.png │ ├── Central African Republic.png │ ├── Tahiti(French Polinesia).png │ ├── Turks and Caicos Islands.png │ ├── Virgin Islands British.png │ └── St Vincent & the Grenadines.png └── coreui-logotyp.png ├── css ├── _fixed-width.scss ├── _screen-reader.scss ├── _larger.scss ├── _list.scss ├── _core.scss ├── font-awesome.scss ├── _stacked.scss ├── _bordered-pulled.scss ├── _rotated-flipped.scss ├── _path.scss ├── _animated.scss └── _mixins.scss ├── bower.json ├── gruntfiles ├── package.json └── Gruntfile.js ├── package.json ├── README.md ├── Gruntfile.js ├── pages-404.html ├── pages-500.html └── first.html /scss/coreui/_vendors.scss: -------------------------------------------------------------------------------- 1 | @import "vendors/chart.js/chart"; 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_tags.scss: -------------------------------------------------------------------------------- 1 | .tag-pill { 2 | border-radius: $tag-pill-border-radius; 3 | } 4 | -------------------------------------------------------------------------------- /scss/coreui/main/_others.scss: -------------------------------------------------------------------------------- 1 | hr.transparent { 2 | border-top: 1px solid transparent; 3 | } 4 | -------------------------------------------------------------------------------- /fonts/Sahel-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-FD.eot -------------------------------------------------------------------------------- /fonts/Sahel-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-FD.ttf -------------------------------------------------------------------------------- /img/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/1.jpg -------------------------------------------------------------------------------- /img/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/2.jpg -------------------------------------------------------------------------------- /img/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/3.jpg -------------------------------------------------------------------------------- /img/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/4.jpg -------------------------------------------------------------------------------- /img/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/5.jpg -------------------------------------------------------------------------------- /img/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/6.jpg -------------------------------------------------------------------------------- /img/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/7.jpg -------------------------------------------------------------------------------- /img/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/avatars/8.jpg -------------------------------------------------------------------------------- /img/flags/CIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/CIS.png -------------------------------------------------------------------------------- /img/flags/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Chad.png -------------------------------------------------------------------------------- /img/flags/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cuba.png -------------------------------------------------------------------------------- /img/flags/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Fiji.png -------------------------------------------------------------------------------- /img/flags/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guam.png -------------------------------------------------------------------------------- /img/flags/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Iran.png -------------------------------------------------------------------------------- /img/flags/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Iraq.png -------------------------------------------------------------------------------- /img/flags/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Laos.png -------------------------------------------------------------------------------- /img/flags/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mali.png -------------------------------------------------------------------------------- /img/flags/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/NATO.png -------------------------------------------------------------------------------- /img/flags/OPEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/OPEC.png -------------------------------------------------------------------------------- /img/flags/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Oman.png -------------------------------------------------------------------------------- /img/flags/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Peru.png -------------------------------------------------------------------------------- /img/flags/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Togo.png -------------------------------------------------------------------------------- /img/flags/USA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/USA.png -------------------------------------------------------------------------------- /fonts/Sahel-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-FD.woff -------------------------------------------------------------------------------- /img/flags/ASEAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/ASEAN.png -------------------------------------------------------------------------------- /img/flags/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Angola.png -------------------------------------------------------------------------------- /img/flags/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Aruba.png -------------------------------------------------------------------------------- /img/flags/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Belize.png -------------------------------------------------------------------------------- /img/flags/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Benin.png -------------------------------------------------------------------------------- /img/flags/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bhutan.png -------------------------------------------------------------------------------- /img/flags/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Brazil.png -------------------------------------------------------------------------------- /img/flags/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Brunei.png -------------------------------------------------------------------------------- /img/flags/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Canada.png -------------------------------------------------------------------------------- /img/flags/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Chile.png -------------------------------------------------------------------------------- /img/flags/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/China.png -------------------------------------------------------------------------------- /img/flags/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cyprus.png -------------------------------------------------------------------------------- /img/flags/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Egypt.png -------------------------------------------------------------------------------- /img/flags/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Faroes.png -------------------------------------------------------------------------------- /img/flags/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/France.png -------------------------------------------------------------------------------- /img/flags/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Gabon.png -------------------------------------------------------------------------------- /img/flags/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Gambia.png -------------------------------------------------------------------------------- /img/flags/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Ghana.png -------------------------------------------------------------------------------- /img/flags/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Greece.png -------------------------------------------------------------------------------- /img/flags/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guinea.png -------------------------------------------------------------------------------- /img/flags/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guyana.png -------------------------------------------------------------------------------- /img/flags/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Haiti.png -------------------------------------------------------------------------------- /img/flags/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/India.png -------------------------------------------------------------------------------- /img/flags/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Israel.png -------------------------------------------------------------------------------- /img/flags/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Italy.png -------------------------------------------------------------------------------- /img/flags/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Japan.png -------------------------------------------------------------------------------- /img/flags/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Jersey.png -------------------------------------------------------------------------------- /img/flags/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Jordan.png -------------------------------------------------------------------------------- /img/flags/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kenya.png -------------------------------------------------------------------------------- /img/flags/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kosovo.png -------------------------------------------------------------------------------- /img/flags/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kuwait.png -------------------------------------------------------------------------------- /img/flags/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Latvia.png -------------------------------------------------------------------------------- /img/flags/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Libya.png -------------------------------------------------------------------------------- /img/flags/Macao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Macao.png -------------------------------------------------------------------------------- /img/flags/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Malawi.png -------------------------------------------------------------------------------- /img/flags/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Malta.png -------------------------------------------------------------------------------- /img/flags/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mexico.png -------------------------------------------------------------------------------- /img/flags/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Monaco.png -------------------------------------------------------------------------------- /img/flags/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Nauru.png -------------------------------------------------------------------------------- /img/flags/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Nepal.png -------------------------------------------------------------------------------- /img/flags/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Niger.png -------------------------------------------------------------------------------- /img/flags/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Norway.png -------------------------------------------------------------------------------- /img/flags/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Palau.png -------------------------------------------------------------------------------- /img/flags/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Panama.png -------------------------------------------------------------------------------- /img/flags/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Poland.png -------------------------------------------------------------------------------- /img/flags/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Qatar.png -------------------------------------------------------------------------------- /img/flags/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Russia.png -------------------------------------------------------------------------------- /img/flags/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Rwanda.png -------------------------------------------------------------------------------- /img/flags/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Samoa.png -------------------------------------------------------------------------------- /img/flags/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Spain.png -------------------------------------------------------------------------------- /img/flags/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Sudan.png -------------------------------------------------------------------------------- /img/flags/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Sweden.png -------------------------------------------------------------------------------- /img/flags/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Syria.png -------------------------------------------------------------------------------- /img/flags/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Taiwan.png -------------------------------------------------------------------------------- /img/flags/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tonga.png -------------------------------------------------------------------------------- /img/flags/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Turkey.png -------------------------------------------------------------------------------- /img/flags/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tuvalu.png -------------------------------------------------------------------------------- /img/flags/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Uganda.png -------------------------------------------------------------------------------- /img/flags/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Wales.png -------------------------------------------------------------------------------- /img/flags/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Yemen.png -------------------------------------------------------------------------------- /img/flags/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Zambia.png -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/Sahel-Bold-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Bold-FD.eot -------------------------------------------------------------------------------- /fonts/Sahel-Bold-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Bold-FD.ttf -------------------------------------------------------------------------------- /img/coreui-logotyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/coreui-logotyp.png -------------------------------------------------------------------------------- /img/flags/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Albania.png -------------------------------------------------------------------------------- /img/flags/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Algeria.png -------------------------------------------------------------------------------- /img/flags/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Andorra.png -------------------------------------------------------------------------------- /img/flags/Anguilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Anguilla.png -------------------------------------------------------------------------------- /img/flags/Argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Argentina.png -------------------------------------------------------------------------------- /img/flags/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Armenia.png -------------------------------------------------------------------------------- /img/flags/Australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Australia.png -------------------------------------------------------------------------------- /img/flags/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Austria.png -------------------------------------------------------------------------------- /img/flags/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bahamas.png -------------------------------------------------------------------------------- /img/flags/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bahrain.png -------------------------------------------------------------------------------- /img/flags/Barbados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Barbados.png -------------------------------------------------------------------------------- /img/flags/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Belarus.png -------------------------------------------------------------------------------- /img/flags/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Belgium.png -------------------------------------------------------------------------------- /img/flags/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bermuda.png -------------------------------------------------------------------------------- /img/flags/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bolivia.png -------------------------------------------------------------------------------- /img/flags/Botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Botswana.png -------------------------------------------------------------------------------- /img/flags/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bulgaria.png -------------------------------------------------------------------------------- /img/flags/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Burundi.png -------------------------------------------------------------------------------- /img/flags/CARICOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/CARICOM.png -------------------------------------------------------------------------------- /img/flags/Cambodja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cambodja.png -------------------------------------------------------------------------------- /img/flags/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cameroon.png -------------------------------------------------------------------------------- /img/flags/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Colombia.png -------------------------------------------------------------------------------- /img/flags/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Comoros.png -------------------------------------------------------------------------------- /img/flags/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Croatia.png -------------------------------------------------------------------------------- /img/flags/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Denmark.png -------------------------------------------------------------------------------- /img/flags/Djibouti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Djibouti.png -------------------------------------------------------------------------------- /img/flags/Dominica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Dominica.png -------------------------------------------------------------------------------- /img/flags/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Ecuador.png -------------------------------------------------------------------------------- /img/flags/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/England.png -------------------------------------------------------------------------------- /img/flags/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Eritrea.png -------------------------------------------------------------------------------- /img/flags/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Estonia.png -------------------------------------------------------------------------------- /img/flags/Ethiopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Ethiopia.png -------------------------------------------------------------------------------- /img/flags/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Finland.png -------------------------------------------------------------------------------- /img/flags/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Georgia.png -------------------------------------------------------------------------------- /img/flags/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Germany.png -------------------------------------------------------------------------------- /img/flags/Gibraltar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Gibraltar.png -------------------------------------------------------------------------------- /img/flags/Greenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Greenland.png -------------------------------------------------------------------------------- /img/flags/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Grenada.png -------------------------------------------------------------------------------- /img/flags/Guatemala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guatemala.png -------------------------------------------------------------------------------- /img/flags/Guernsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guernsey.png -------------------------------------------------------------------------------- /img/flags/Honduras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Honduras.png -------------------------------------------------------------------------------- /img/flags/Hong Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Hong Kong.png -------------------------------------------------------------------------------- /img/flags/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Hungary.png -------------------------------------------------------------------------------- /img/flags/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Iceland.png -------------------------------------------------------------------------------- /img/flags/Indonezia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Indonezia.png -------------------------------------------------------------------------------- /img/flags/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Ireland.png -------------------------------------------------------------------------------- /img/flags/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Jamaica.png -------------------------------------------------------------------------------- /img/flags/Kiribati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kiribati.png -------------------------------------------------------------------------------- /img/flags/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Lebanon.png -------------------------------------------------------------------------------- /img/flags/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Lesotho.png -------------------------------------------------------------------------------- /img/flags/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Liberia.png -------------------------------------------------------------------------------- /img/flags/Lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Lithuania.png -------------------------------------------------------------------------------- /img/flags/Macedonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Macedonia.png -------------------------------------------------------------------------------- /img/flags/Malaysia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Malaysia.png -------------------------------------------------------------------------------- /img/flags/Maldives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Maldives.png -------------------------------------------------------------------------------- /img/flags/Mauritius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mauritius.png -------------------------------------------------------------------------------- /img/flags/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Moldova.png -------------------------------------------------------------------------------- /img/flags/Mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mongolia.png -------------------------------------------------------------------------------- /img/flags/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Morocco.png -------------------------------------------------------------------------------- /img/flags/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Namibia.png -------------------------------------------------------------------------------- /img/flags/Nicaragua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Nicaragua.png -------------------------------------------------------------------------------- /img/flags/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Nigeria.png -------------------------------------------------------------------------------- /img/flags/Pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Pakistan.png -------------------------------------------------------------------------------- /img/flags/Palestine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Palestine.png -------------------------------------------------------------------------------- /img/flags/Paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Paraguay.png -------------------------------------------------------------------------------- /img/flags/Portugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Portugal.png -------------------------------------------------------------------------------- /img/flags/Red Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Red Cross.png -------------------------------------------------------------------------------- /img/flags/Reunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Reunion.png -------------------------------------------------------------------------------- /img/flags/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Romania.png -------------------------------------------------------------------------------- /img/flags/Scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Scotland.png -------------------------------------------------------------------------------- /img/flags/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Senegal.png -------------------------------------------------------------------------------- /img/flags/Singapore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Singapore.png -------------------------------------------------------------------------------- /img/flags/Slovakia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Slovakia.png -------------------------------------------------------------------------------- /img/flags/Slovenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Slovenia.png -------------------------------------------------------------------------------- /img/flags/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Somalia.png -------------------------------------------------------------------------------- /img/flags/Sri Lanka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Sri Lanka.png -------------------------------------------------------------------------------- /img/flags/Suriname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Suriname.png -------------------------------------------------------------------------------- /img/flags/Swaziland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Swaziland.png -------------------------------------------------------------------------------- /img/flags/Tanzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tanzania.png -------------------------------------------------------------------------------- /img/flags/Thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Thailand.png -------------------------------------------------------------------------------- /img/flags/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tunisia.png -------------------------------------------------------------------------------- /img/flags/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Ukraine.png -------------------------------------------------------------------------------- /img/flags/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Uruguay.png -------------------------------------------------------------------------------- /img/flags/Vanutau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Vanutau.png -------------------------------------------------------------------------------- /img/flags/Venezuela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Venezuela.png -------------------------------------------------------------------------------- /img/flags/Viet Nam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Viet Nam.png -------------------------------------------------------------------------------- /img/flags/Zimbabwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Zimbabwe.png -------------------------------------------------------------------------------- /fonts/Sahel-Black-FD.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Black-FD.eot -------------------------------------------------------------------------------- /fonts/Sahel-Black-FD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Black-FD.ttf -------------------------------------------------------------------------------- /fonts/Sahel-Black-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Black-FD.woff -------------------------------------------------------------------------------- /fonts/Sahel-Bold-FD.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Sahel-Bold-FD.woff -------------------------------------------------------------------------------- /img/flags/Afghanistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Afghanistan.png -------------------------------------------------------------------------------- /img/flags/Antarctica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Antarctica.png -------------------------------------------------------------------------------- /img/flags/Arab League.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Arab League.png -------------------------------------------------------------------------------- /img/flags/Azerbaijan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Azerbaijan.png -------------------------------------------------------------------------------- /img/flags/Bangladesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bangladesh.png -------------------------------------------------------------------------------- /img/flags/Cape Verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cape Verde.png -------------------------------------------------------------------------------- /img/flags/Costa Rica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Costa Rica.png -------------------------------------------------------------------------------- /img/flags/El Salvador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/El Salvador.png -------------------------------------------------------------------------------- /img/flags/Guadeloupe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guadeloupe.png -------------------------------------------------------------------------------- /img/flags/Isle of Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Isle of Man.png -------------------------------------------------------------------------------- /img/flags/Kazakhstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kazakhstan.png -------------------------------------------------------------------------------- /img/flags/Kyrgyzstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Kyrgyzstan.png -------------------------------------------------------------------------------- /img/flags/Luxembourg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Luxembourg.png -------------------------------------------------------------------------------- /img/flags/Madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Madagascar.png -------------------------------------------------------------------------------- /img/flags/Martinique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Martinique.png -------------------------------------------------------------------------------- /img/flags/Mauritania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mauritania.png -------------------------------------------------------------------------------- /img/flags/Micronesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Micronesia.png -------------------------------------------------------------------------------- /img/flags/Montenegro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Montenegro.png -------------------------------------------------------------------------------- /img/flags/Montserrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Montserrat.png -------------------------------------------------------------------------------- /img/flags/Mozambique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Mozambique.png -------------------------------------------------------------------------------- /img/flags/Netherlands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Netherlands.png -------------------------------------------------------------------------------- /img/flags/New Zealand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/New Zealand.png -------------------------------------------------------------------------------- /img/flags/North Korea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/North Korea.png -------------------------------------------------------------------------------- /img/flags/Philippines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Philippines.png -------------------------------------------------------------------------------- /img/flags/Puerto Rico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Puerto Rico.png -------------------------------------------------------------------------------- /img/flags/Saint Lucia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Saint Lucia.png -------------------------------------------------------------------------------- /img/flags/San Marino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/San Marino.png -------------------------------------------------------------------------------- /img/flags/Seychelles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Seychelles.png -------------------------------------------------------------------------------- /img/flags/Somaliland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Somaliland.png -------------------------------------------------------------------------------- /img/flags/South Korea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/South Korea.png -------------------------------------------------------------------------------- /img/flags/Switzerland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Switzerland.png -------------------------------------------------------------------------------- /img/flags/Tajikistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tajikistan.png -------------------------------------------------------------------------------- /img/flags/Timor-Leste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Timor-Leste.png -------------------------------------------------------------------------------- /img/flags/Uzbekistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Uzbekistan.png -------------------------------------------------------------------------------- /fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /img/flags/African Union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/African Union.png -------------------------------------------------------------------------------- /img/flags/American Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/American Samoa.png -------------------------------------------------------------------------------- /img/flags/Burkina Faso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Burkina Faso.png -------------------------------------------------------------------------------- /img/flags/Cayman Islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cayman Islands.png -------------------------------------------------------------------------------- /img/flags/Commonwealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Commonwealth.png -------------------------------------------------------------------------------- /img/flags/Cook Islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cook Islands.png -------------------------------------------------------------------------------- /img/flags/Cote d'Ivoire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Cote d'Ivoire.png -------------------------------------------------------------------------------- /img/flags/Czech Republic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Czech Republic.png -------------------------------------------------------------------------------- /img/flags/European Union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/European Union.png -------------------------------------------------------------------------------- /img/flags/Guinea-Bissau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Guinea-Bissau.png -------------------------------------------------------------------------------- /img/flags/Liechtenshein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Liechtenshein.png -------------------------------------------------------------------------------- /img/flags/Myanmar(Burma).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Myanmar(Burma).png -------------------------------------------------------------------------------- /img/flags/New Caledonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/New Caledonia.png -------------------------------------------------------------------------------- /img/flags/Saudi Arabia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Saudi Arabia.png -------------------------------------------------------------------------------- /img/flags/Sierra Leone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Sierra Leone.png -------------------------------------------------------------------------------- /img/flags/South Africa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/South Africa.png -------------------------------------------------------------------------------- /img/flags/Turkmenistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Turkmenistan.png -------------------------------------------------------------------------------- /img/flags/United Nations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/United Nations.png -------------------------------------------------------------------------------- /img/flags/United-Kingdom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/United-Kingdom.png -------------------------------------------------------------------------------- /img/flags/Vatican City.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Vatican City.png -------------------------------------------------------------------------------- /img/flags/Western Sahara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Western Sahara.png -------------------------------------------------------------------------------- /fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /img/flags/Marshall Islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Marshall Islands.png -------------------------------------------------------------------------------- /img/flags/Northern Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Northern Cyprus.png -------------------------------------------------------------------------------- /img/flags/Northern Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Northern Ireland.png -------------------------------------------------------------------------------- /img/flags/Olimpic Movement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Olimpic Movement.png -------------------------------------------------------------------------------- /img/flags/Papua New Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Papua New Guinea.png -------------------------------------------------------------------------------- /img/flags/Solomon Islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Solomon Islands.png -------------------------------------------------------------------------------- /img/flags/St Kitts & Nevis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/St Kitts & Nevis.png -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /img/flags/Antigua & Barbuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Antigua & Barbuda.png -------------------------------------------------------------------------------- /img/flags/Congo-Brazzaville.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Congo-Brazzaville.png -------------------------------------------------------------------------------- /img/flags/Dominican Republic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Dominican Republic.png -------------------------------------------------------------------------------- /img/flags/Equatorial Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Equatorial Guinea.png -------------------------------------------------------------------------------- /img/flags/Islamic Conference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Islamic Conference.png -------------------------------------------------------------------------------- /img/flags/Sao Tome & Principe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Sao Tome & Principe.png -------------------------------------------------------------------------------- /img/flags/Serbia(Yugoslavia).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Serbia(Yugoslavia).png -------------------------------------------------------------------------------- /img/flags/Trinidad & Tobago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Trinidad & Tobago.png -------------------------------------------------------------------------------- /img/flags/Virgin Islands US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Virgin Islands US.png -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_pulls.scss: -------------------------------------------------------------------------------- 1 | @mixin pull-left { 2 | float: left !important; 3 | } 4 | @mixin pull-right { 5 | float: right !important; 6 | } 7 | -------------------------------------------------------------------------------- /img/flags/Bosnia & Herzegovina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Bosnia & Herzegovina.png -------------------------------------------------------------------------------- /img/flags/Congo-Kinshasa(Zaire).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Congo-Kinshasa(Zaire).png -------------------------------------------------------------------------------- /img/flags/Netherlands Antilles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Netherlands Antilles.png -------------------------------------------------------------------------------- /img/flags/United Arab Emirates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/United Arab Emirates.png -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | content: ""; 4 | display: table; 5 | clear: both; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | @mixin size($width, $height: $width) { 4 | width: $width; 5 | height: $height; 6 | } 7 | -------------------------------------------------------------------------------- /img/flags/Central African Republic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Central African Republic.png -------------------------------------------------------------------------------- /img/flags/Tahiti(French Polinesia).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Tahiti(French Polinesia).png -------------------------------------------------------------------------------- /img/flags/Turks and Caicos Islands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Turks and Caicos Islands.png -------------------------------------------------------------------------------- /img/flags/Virgin Islands British.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/Virgin Islands British.png -------------------------------------------------------------------------------- /scss/coreui/main/_charts.scss: -------------------------------------------------------------------------------- 1 | canvas.chart { 2 | display: inline-block !important; 3 | } 4 | base-chart.chart { 5 | display: block !important; 6 | } 7 | -------------------------------------------------------------------------------- /css/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /scss/coreui/main/navigation/_disabled.scss: -------------------------------------------------------------------------------- 1 | // body { 2 | // #navigation { 3 | // left: - 4 | // display: none !important; 5 | // } 6 | // } 7 | -------------------------------------------------------------------------------- /img/flags/St Vincent & the Grenadines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdsharifi/CoreUI-Free-Bootstrap-Admin-Template-RTL/HEAD/img/flags/St Vincent & the Grenadines.png -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | position: relative; 3 | margin-bottom: 20px; 4 | 5 | @include borders($breadcrumb-borders); 6 | } 7 | -------------------------------------------------------------------------------- /css/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_progress.scss: -------------------------------------------------------------------------------- 1 | .progress { 2 | &.progress-sm { 3 | height: 8px; 4 | } 5 | &.progress-xs { 6 | height: 4px; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /scss/bootstrap/_custom.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap overrides 2 | // 3 | // Copy variables from `_variables.scss` to this file to override default values 4 | // without modifying source files. 5 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- 1 | .btn { 2 | 3 | .tag { 4 | position: absolute; 5 | top: 2px; 6 | right: 6px; 7 | font-size: 9px; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- 1 | 2 | .input-group-addon, 3 | .input-group-btn { 4 | min-width: 40px; 5 | white-space: nowrap; 6 | vertical-align: middle; // Match the inputs 7 | } 8 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Screenreaders 3 | // 4 | 5 | .sr-only { 6 | @include sr-only(); 7 | } 8 | 9 | .sr-only-focusable { 10 | @include sr-only-focusable(); 11 | } 12 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | @mixin text-hide() { 3 | font: 0/0 a; 4 | color: transparent; 5 | text-shadow: none; 6 | background-color: transparent; 7 | border: 0; 8 | } 9 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- 1 | // Lists 2 | 3 | // Unstyled keeps list items block level, just removes default browser padding and list-style 4 | @mixin list-unstyled { 5 | padding-left: 0; 6 | list-style: none; 7 | } 8 | -------------------------------------------------------------------------------- /scss/coreui/coreui.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap Elements 2 | @import "bootstrap"; 3 | 4 | // Vendors 5 | @import "vendors"; 6 | 7 | // Main files 8 | @import "main"; 9 | 10 | // Mobile View 11 | @import "main/mobile"; 12 | 13 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- 1 | // Text truncate 2 | // Requires inline-block or block for proper styling 3 | 4 | @mixin text-truncate() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } -------------------------------------------------------------------------------- /scss/bootstrap/bootstrap-flex.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap with Flexbox enabled 2 | // 3 | // Includes all the imports from the standard Bootstrap project, but enables 4 | // the flexbox variable. 5 | 6 | $enable-flex: true; 7 | 8 | @import "bootstrap"; 9 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_tag.scss: -------------------------------------------------------------------------------- 1 | // Tags 2 | 3 | @mixin tag-variant($color) { 4 | background-color: $color; 5 | 6 | &[href] { 7 | @include hover-focus { 8 | background-color: darken($color, 10%); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | @mixin resizable($direction) { 4 | resize: $direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Display utilities 3 | // 4 | 5 | .d-block { 6 | display: block !important; 7 | } 8 | .d-inline-block { 9 | display: inline-block !important; 10 | } 11 | .d-inline { 12 | display: inline !important; 13 | } 14 | -------------------------------------------------------------------------------- /scss/coreui/main/_temp.scss: -------------------------------------------------------------------------------- 1 | .pagination-datatables, .pagination { 2 | li { 3 | @extend .page-item; 4 | 5 | a { 6 | @extend .page-link; 7 | } 8 | } 9 | } 10 | 11 | .label-pill { 12 | border-radius: 1rem !important; 13 | } 14 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | @mixin text-emphasis-variant($parent, $color) { 4 | #{$parent} { 5 | color: $color !important; 6 | } 7 | a#{$parent} { 8 | @include hover-focus { 9 | color: darken($color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap Reboot only 2 | // 3 | // Includes only Normalize and our custom Reboot reset. 4 | 5 | @import "custom"; 6 | @import "variables"; 7 | @import "mixins/hover"; 8 | @import "mixins/tab-focus"; 9 | 10 | @import "normalize"; 11 | @import "reboot"; 12 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | @mixin nav-divider($color: #e5e5e5) { 6 | height: 1px; 7 | margin: ($spacer-y / 2) 0; 8 | overflow: hidden; 9 | background-color: $color; 10 | } 11 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_reset-filter.scss: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9. 5 | 6 | @mixin reset-filter() { 7 | filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; 8 | } 9 | -------------------------------------------------------------------------------- /scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | @import "utilities/background"; 2 | @import "utilities/clearfix"; 3 | @import "utilities/display"; 4 | @import "utilities/flex"; 5 | @import "utilities/pulls"; 6 | @import "utilities/screenreaders"; 7 | @import "utilities/spacing"; 8 | @import "utilities/text"; 9 | @import "utilities/visibility"; 10 | -------------------------------------------------------------------------------- /scss/coreui/main/_footer.scss: -------------------------------------------------------------------------------- 1 | footer.footer { 2 | position: absolute; 3 | right: 0; 4 | bottom: 0; 5 | left: 0; 6 | height: $footer-height; 7 | padding: 0 $spacer-x; 8 | line-height: $footer-height; 9 | color: $footer-color; 10 | background: $footer-bg; 11 | @include borders($footer-borders); 12 | } 13 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | @mixin alert-variant($background, $border, $body-color) { 4 | background-color: $background; 5 | border-color: $border; 6 | color: $body-color; 7 | 8 | hr { 9 | border-top-color: darken($border, 5%); 10 | } 11 | .alert-link { 12 | color: darken($body-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /scss/coreui/_bootstrap.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap 2 | 3 | @import "bootstrap/breadcrumb"; 4 | @import "bootstrap/buttons"; 5 | @import "bootstrap/card"; 6 | @import "bootstrap/dropdown"; 7 | @import "bootstrap/input-group"; 8 | @import "bootstrap/navbar"; 9 | @import "bootstrap/progress"; 10 | @import "bootstrap/tables"; 11 | @import "bootstrap/tags"; 12 | 13 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_tables.scss: -------------------------------------------------------------------------------- 1 | .table-outline { 2 | border: 1px solid $table-border-color; 3 | 4 | td { 5 | vertical-align: middle; 6 | } 7 | } 8 | 9 | .table-align-middle { 10 | 11 | td { 12 | vertical-align: middle; 13 | } 14 | } 15 | 16 | .table-clear { 17 | td { 18 | border: 0; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_background-variant.scss: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | @mixin bg-variant($parent, $color) { 4 | #{$parent} { 5 | color: #fff !important; 6 | background-color: $color !important; 7 | } 8 | a#{$parent} { 9 | @include hover-focus { 10 | background-color: darken($color, 10%) !important; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_pulls.scss: -------------------------------------------------------------------------------- 1 | @each $breakpoint in map-keys($grid-breakpoints) { 2 | @include media-breakpoint-up($breakpoint) { 3 | .pull-#{$breakpoint}-left { 4 | @include pull-left(); 5 | } 6 | .pull-#{$breakpoint}-right { 7 | @include pull-right(); 8 | } 9 | .pull-#{$breakpoint}-none { 10 | float: none !important; 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_tab-focus.scss: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | @mixin tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /scss/coreui/main/_navigation.scss: -------------------------------------------------------------------------------- 1 | @mixin hover-state() { 2 | background: $brand-primary !important; 3 | color: #fff !important; 4 | } 5 | 6 | @mixin active-state() { 7 | background: transparent; 8 | } 9 | 10 | // Disabled Navigation 11 | @import "navigation/disabled"; 12 | 13 | // Sidebar Navigation 14 | @import "navigation/sidebar"; 15 | 16 | // Top Navigation 17 | @import "navigation/top"; 18 | -------------------------------------------------------------------------------- /css/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_navbar-align.scss: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | // @mixin navbar-vertical-align($element-height) { 7 | // margin-top: (($navbar-height - $element-height) / 2); 8 | // margin-bottom: (($navbar-height - $element-height) / 2); 9 | // } 10 | -------------------------------------------------------------------------------- /scss/coreui/main/_grid.scss: -------------------------------------------------------------------------------- 1 | .row.row-equal { 2 | padding-right: ($grid-gutter-width / 4); 3 | padding-left: ($grid-gutter-width / 4); 4 | margin-right: ($grid-gutter-width / -2); 5 | margin-left: ($grid-gutter-width / -2); 6 | 7 | [class*="col-"] { 8 | padding-right: ($grid-gutter-width / 4); 9 | padding-left: ($grid-gutter-width / 4); 10 | } 11 | } 12 | 13 | .main .container-fluid { 14 | padding: 30px 30px; 15 | } 16 | -------------------------------------------------------------------------------- /css/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "genesisui", 3 | "version" : "1.4.3 (jQuery)", 4 | "dependencies" : { 5 | "bootstrap" : "4.0.0-alpha.3", 6 | "tether" : "latest", 7 | "jquery" : "^3.0.0", 8 | "fontawesome" : "latest", 9 | "simple-line-icons" : "latest", 10 | "Chart.js" : "latest", 11 | "pace" : "latest" 12 | }, 13 | "private" : true 14 | } 15 | -------------------------------------------------------------------------------- /css/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /css/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /scss/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- 1 | // Bootstrap Grid only 2 | // 3 | // Includes relevant variables and mixins for the regular (non-flexbox) grid 4 | // system, as well as the generated predefined classes (e.g., `.col-4-sm`). 5 | 6 | 7 | // 8 | // Variables 9 | // 10 | 11 | @import "custom"; 12 | @import "variables"; 13 | 14 | // 15 | // Grid mixins 16 | // 17 | 18 | @import "mixins/clearfix"; 19 | @import "mixins/breakpoints"; 20 | @import "mixins/grid-framework"; 21 | @import "mixins/grid"; 22 | 23 | @import "grid"; 24 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_progress.scss: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | @mixin progress-variant($color) { 4 | &[value]::-webkit-progress-value { 5 | background-color: $color; 6 | } 7 | 8 | &[value]::-moz-progress-bar { 9 | background-color: $color; 10 | } 11 | 12 | // IE10+, Microsoft Edge 13 | &[value]::-ms-fill { 14 | background-color: $color; 15 | } 16 | 17 | // IE9 18 | @media screen and (min-width:0\0) { 19 | .progress-bar { 20 | background-color: $color; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Contextual backgrounds 3 | // 4 | 5 | .bg-inverse { 6 | background-color: $brand-inverse; 7 | } 8 | 9 | .bg-faded { 10 | background-color: $gray-lightest; 11 | } 12 | 13 | @include bg-variant('.bg-primary', $brand-primary); 14 | 15 | @include bg-variant('.bg-success', $brand-success); 16 | 17 | @include bg-variant('.bg-info', $brand-info); 18 | 19 | @include bg-variant('.bg-warning', $brand-warning); 20 | 21 | @include bg-variant('.bg-danger', $brand-danger); 22 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | @mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { 4 | .page-link { 5 | padding: $padding-y $padding-x; 6 | font-size: $font-size; 7 | } 8 | 9 | .page-item { 10 | &:first-child { 11 | .page-link { 12 | @include border-left-radius($border-radius); 13 | } 14 | } 15 | &:last-child { 16 | .page-link { 17 | @include border-right-radius($border-radius); 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /scss/bootstrap/_animation.scss: -------------------------------------------------------------------------------- 1 | .fade { 2 | opacity: 0; 3 | transition: opacity .15s linear; 4 | 5 | &.in { 6 | opacity: 1; 7 | } 8 | } 9 | 10 | .collapse { 11 | display: none; 12 | 13 | &.in { 14 | display: block; 15 | } 16 | // tr&.in { display: table-row; } 17 | // tbody&.in { display: table-row-group; } 18 | } 19 | 20 | .collapsing { 21 | position: relative; 22 | height: 0; 23 | overflow: hidden; 24 | transition-timing-function: ease; 25 | transition-duration: .35s; 26 | transition-property: height; 27 | } 28 | -------------------------------------------------------------------------------- /scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | padding: $jumbotron-padding ($jumbotron-padding / 2); 3 | margin-bottom: $jumbotron-padding; 4 | background-color: $jumbotron-bg; 5 | @include border-radius($border-radius-lg); 6 | 7 | @include media-breakpoint-up(sm) { 8 | padding: ($jumbotron-padding * 2) $jumbotron-padding; 9 | } 10 | } 11 | 12 | .jumbotron-hr { 13 | border-top-color: darken($jumbotron-bg, 10%); 14 | } 15 | 16 | .jumbotron-fluid { 17 | padding-right: 0; 18 | padding-left: 0; 19 | @include border-radius(0); 20 | } 21 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- 1 | @mixin reset-text { 2 | font-family: $font-family-base; 3 | // We deliberately do NOT reset font-size or word-wrap. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: $line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | } 18 | -------------------------------------------------------------------------------- /css/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /gruntfiles/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CoreUI", 3 | "version": "1.0.0-alpha.1", 4 | "description": "", 5 | "main": "index.html", 6 | "dependencies": { 7 | "grunt": "*" 8 | }, 9 | "devDependencies": { 10 | "grunt": "*", 11 | "grunt-contrib-cssmin": "*", 12 | "grunt-contrib-sass": "*", 13 | "grunt-contrib-watch": "*" 14 | }, 15 | "scripts": { 16 | "test": "echo \"Error: no test specified\" && exit 1" 17 | }, 18 | "author": "Łukasz Holeczek", 19 | "url": "http://coreui.io", 20 | "copyright": "Copyright 2016 creativeLabs Łukasz Holeczek", 21 | "license": "http://coreui.io/license" 22 | } 23 | -------------------------------------------------------------------------------- /scss/coreui/_main.scss: -------------------------------------------------------------------------------- 1 | // Additional typography 2 | @import "main/typography"; 3 | 4 | // Animations 5 | @import "main/animate"; 6 | 7 | // Core files 8 | @import "main/grid"; 9 | @import "main/layout"; 10 | @import "main/navigation"; 11 | @import "main/aside"; 12 | @import "main/loading"; 13 | @import "main/widgets"; 14 | @import "main/footer"; 15 | @import "main/buttons"; 16 | @import "main/others"; 17 | @import "main/breadcrumb-menu"; 18 | @import "main/avatars"; 19 | @import "main/callout"; 20 | @import "main/switches"; 21 | @import "main/charts"; 22 | @import "main/utilities-border"; 23 | 24 | // Temporary fixes 25 | @import "main/temp"; 26 | -------------------------------------------------------------------------------- /css/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | @mixin list-group-item-variant($state, $background, $color) { 4 | .list-group-item-#{$state} { 5 | color: $color; 6 | background-color: $background; 7 | } 8 | 9 | a.list-group-item-#{$state}, 10 | button.list-group-item-#{$state} { 11 | color: $color; 12 | 13 | .list-group-item-heading { 14 | color: inherit; 15 | } 16 | 17 | @include hover-focus { 18 | color: $color; 19 | background-color: darken($background, 5%); 20 | } 21 | 22 | &.active { 23 | @include plain-hover-focus { 24 | color: #fff; 25 | background-color: $color; 26 | border-color: $color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CoreUI", 3 | "version": "1.0.0-alpha.1", 4 | "description": "", 5 | "main": "index.html", 6 | "dependencies": { 7 | "grunt": "*" 8 | }, 9 | "devDependencies": { 10 | "autoprefixer": "^6.4.1", 11 | "cssnext": "^1.8.4", 12 | "grunt": "*", 13 | "grunt-contrib-cssmin": "*", 14 | "grunt-contrib-sass": "*", 15 | "grunt-contrib-watch": "*", 16 | "grunt-postcss": "^0.8.0", 17 | "rtlcss": "^2.0.6" 18 | }, 19 | "scripts": { 20 | "test": "echo \"Error: no test specified\" && exit 1" 21 | }, 22 | "author": "Łukasz Holeczek", 23 | "url": "http://coreui.io", 24 | "copyright": "Copyright 2016 creativeLabs Łukasz Holeczek", 25 | "license": "http://coreui.io/license" 26 | } 27 | -------------------------------------------------------------------------------- /css/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /scss/bootstrap/_responsive-embed.scss: -------------------------------------------------------------------------------- 1 | // Credit: Nicolas Gallagher and SUIT CSS. 2 | 3 | .embed-responsive { 4 | position: relative; 5 | display: block; 6 | height: 0; 7 | padding: 0; 8 | overflow: hidden; 9 | 10 | .embed-responsive-item, 11 | iframe, 12 | embed, 13 | object, 14 | video { 15 | position: absolute; 16 | top: 0; 17 | bottom: 0; 18 | left: 0; 19 | width: 100%; 20 | height: 100%; 21 | border: 0; 22 | } 23 | } 24 | 25 | .embed-responsive-21by9 { 26 | padding-bottom: percentage(9 / 21); 27 | } 28 | 29 | .embed-responsive-16by9 { 30 | padding-bottom: percentage(9 / 16); 31 | } 32 | 33 | .embed-responsive-4by3 { 34 | padding-bottom: percentage(3 / 4); 35 | } 36 | 37 | .embed-responsive-1by1 { 38 | padding-bottom: percentage(1 / 1); 39 | } 40 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | @mixin table-row-variant($state, $background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table-#{$state} { 7 | &, 8 | > th, 9 | > td { 10 | background-color: $background; 11 | } 12 | } 13 | 14 | // Hover states for `.table-hover` 15 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 16 | .table-hover { 17 | $hover-background: darken($background, 5%); 18 | 19 | .table-#{$state} { 20 | @include hover { 21 | background-color: $hover-background; 22 | 23 | > td, 24 | > th { 25 | background-color: $hover-background; 26 | } 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /scss/coreui/main/_breadcrumb-menu.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb-menu { 2 | position: absolute; 3 | top: 0; 4 | right: $breadcrumb-padding-x; 5 | line-height: 43px; 6 | 7 | &:before { 8 | display: none; 9 | } 10 | 11 | .btn-group { 12 | margin-top: -2px; 13 | } 14 | 15 | .btn.btn-secondary { 16 | color: $text-muted; 17 | border: 0; 18 | 19 | &:hover, &.active { 20 | color: $body-color; 21 | background: transparent; 22 | } 23 | } 24 | 25 | .open { 26 | .btn.btn-secondary { 27 | color: $body-color; 28 | background: transparent; 29 | } 30 | } 31 | 32 | .dropdown-menu { 33 | min-width: 180px; 34 | line-height: $line-height-base; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Only display content to screen readers 2 | // 3 | // See: http://a11yproject.com/posts/how-to-hide-content 4 | 5 | @mixin sr-only { 6 | position: absolute; 7 | width: 1px; 8 | height: 1px; 9 | padding: 0; 10 | margin: -1px; 11 | overflow: hidden; 12 | clip: rect(0,0,0,0); 13 | border: 0; 14 | } 15 | 16 | // Use in conjunction with .sr-only to only display content when it's focused. 17 | // 18 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 19 | // 20 | // Credit: HTML5 Boilerplate 21 | 22 | @mixin sr-only-focusable { 23 | &:active, 24 | &:focus { 25 | position: static; 26 | width: auto; 27 | height: auto; 28 | margin: 0; 29 | overflow: visible; 30 | clip: auto; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "tables"; 3 | 4 | @import "buttons"; 5 | 6 | @import "dropdown"; 7 | 8 | @import "input-group"; 9 | 10 | @import "navbar"; 11 | @import "card"; 12 | @import "breadcrumb"; 13 | 14 | @import "progress"; 15 | 16 | @import "../core/typography"; 17 | 18 | @import "../vendors/vendors"; 19 | 20 | @import "../core/grid"; 21 | @import "../core/layout"; 22 | @import "../core/navigation"; 23 | @import "../core/loading"; 24 | @import "../core/widgets"; 25 | @import "../core/footer"; 26 | @import "../core/buttons"; 27 | @import "../core/others"; 28 | @import "../core/page-header"; 29 | @import "../core/breadcrumb-menu"; 30 | @import "../core/avatars"; 31 | @import "../core/callout"; 32 | 33 | @import "../pages"; 34 | 35 | @import "../uikits"; 36 | 37 | @import "../core/mobile"; 38 | -------------------------------------------------------------------------------- /css/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /scss/coreui/main/_animate.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | .animated { 4 | -webkit-animation-duration: 1s; 5 | animation-duration: 1s; 6 | -webkit-animation-fill-mode: both; 7 | animation-fill-mode: both; 8 | } 9 | 10 | .animated.infinite { 11 | -webkit-animation-iteration-count: infinite; 12 | animation-iteration-count: infinite; 13 | } 14 | 15 | .animated.hinge { 16 | -webkit-animation-duration: 2s; 17 | animation-duration: 2s; 18 | } 19 | 20 | @-webkit-keyframes fadeIn { 21 | from { 22 | opacity: 0; 23 | } 24 | 25 | to { 26 | opacity: 1; 27 | } 28 | } 29 | 30 | @keyframes fadeIn { 31 | from { 32 | opacity: 0; 33 | } 34 | 35 | to { 36 | opacity: 1; 37 | } 38 | } 39 | 40 | .fadeIn { 41 | -webkit-animation-name: fadeIn; 42 | animation-name: fadeIn; 43 | } 44 | -------------------------------------------------------------------------------- /css/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- 1 | .close { 2 | float: right; 3 | font-size: ($font-size-base * 1.5); 4 | font-weight: $close-font-weight; 5 | line-height: 1; 6 | color: $close-color; 7 | text-shadow: $close-text-shadow; 8 | opacity: .2; 9 | 10 | @include hover-focus { 11 | color: $close-color; 12 | text-decoration: none; 13 | cursor: pointer; 14 | opacity: .5; 15 | } 16 | } 17 | 18 | // Additional properties for button version 19 | // iOS requires the button element instead of an anchor tag. 20 | // If you want the anchor version, it requires `href="#"`. 21 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 22 | 23 | // scss-lint:disable QualifyingElement 24 | button.close { 25 | padding: 0; 26 | cursor: pointer; 27 | background: transparent; 28 | border: 0; 29 | -webkit-appearance: none; 30 | } 31 | // scss-lint:enable QualifyingElement 32 | -------------------------------------------------------------------------------- /scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- 1 | // Container widths 2 | // 3 | // Set the container width, and override it for fixed navbars in media queries. 4 | 5 | @if $enable-grid-classes { 6 | .container { 7 | @include make-container(); 8 | @include make-container-max-widths(); 9 | } 10 | } 11 | 12 | // Fluid container 13 | // 14 | // Utilizes the mixin meant for fixed width containers, but without any defined 15 | // width for fluid, full width layouts. 16 | 17 | @if $enable-grid-classes { 18 | .container-fluid { 19 | @include make-container(); 20 | } 21 | } 22 | 23 | // Row 24 | // 25 | // Rows contain and clear the floats of your columns. 26 | 27 | @if $enable-grid-classes { 28 | .row { 29 | @include make-row(); 30 | } 31 | } 32 | 33 | // Columns 34 | // 35 | // Common styles for small and large grid columns 36 | 37 | @if $enable-grid-classes { 38 | @include make-grid-columns(); 39 | } 40 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | @mixin border-radius($radius: $border-radius) { 4 | @if $enable-rounded { 5 | border-radius: $radius; 6 | } 7 | } 8 | 9 | @mixin border-top-radius($radius) { 10 | @if $enable-rounded { 11 | border-top-right-radius: $radius; 12 | border-top-left-radius: $radius; 13 | } 14 | } 15 | 16 | @mixin border-right-radius($radius) { 17 | @if $enable-rounded { 18 | border-bottom-right-radius: $radius; 19 | border-top-right-radius: $radius; 20 | } 21 | } 22 | 23 | @mixin border-bottom-radius($radius) { 24 | @if $enable-rounded { 25 | border-bottom-right-radius: $radius; 26 | border-bottom-left-radius: $radius; 27 | } 28 | } 29 | 30 | @mixin border-left-radius($radius) { 31 | @if $enable-rounded { 32 | border-bottom-left-radius: $radius; 33 | border-top-left-radius: $radius; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_cards.scss: -------------------------------------------------------------------------------- 1 | // Card variants 2 | 3 | @mixin card-variant($background, $border) { 4 | background-color: $background; 5 | border-color: $border; 6 | 7 | .card-header, 8 | .card-footer { 9 | background-color: transparent; 10 | } 11 | } 12 | 13 | @mixin card-outline-variant($color) { 14 | background-color: transparent; 15 | border-color: $color; 16 | } 17 | 18 | // 19 | // Inverse text within a card for use with dark backgrounds 20 | // 21 | 22 | @mixin card-inverse { 23 | .card-header, 24 | .card-footer { 25 | border-color: rgba(255,255,255,.2); 26 | } 27 | .card-header, 28 | .card-footer, 29 | .card-title, 30 | .card-blockquote { 31 | color: #fff; 32 | } 33 | .card-link, 34 | .card-text, 35 | .card-subtitle, 36 | .card-blockquote .blockquote-footer { 37 | color: rgba(255,255,255,.65); 38 | } 39 | .card-link { 40 | @include hover-focus { 41 | color: $card-link-hover-color; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /scss/coreui/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- 1 | // Links, buttons, and more within the dropdown menu 2 | .dropdown-item { 3 | position: relative; 4 | padding: 10px 20px; 5 | border-bottom: 1px solid $dropdown-border-color; 6 | 7 | &:last-child { 8 | border-bottom: 0; 9 | } 10 | 11 | i { 12 | display: inline-block; 13 | width: 20px; 14 | margin-right: 10px; 15 | margin-left: -10px; 16 | color: $dropdown-border-color; 17 | text-align: center; 18 | } 19 | 20 | .tag { 21 | position: absolute; 22 | right: 10px; 23 | margin-top: 2px; 24 | } 25 | } 26 | 27 | // Dropdown section headers 28 | .dropdown-header { 29 | padding: 8px 20px; 30 | background: $dropdown-divider-bg; 31 | border-bottom: 1px solid $dropdown-border-color; 32 | 33 | .btn { 34 | margin-top: -7px; 35 | color: $dropdown-header-color; 36 | 37 | &:hover { 38 | color: $body-color; 39 | } 40 | 41 | &.pull-right { 42 | margin-right: -20px; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /scss/coreui/main/_avatars.scss: -------------------------------------------------------------------------------- 1 | .img-avatar { 2 | border-radius: 50em; 3 | } 4 | 5 | .avatar { 6 | $width: 36px; 7 | $status-width: 10px; 8 | @include avatar($width,$status-width); 9 | } 10 | 11 | .avatar.avatar-xs { 12 | $width: 20px; 13 | $status-width: 8px; 14 | @include avatar($width,$status-width); 15 | } 16 | 17 | .avatar.avatar-sm { 18 | $width: 24px; 19 | $status-width: 8px; 20 | @include avatar($width,$status-width); 21 | } 22 | 23 | .avatar.avatar-lg { 24 | $width: 72px; 25 | $status-width: 12px; 26 | @include avatar($width,$status-width); 27 | } 28 | 29 | .avatars-stack { 30 | .avatar.avatar-xs { 31 | margin-right: -10px; 32 | } 33 | 34 | // .avatar.avatar-sm { 35 | // 36 | // } 37 | 38 | .avatar { 39 | margin-right: -15px; 40 | transition-duration: $layout-transition-speed, $layout-transition-speed; 41 | transition-property: margin-left, margin-right; 42 | 43 | &:hover { 44 | margin-right: 0 !important; 45 | } 46 | } 47 | 48 | // .avatar.avatar-lg { 49 | // 50 | // } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /scss/coreui/vendors/chart.js/chart.scss: -------------------------------------------------------------------------------- 1 | .chart-legend, 2 | .bar-legend, 3 | .line-legend, 4 | .pie-legend, 5 | .radar-legend, 6 | .polararea-legend, 7 | .doughnut-legend { 8 | list-style-type: none; 9 | margin-top: 5px; 10 | text-align: center; 11 | -webkit-padding-start: 0; 12 | -moz-padding-start: 0; 13 | padding-left: 0; 14 | } 15 | .chart-legend li, 16 | .bar-legend li, 17 | .line-legend li, 18 | .pie-legend li, 19 | .radar-legend li, 20 | .polararea-legend li, 21 | .doughnut-legend li { 22 | display: inline-block; 23 | white-space: nowrap; 24 | position: relative; 25 | margin-bottom: 4px; 26 | @include border-radius($border-radius); 27 | padding: 2px 8px 2px 28px; 28 | font-size: smaller; 29 | cursor: default; 30 | } 31 | .chart-legend li span, 32 | .bar-legend li span, 33 | .line-legend li span, 34 | .pie-legend li span, 35 | .radar-legend li span, 36 | .polararea-legend li span, 37 | .doughnut-legend li span { 38 | display: block; 39 | position: absolute; 40 | left: 0; 41 | top: 0; 42 | width: 20px; 43 | height: 20px; 44 | @include border-radius($border-radius); 45 | } 46 | -------------------------------------------------------------------------------- /scss/coreui/main/_utilities-border.scss: -------------------------------------------------------------------------------- 1 | //border 2 | @each $prop, $abbrev in (border: b) { 3 | @each $size in (0,1,2) { 4 | @if $size == 0 { 5 | .#{$abbrev}-a-#{$size} { #{$prop}: 0 !important; } // a = All sides 6 | .#{$abbrev}-t-#{$size} { #{$prop}-top: 0 !important; } 7 | .#{$abbrev}-r-#{$size} { #{$prop}-right: 0 !important; } 8 | .#{$abbrev}-b-#{$size} { #{$prop}-bottom: 0 !important; } 9 | .#{$abbrev}-l-#{$size} { #{$prop}-left: 0 !important; } 10 | } @else { 11 | .#{$abbrev}-a-#{$size} { #{$prop}: $size * $border-width solid $border-color !important; } // a = All sides 12 | .#{$abbrev}-t-#{$size} { #{$prop}-top: $size * $border-width solid $border-color !important; } 13 | .#{$abbrev}-r-#{$size} { #{$prop}-right: $size * $border-width solid $border-color !important; } 14 | .#{$abbrev}-b-#{$size} { #{$prop}-bottom: $size * $border-width solid $border-color !important; } 15 | .#{$abbrev}-l-#{$size} { #{$prop}-left: $size * $border-width solid $border-color !important; } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- 1 | // scss-lint:disable ImportantRule 2 | 3 | // 4 | // Visibility utilities 5 | // 6 | 7 | .invisible { 8 | visibility: hidden !important; 9 | } 10 | 11 | // Responsive visibility utilities 12 | 13 | @each $bp in map-keys($grid-breakpoints) { 14 | .hidden-#{$bp}-up { 15 | @include media-breakpoint-up($bp) { 16 | display: none !important; 17 | } 18 | } 19 | .hidden-#{$bp}-down { 20 | @include media-breakpoint-down($bp) { 21 | display: none !important; 22 | } 23 | } 24 | } 25 | 26 | 27 | // Print utilities 28 | // 29 | // Media queries are placed on the inside to be mixin-friendly. 30 | 31 | .visible-print-block { 32 | display: none !important; 33 | 34 | @media print { 35 | display: block !important; 36 | } 37 | } 38 | .visible-print-inline { 39 | display: none !important; 40 | 41 | @media print { 42 | display: inline !important; 43 | } 44 | } 45 | .visible-print-inline-block { 46 | display: none !important; 47 | 48 | @media print { 49 | display: inline-block !important; 50 | } 51 | } 52 | 53 | .hidden-print { 54 | @media print { 55 | display: none !important; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- 1 | // Core variables and mixins 2 | @import "../coreui/bootstrap-variables"; 3 | @import "variables"; 4 | @import "../coreui/coreui-variables"; 5 | @import "mixins"; 6 | @import "../coreui/mixins"; 7 | 8 | // Reset and dependencies 9 | @import "normalize"; 10 | @import "print"; 11 | 12 | // Core CSS 13 | @import "reboot"; 14 | @import "type"; 15 | @import "images"; 16 | @import "code"; 17 | @import "grid"; 18 | @import "tables"; 19 | @import "forms"; 20 | @import "buttons"; 21 | 22 | // Components 23 | @import "animation"; 24 | @import "dropdown"; 25 | @import "button-group"; 26 | @import "input-group"; 27 | //@import "custom-forms"; 28 | @import "nav"; 29 | @import "navbar"; 30 | @import "card"; 31 | @import "breadcrumb"; 32 | @import "pagination"; 33 | @import "tags"; 34 | //@import "jumbotron"; 35 | @import "alert"; 36 | @import "progress"; 37 | @import "media"; 38 | @import "list-group"; 39 | @import "responsive-embed"; 40 | @import "close"; 41 | 42 | // Components w/ JavaScript 43 | @import "modal"; 44 | @import "tooltip"; 45 | @import "popover"; 46 | //@import "carousel"; 47 | 48 | // Utility classes 49 | @import "utilities"; 50 | 51 | // CoreUI Styles 52 | @import "../coreui/coreui"; 53 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | 10 | @mixin img-fluid($display: block) { 11 | display: $display; 12 | max-width: 100%; // Part 1: Set a maximum relative to the parent 13 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 14 | } 15 | 16 | 17 | // Retina image 18 | // 19 | // Short retina mixin for setting background-image and -size. 20 | 21 | @mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) { 22 | background-image: url($file-1x); 23 | 24 | // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio, 25 | // but doesn't convert dppx=>dpi. 26 | // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard. 27 | // Compatibility info: http://caniuse.com/#feat=css-media-resolution 28 | @media 29 | only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx 30 | only screen and (min-resolution: 2dppx) { // Standardized 31 | background-image: url($file-2x); 32 | background-size: $width-1x $height-1x; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /scss/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- 1 | @mixin hover { 2 | // TODO: re-enable along with mq4-hover-shim 3 | // @if $enable-hover-media-query { 4 | // // See Media Queries Level 4: http://drafts.csswg.org/mediaqueries/#hover 5 | // // Currently shimmed by https://github.com/twbs/mq4-hover-shim 6 | // @media (hover: hover) { 7 | // &:hover { @content } 8 | // } 9 | // } 10 | // @else { 11 | &:hover { @content } 12 | // } 13 | } 14 | 15 | @mixin hover-focus { 16 | @if $enable-hover-media-query { 17 | &:focus { @content } 18 | @include hover { @content } 19 | } 20 | @else { 21 | &:focus, 22 | &:hover { 23 | @content 24 | } 25 | } 26 | } 27 | 28 | @mixin plain-hover-focus { 29 | @if $enable-hover-media-query { 30 | &, 31 | &:focus { 32 | @content 33 | } 34 | @include hover { @content } 35 | } 36 | @else { 37 | &, 38 | &:focus, 39 | &:hover { 40 | @content 41 | } 42 | } 43 | } 44 | 45 | @mixin hover-focus-active { 46 | @if $enable-hover-media-query { 47 | &:focus, 48 | &:active { 49 | @content 50 | } 51 | @include hover { @content } 52 | } 53 | @else { 54 | &:focus, 55 | &:active, 56 | &:hover { 57 | @content 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /scss/bootstrap/utilities/_spacing.scss: -------------------------------------------------------------------------------- 1 | // Width 2 | 3 | .w-100 { width: 100% !important; } 4 | 5 | // Margin and Padding 6 | 7 | .m-x-auto { 8 | margin-right: auto !important; 9 | margin-left: auto !important; 10 | } 11 | 12 | @each $prop, $abbrev in (margin: m, padding: p) { 13 | @each $size, $lengths in $spacers { 14 | $length-x: map-get($lengths, x); 15 | $length-y: map-get($lengths, y); 16 | 17 | .#{$abbrev}-a-#{$size} { #{$prop}: $length-y $length-x !important; } // a = All sides 18 | .#{$abbrev}-t-#{$size} { #{$prop}-top: $length-y !important; } 19 | .#{$abbrev}-r-#{$size} { #{$prop}-right: $length-x !important; } 20 | .#{$abbrev}-b-#{$size} { #{$prop}-bottom: $length-y !important; } 21 | .#{$abbrev}-l-#{$size} { #{$prop}-left: $length-x !important; } 22 | 23 | // Axes 24 | .#{$abbrev}-x-#{$size} { 25 | #{$prop}-right: $length-x !important; 26 | #{$prop}-left: $length-x !important; 27 | } 28 | .#{$abbrev}-y-#{$size} { 29 | #{$prop}-top: $length-y !important; 30 | #{$prop}-bottom: $length-y !important; 31 | } 32 | } 33 | } 34 | 35 | // Positioning 36 | 37 | .pos-f-t { 38 | position: fixed; 39 | top: 0; 40 | right: 0; 41 | left: 0; 42 | z-index: $zindex-navbar-fixed; 43 | } 44 | -------------------------------------------------------------------------------- /scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | padding: $breadcrumb-padding-y $breadcrumb-padding-x; 3 | margin-bottom: $spacer-y; 4 | list-style: none; 5 | background-color: $breadcrumb-bg; 6 | @include border-radius($border-radius); 7 | @include clearfix; 8 | } 9 | 10 | .breadcrumb-item { 11 | float: left; 12 | 13 | // The separator between breadcrumbs (by default, a forward-slash: "/") 14 | + .breadcrumb-item::before { 15 | display: inline-block; // Suppress underlining of the separator in modern browsers 16 | padding-right: $breadcrumb-item-padding; 17 | padding-left: $breadcrumb-item-padding; 18 | color: $breadcrumb-divider-color; 19 | content: "#{$breadcrumb-divider}"; 20 | } 21 | 22 | // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built 23 | // without `
12 |
13 | >Demo: CoreUI
14 |
15 | **NOTE:** Please remember to **STAR** this project and **FOLLOW** [my Github](https://github.com/mrholek) to keep you update with this template.
16 | ## RTL version
17 | RTL template by [Mohammad Sharifi](https://github.com/mmdsharifi) @ [Webly Team](https://github.com/webly-team) with :heart:
18 |
19 | ## Bugs and feature requests
20 |
21 | Have a bug or a feature request? [Please open a new issue](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template/issues/new).
22 |
23 | ## Documentation
24 |
25 | CoreUI's documentation, is hosted on our website coreui.io
26 |
27 |
28 | ## Copyright and license
29 |
30 | copyright 2016 creativeLabs Łukasz Holeczek. Code released under [the MIT license](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template/blob/master/LICENSE).
31 |
32 |
--------------------------------------------------------------------------------
/scss/coreui/bootstrap-variables.scss:
--------------------------------------------------------------------------------
1 | // Bootstrap overrides
2 |
3 | // Colors
4 | //
5 | // Grayscale and brand colors for use across Bootstrap.
6 |
7 | $gray-dark: #263238;
8 | $gray: #607d8b;
9 | $gray-light: #b0bec5;
10 | $gray-lighter: #cfd8dc;
11 | $gray-lightest: #eceff1;
12 |
13 | $brand-primary: #20a8d8;
14 | $brand-success: #4dbd74;
15 | $brand-info: #63c2de;
16 | $brand-warning: #f8cb00;
17 | $brand-danger: #f86c6b;
18 |
19 | // Options
20 | //
21 | // Quickly modify global styling by enabling or disabling optional features.
22 |
23 | $enable-transitions: true;
24 | $enable-rounded: false;
25 |
26 | // Spacing
27 | //
28 | // Control the default styling of most Bootstrap elements by modifying these
29 | // variables. Mostly focused on spacing.
30 |
31 | $spacer: 1rem !default;
32 | $spacer-x: $spacer !default;
33 | $spacer-y: $spacer !default;
34 | $spacers: (
35 | q: (
36 | x: ($spacer-x * 0.25),
37 | y: ($spacer-y * 0.25)
38 | ),
39 | h: (
40 | x: ($spacer-x * 0.5),
41 | y: ($spacer-y * 0.5)
42 | ),
43 | 0: (
44 | x: 0,
45 | y: 0
46 | ),
47 | 1: (
48 | x: $spacer-x,
49 | y: $spacer-y
50 | ),
51 | 2: (
52 | x: ($spacer-x * 1.5),
53 | y: ($spacer-y * 1.5)
54 | ),
55 | 3: (
56 | x: ($spacer-x * 3),
57 | y: ($spacer-y * 3)
58 | )
59 | );
60 |
61 | // Body
62 | //
63 | // Settings for the `` element.
64 |
65 | $body-bg: #e4e5e6;
66 |
67 | // Typography
68 | //
69 | // Font, line-height, and color for body text, headings, and more.
70 |
71 | $font-size-base: 0.875rem;
72 |
73 | // Breadcrumbs
74 |
75 | $breadcrumb-bg: #fff;
76 |
77 | // Cards
78 |
79 | $card-border-color: $gray-lighter;
80 | $card-cap-bg: $gray-lightest;
81 |
82 | // Dropdowns
83 |
84 | $dropdown-padding-y: 0;
85 | $dropdown-border-color: $gray-lighter;
86 | $dropdown-divider-bg: $gray-lightest;
87 |
--------------------------------------------------------------------------------
/gruntfiles/Gruntfile.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * CoreUI's Gruntfile
3 | * http://coreui.io
4 | * Copyright 2016 creativeLabs Łukasz Holeczek
5 | * License : http://coreui.io/license
6 | */
7 |
8 | module.exports = function (grunt) {
9 | 'use strict';
10 |
11 | // Project configuration.
12 | grunt.initConfig({
13 | sass: {
14 | development: {
15 | files: {
16 | 'css/style.css' : 'scss/bootstrap/bootstrap.scss'
17 | }
18 | }
19 | },
20 | cssmin: {
21 | development: {
22 | files: [{
23 | expand: true,
24 | cwd: 'css',
25 | src: ['*.css', '!*.min.css'],
26 | dest: 'css',
27 | ext: '.min.css'
28 | }]
29 | }
30 | },
31 | watch: {
32 | options: {
33 | livereload: true,
34 | interval: 1000
35 | },
36 | sass: {
37 | options: {
38 | livereload: false
39 | },
40 | files: ['**/*.scss', '**/**/*.scss'],
41 | tasks: ['sass:development']
42 | },
43 | cssmin: {
44 | options: {
45 | livereload: false
46 | },
47 | files: ['css/*.css', '!css/*.min.css'],
48 | tasks: ['cssmin:development']
49 | },
50 | reload: {
51 | files: ['**/*.html', '**/**/*.html', '**/*.js', '**/**/*.js']
52 | },
53 | livereload: {
54 | options: { livereload: true, interval: 1000 },
55 | files: [
56 | '**/*.css'
57 | ]
58 | },
59 | }
60 | });
61 |
62 | // These plugins provide necessary tasks.
63 | grunt.loadNpmTasks('grunt-contrib-cssmin');
64 | grunt.loadNpmTasks('grunt-contrib-sass');
65 | grunt.loadNpmTasks('grunt-contrib-watch');
66 |
67 | // Default task.
68 | grunt.registerTask('default', ['watch']);
69 | };
70 |
--------------------------------------------------------------------------------
/scss/coreui/main/_typography.scss:
--------------------------------------------------------------------------------
1 | // Sahel persian free font
2 |
3 | @font-face {
4 | font-family: Sahel;
5 | src: url('../fonts/Sahel-FD.eot');
6 | src: url('../fonts/Sahel-FD.eot?#iefix') format('embedded-opentype'),
7 | url('../fonts/Sahel-FD.woff') format('woff'),
8 | url('../fonts/Sahel-FD.ttf') format('truetype');
9 | font-weight: normal;
10 | }
11 |
12 | @font-face {
13 | font-family: Sahel;
14 | src: url('../fonts/Sahel-Bold-FD.eot');
15 | src: url('../fonts/Sahel-Bold-FD.eot?#iefix') format('embedded-opentype'),
16 | url('../fonts/Sahel-Bold-FD.woff') format('woff'),
17 | url('../fonts/Sahel-Bold-FD.ttf') format('truetype');
18 | font-weight: bold;
19 | }
20 |
21 | @font-face {
22 | font-family: Sahel;
23 | src: url('../fonts/Sahel-Black-FD.eot');
24 | src: url('../fonts/Sahel-Black-FD.eot?#iefix') format('embedded-opentype'),
25 | url('../fonts/Sahel-Black-FD.woff') format('woff'),
26 | url('../fonts/Sahel-Black-FD.ttf') format('truetype');
27 | font-weight: 900;
28 | }
29 | html,body {
30 | font-family: 'Sahel' !important;
31 | line-height: 1.62 !important;
32 | -moz-osx-font-smoothing: grayscale;
33 | -webkit-font-smoothing: antialiased;
34 | button.btn {
35 | font-weight: bold;
36 | }
37 |
38 | // for english fildes
39 |
40 | .en {
41 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
42 | &::placeholder {
43 | font-family: 'Sahel' !important;
44 | transition: .6s all;
45 | }
46 | &:focus {
47 | direction: rtl;
48 | }
49 | }
50 | }
51 |
52 | .font-xs {
53 | font-size: .75rem !important;
54 | }
55 |
56 | .font-sm {
57 | font-size: .85rem !important;
58 | }
59 |
60 | .font-lg {
61 | font-size: 1rem !important;
62 | }
63 |
64 | .font-xl {
65 | font-size: 1.25rem !important;
66 | }
67 |
68 | .font-2xl {
69 | font-size: 1.5rem !important;
70 | }
71 |
72 | .font-3xl {
73 | font-size: 1.75rem !important;
74 | }
75 |
76 | .font-4xl {
77 | font-size: 2rem !important;
78 | }
79 |
80 | .font-5xl {
81 | font-size: 2.5rem !important;
82 | }
83 |
--------------------------------------------------------------------------------
/Gruntfile.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * CoreUI's Gruntfile
3 | * http://coreui.io
4 | * Copyright 2016 creativeLabs Łukasz Holeczek
5 | * License : http://coreui.io/license
6 | */
7 |
8 | module.exports = function (grunt) {
9 | 'use strict';
10 |
11 | // Project configuration.
12 | grunt.initConfig({
13 | sass: {
14 | development: {
15 | files: {
16 | 'css/style.css' : 'scss/bootstrap/bootstrap.scss'
17 | }
18 | }
19 | },
20 |
21 | watch: {
22 | options: {
23 | livereload: true,
24 | interval: 1000
25 | },
26 | sass: {
27 | options: {
28 | livereload: false
29 | },
30 | files: ['**/*.scss', '**/**/*.scss'],
31 | tasks: ['css']
32 | },
33 | // cssmin: {
34 | // options: {
35 | // livereload: false
36 | // },
37 | // files: ['css/*.css', '!css/*.min.css'],
38 | // tasks: ['cssmin:development']
39 | // },
40 | reload: {
41 | files: ['**/*.html', '**/**/*.html', '**/*.js', '**/**/*.js']
42 | },
43 | livereload: {
44 | options: { livereload: true, interval: 1000 },
45 | files: [
46 | '**/*.css'
47 | ]
48 | },
49 | },
50 |
51 | postcss : {
52 | options: {
53 | processors: [
54 | require('autoprefixer')(),
55 | require('cssnext')(),
56 | require('rtlcss')
57 | ]
58 | },
59 |
60 | dist: {
61 | src: 'css/style.css',
62 | dest: 'dest/style.css'
63 | }
64 | }
65 | });
66 |
67 | // These plugins provide necessary tasks.
68 | grunt.loadNpmTasks('grunt-contrib-cssmin');
69 | grunt.loadNpmTasks('grunt-contrib-sass');
70 | grunt.loadNpmTasks('grunt-contrib-watch');
71 | grunt.loadNpmTasks('grunt-postcss');
72 | // Default task.
73 | grunt.registerTask('css', ['sass', 'postcss']);
74 | grunt.registerTask('default', ['watch']);
75 | };
76 |
--------------------------------------------------------------------------------
/scss/bootstrap/mixins/_grid-framework.scss:
--------------------------------------------------------------------------------
1 | // Framework grid generation
2 | //
3 | // Used only by Bootstrap to generate the correct number of grid classes given
4 | // any value of `$grid-columns`.
5 |
6 | @mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
7 |
8 | // Common properties for all breakpoints
9 | %grid-column {
10 | position: relative;
11 | // Prevent columns from collapsing when empty
12 | min-height: 1px;
13 | // Inner gutter via padding
14 | padding-right: ($gutter / 2);
15 | padding-left: ($gutter / 2);
16 |
17 | @if $enable-flex {
18 | width: 100%;
19 | }
20 | }
21 |
22 | $breakpoint-counter: 0;
23 | @each $breakpoint in map-keys($breakpoints) {
24 | $breakpoint-counter: ($breakpoint-counter + 1);
25 |
26 | @for $i from 1 through $columns {
27 | .col-#{$breakpoint}-#{$i} {
28 | @extend %grid-column;
29 | }
30 | }
31 |
32 | @include media-breakpoint-up($breakpoint, $breakpoints) {
33 | // Provide basic `.col-{bp}` classes for equal-width flexbox columns
34 | @if $enable-flex {
35 | .col-#{$breakpoint} {
36 | position: relative;
37 | flex-basis: 0;
38 | flex-grow: 1;
39 | max-width: 100%;
40 | min-height: 1px;
41 | padding-right: ($grid-gutter-width / 2);
42 | padding-left: ($grid-gutter-width / 2);
43 | }
44 | }
45 |
46 | @for $i from 1 through $columns {
47 | .col-#{$breakpoint}-#{$i} {
48 | @include make-col($i, $columns, $gutter);
49 | }
50 | }
51 |
52 | @each $modifier in (pull, push) {
53 | @for $i from 0 through $columns {
54 | .#{$modifier}-#{$breakpoint}-#{$i} {
55 | @include make-col-modifier($modifier, $i, $columns)
56 | }
57 | }
58 | }
59 |
60 | // `$columns - 1` because offsetting by the width of an entire row isn't possible
61 | @for $i from 0 through ($columns - 1) {
62 | @if $breakpoint-counter != 1 or $i != 0 { // Avoid emitting useless .offset-xs-0
63 | .offset-#{$breakpoint}-#{$i} {
64 | @include make-col-modifier(offset, $i, $columns)
65 | }
66 | }
67 | }
68 | }
69 | }
70 | }
71 |
--------------------------------------------------------------------------------
/scss/bootstrap/_tooltip.scss:
--------------------------------------------------------------------------------
1 | // Base class
2 | .tooltip {
3 | position: absolute;
4 | z-index: $zindex-tooltip;
5 | display: block;
6 | // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
7 | // So reset our font and text properties to avoid inheriting weird values.
8 | @include reset-text();
9 | font-size: $font-size-sm;
10 | // Allow breaking very long words so they don't overflow the tooltip's bounds
11 | word-wrap: break-word;
12 | opacity: 0;
13 |
14 | &.in { opacity: $tooltip-opacity; }
15 |
16 | &.tooltip-top,
17 | &.bs-tether-element-attached-bottom {
18 | padding: $tooltip-arrow-width 0;
19 | margin-top: -$tooltip-margin;
20 |
21 | .tooltip-arrow {
22 | bottom: 0;
23 | left: 50%;
24 | margin-left: -$tooltip-arrow-width;
25 | border-width: $tooltip-arrow-width $tooltip-arrow-width 0;
26 | border-top-color: $tooltip-arrow-color;
27 | }
28 | }
29 | &.tooltip-right,
30 | &.bs-tether-element-attached-left {
31 | padding: 0 $tooltip-arrow-width;
32 | margin-left: $tooltip-margin;
33 |
34 | .tooltip-arrow {
35 | top: 50%;
36 | left: 0;
37 | margin-top: -$tooltip-arrow-width;
38 | border-width: $tooltip-arrow-width $tooltip-arrow-width $tooltip-arrow-width 0;
39 | border-right-color: $tooltip-arrow-color;
40 | }
41 | }
42 | &.tooltip-bottom,
43 | &.bs-tether-element-attached-top {
44 | padding: $tooltip-arrow-width 0;
45 | margin-top: $tooltip-margin;
46 |
47 | .tooltip-arrow {
48 | top: 0;
49 | left: 50%;
50 | margin-left: -$tooltip-arrow-width;
51 | border-width: 0 $tooltip-arrow-width $tooltip-arrow-width;
52 | border-bottom-color: $tooltip-arrow-color;
53 | }
54 | }
55 | &.tooltip-left,
56 | &.bs-tether-element-attached-right {
57 | padding: 0 $tooltip-arrow-width;
58 | margin-left: -$tooltip-margin;
59 |
60 | .tooltip-arrow {
61 | top: 50%;
62 | right: 0;
63 | margin-top: -$tooltip-arrow-width;
64 | border-width: $tooltip-arrow-width 0 $tooltip-arrow-width $tooltip-arrow-width;
65 | border-left-color: $tooltip-arrow-color;
66 | }
67 | }
68 | }
69 |
70 | // Wrapper for the tooltip content
71 | .tooltip-inner {
72 | max-width: $tooltip-max-width;
73 | padding: $tooltip-padding-y $tooltip-padding-x;
74 | color: $tooltip-color;
75 | text-align: center;
76 | background-color: $tooltip-bg;
77 | @include border-radius($border-radius);
78 | }
79 |
80 | // Arrows
81 | .tooltip-arrow {
82 | position: absolute;
83 | width: 0;
84 | height: 0;
85 | border-color: transparent;
86 | border-style: solid;
87 | }
88 |
--------------------------------------------------------------------------------
/scss/coreui/bootstrap/_navbar.scss:
--------------------------------------------------------------------------------
1 | header.navbar {
2 | position: relative;
3 | height: $navbar-height;
4 | padding: 0;
5 | line-height: $navbar-height;
6 | background-color: $navbar-bg;
7 | @include borders($navbar-border);
8 |
9 | .container-fluid {
10 | padding: 0;
11 | }
12 |
13 | .nav-item {
14 | position: relative;
15 | min-width: 50px;
16 | margin: 0 !important;
17 | text-align: center;
18 |
19 | .nav-link {
20 | i {
21 | vertical-align: middle;
22 | }
23 |
24 | .tag {
25 | position: absolute;
26 | top: 9px;
27 | right: 7px;
28 | }
29 | }
30 | }
31 |
32 | .img-avatar {
33 | height: $navbar-height - 20px;
34 | margin: 0 10px;
35 | }
36 |
37 | .dropdown-menu {
38 | padding-bottom: 0;
39 | line-height: $line-height-base;
40 | }
41 |
42 | .dropdown-item {
43 | min-width: 180px;
44 | }
45 |
46 | a.navbar-brand {
47 | display: inline-block;
48 | width: $navbar-brand-width;
49 | height: $navbar-height;
50 | padding: $navbar-padding-y $navbar-padding-x;
51 | background-color: $navbar-brand-bg;
52 | background-image: $navbar-brand-logo;
53 | background-repeat: no-repeat;
54 | background-position: center center;
55 | background-size: $navbar-brand-logo-size;
56 | @include borders($navbar-brand-border);
57 | }
58 | }
59 |
60 | header.navbar {
61 | .navbar-brand {
62 | margin-right: 0;
63 | }
64 | }
65 |
66 | .navbar-toggler {
67 | padding: 0 .75em;
68 | line-height: $navbar-height - 4px;
69 | }
70 |
71 | header.navbar {
72 | .navbar-nav {
73 | .nav-link {
74 | padding-top: 0;
75 | padding-bottom: 0;
76 | }
77 | }
78 | }
79 |
80 | .navbar-brand {
81 | color: $navbar-active-color;
82 |
83 | @include hover-focus {
84 | color: $navbar-active-color;
85 | }
86 | }
87 |
88 | .navbar-nav {
89 | .nav-link {
90 | color: $navbar-color;
91 |
92 | @include hover-focus {
93 | color: $navbar-hover-color;
94 | }
95 | }
96 |
97 | .open > .nav-link,
98 | .active > .nav-link,
99 | .nav-link.open,
100 | .nav-link.active {
101 | @include plain-hover-focus {
102 | color: $navbar-active-color;
103 | }
104 | }
105 | }
106 |
107 | .navbar-divider {
108 | background-color: rgba(0,0,0,.075);
109 | }
110 |
--------------------------------------------------------------------------------
/scss/bootstrap/mixins/_gradients.scss:
--------------------------------------------------------------------------------
1 | // Gradients
2 |
3 | // Horizontal gradient, from left to right
4 | //
5 | // Creates two color stops, start and end, by specifying a color and position for each color stop.
6 | // Color stops are not available in IE9.
7 | @mixin gradient-x($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
8 | background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);
9 | background-repeat: repeat-x;
10 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9
11 | }
12 |
13 | // Vertical gradient, from top to bottom
14 | //
15 | // Creates two color stops, start and end, by specifying a color and position for each color stop.
16 | // Color stops are not available in IE9.
17 | @mixin gradient-y($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
18 | background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);
19 | background-repeat: repeat-x;
20 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9
21 | }
22 |
23 | @mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
24 | background-repeat: repeat-x;
25 | background-image: linear-gradient($deg, $start-color, $end-color);
26 | }
27 | @mixin gradient-x-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
28 | background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
29 | background-repeat: no-repeat;
30 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 gets no color-stop at all for proper fallback
31 | }
32 | @mixin gradient-y-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
33 | background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
34 | background-repeat: no-repeat;
35 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 gets no color-stop at all for proper fallback
36 | }
37 | @mixin gradient-radial($inner-color: #555, $outer-color: #333) {
38 | background-image: radial-gradient(circle, $inner-color, $outer-color);
39 | background-repeat: no-repeat;
40 | }
41 | @mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) {
42 | background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);
43 | }
--------------------------------------------------------------------------------
/scss/bootstrap/mixins/_grid.scss:
--------------------------------------------------------------------------------
1 | /// Grid system
2 | //
3 | // Generate semantic grid columns with these mixins.
4 |
5 | @mixin make-container($gutter: $grid-gutter-width) {
6 | margin-left: auto;
7 | margin-right: auto;
8 | padding-left: ($gutter / 2);
9 | padding-right: ($gutter / 2);
10 | @if not $enable-flex {
11 | @include clearfix();
12 | }
13 | }
14 |
15 |
16 | // For each breakpoint, define the maximum width of the container in a media query
17 | @mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
18 | @each $breakpoint, $container-max-width in $max-widths {
19 | @include media-breakpoint-up($breakpoint, $breakpoints) {
20 | max-width: $container-max-width;
21 | }
22 | }
23 | }
24 |
25 | @mixin make-row($gutter: $grid-gutter-width) {
26 | @if $enable-flex {
27 | display: flex;
28 | flex-wrap: wrap;
29 | } @else {
30 | @include clearfix();
31 | }
32 | margin-left: ($gutter / -2);
33 | margin-right: ($gutter / -2);
34 | }
35 |
36 | @mixin make-col-ready($size, $columns: $grid-columns, $gutter: $grid-gutter-width) {
37 | position: relative;
38 | min-height: 1px; // Prevent collapsing
39 | padding-right: ($gutter / 2);
40 | padding-left: ($gutter / 2);
41 |
42 | // Prevent columns from becoming too narrow when at smaller grid tiers by
43 | // always setting `width: 100%;`. This works because we use `flex` values
44 | // later on to override this initial width.
45 | @if $enable-flex {
46 | width: 100%;
47 | }
48 | }
49 |
50 | @mixin make-col($size, $columns: $grid-columns, $gutter: $grid-gutter-width) {
51 | @if $enable-flex {
52 | flex: 0 0 percentage($size / $columns);
53 | // Add a `max-width` to ensure content within each column does not blow out
54 | // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
55 | // do not appear to require this.
56 | max-width: percentage($size / $columns);
57 | } @else {
58 | float: left;
59 | width: percentage($size / $columns);
60 | }
61 | }
62 |
63 | @mixin make-col-offset($size, $columns: $grid-columns) {
64 | margin-left: percentage($size / $columns);
65 | }
66 |
67 | @mixin make-col-push($size, $columns: $grid-columns) {
68 | left: if($size > 0, percentage($size / $columns), auto);
69 | }
70 |
71 | @mixin make-col-pull($size, $columns: $grid-columns) {
72 | right: if($size > 0, percentage($size / $columns), auto);
73 | }
74 |
75 | @mixin make-col-modifier($type, $size, $columns) {
76 | // Work around the lack of dynamic mixin @include support (https://github.com/sass/sass/issues/626)
77 | @if $type == push {
78 | @include make-col-push($size, $columns);
79 | } @else if $type == pull {
80 | @include make-col-pull($size, $columns);
81 | } @else if $type == offset {
82 | @include make-col-offset($size, $columns);
83 | }
84 | }
85 |
--------------------------------------------------------------------------------
/scss/bootstrap/mixins/_buttons.scss:
--------------------------------------------------------------------------------
1 | // Button variants
2 | //
3 | // Easily pump out default styles, as well as :hover, :focus, :active,
4 | // and disabled options for all buttons
5 |
6 | @mixin button-variant($color, $background, $border) {
7 | $active-background: darken($background, 10%);
8 | $active-border: darken($border, 12%);
9 |
10 | color: $color;
11 | background-color: $background;
12 | border-color: $border;
13 | @include box-shadow($btn-box-shadow);
14 |
15 | @include hover {
16 | color: $color;
17 | background-color: $active-background;
18 | border-color: $active-border;
19 | }
20 |
21 | &:focus,
22 | &.focus {
23 | color: $color;
24 | background-color: $active-background;
25 | border-color: $active-border;
26 | }
27 |
28 | &:active,
29 | &.active,
30 | .open > &.dropdown-toggle {
31 | color: $color;
32 | background-color: $active-background;
33 | border-color: $active-border;
34 | // Remove the gradient for the pressed/active state
35 | background-image: none;
36 | @include box-shadow($btn-active-box-shadow);
37 |
38 | &:hover,
39 | &:focus,
40 | &.focus {
41 | color: $color;
42 | background-color: darken($background, 17%);
43 | border-color: darken($border, 25%);
44 | }
45 | }
46 |
47 | &.disabled,
48 | &:disabled {
49 | &:focus,
50 | &.focus {
51 | background-color: $background;
52 | border-color: $border;
53 | }
54 | @include hover {
55 | background-color: $background;
56 | border-color: $border;
57 | }
58 | }
59 | }
60 |
61 | @mixin button-outline-variant($color) {
62 | color: $color;
63 | background-image: none;
64 | background-color: transparent;
65 | border-color: $color;
66 |
67 | @include hover {
68 | color: #fff;
69 | background-color: $color;
70 | border-color: $color;
71 | }
72 |
73 | &:focus,
74 | &.focus {
75 | color: #fff;
76 | background-color: $color;
77 | border-color: $color;
78 | }
79 |
80 | &:active,
81 | &.active,
82 | .open > &.dropdown-toggle {
83 | color: #fff;
84 | background-color: $color;
85 | border-color: $color;
86 |
87 | &:hover,
88 | &:focus,
89 | &.focus {
90 | color: #fff;
91 | background-color: darken($color, 17%);
92 | border-color: darken($color, 25%);
93 | }
94 | }
95 |
96 | &.disabled,
97 | &:disabled {
98 | &:focus,
99 | &.focus {
100 | border-color: lighten($color, 20%);
101 | }
102 | @include hover {
103 | border-color: lighten($color, 20%);
104 | }
105 | }
106 | }
107 |
108 | // Button sizes
109 | @mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {
110 | padding: $padding-y $padding-x;
111 | font-size: $font-size;
112 | @include border-radius($border-radius);
113 | }
114 |
--------------------------------------------------------------------------------
/pages-404.html:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | The page you are looking for was not found.
35 |The page you are looking for is temporarily unavailable.
35 |