- Created restricted.tpl for displaying restricted access messages with customizable background options. - Added index.php files in hook and main template directories to prevent direct access and ensure proper redirection. - Implemented info.tpl to provide module information and support links, enhancing user experience with promotional content. - Included necessary CSS styles for the new templates to ensure proper layout and responsiveness.
95 lines
2.3 KiB
CSS
95 lines
2.3 KiB
CSS
/*
|
|
* PrivateShop
|
|
*
|
|
* Do not edit or add to this file.
|
|
* You are not authorized to modify, copy or redistribute this file.
|
|
* Permissions are reserved by FME Modules.
|
|
*
|
|
* @author FME Modules
|
|
* @copyright 2021 FME Modules All right reserved
|
|
* @license Copyrights FME Modules
|
|
* @category FMM Modules
|
|
* @package PrivateShop
|
|
*/
|
|
|
|
#account-creation_form {}
|
|
|
|
#account-creation_form fieldset {
|
|
padding:0 0 15px 0;
|
|
border:1px solid #ccc;
|
|
background:#f8f8f8
|
|
}
|
|
#account-creation_form h3 {
|
|
margin:0 0 15px 0;
|
|
padding:8px;
|
|
font-size:14px;
|
|
color:#fff;
|
|
text-transform:uppercase;
|
|
background:url(../img/bg_form_h3.png) repeat-x 0 0 #989898
|
|
}
|
|
#center_column #account-creation_form p {margin:0; padding:0 0 10px 0}
|
|
#account-creation_form p.required {color:#222}
|
|
#account-creation_form p.required sup {color:#990000}
|
|
|
|
#account-creation_form p.radio span,
|
|
#account-creation_form p.text label,
|
|
#account-creation_form p.password label,
|
|
#account-creation_form p.select label,
|
|
#account-creation_form p.select span,
|
|
#account-creation_form p.textarea label {
|
|
display:inline-block;
|
|
padding:6px 15px;
|
|
width:210px;/* 260 */
|
|
font-size:14px;
|
|
text-align:right
|
|
}
|
|
#account-creation_form p.radio label {
|
|
float:none;
|
|
padding-right:10px;
|
|
width:auto;
|
|
font-size:14px
|
|
}
|
|
#account-creation_form p.checkbox label {
|
|
float:none;
|
|
width:auto;
|
|
font-size:12px
|
|
}
|
|
#account-creation_form p.text input,
|
|
#account-creation_form p.password input,
|
|
#account-creation_form p.select input {
|
|
padding:0 5px;
|
|
height:22px;
|
|
width:40%;/* 370 */
|
|
border:1px solid #ccc;
|
|
font-size: 12px;
|
|
color:#666
|
|
}
|
|
#account-creation_form p.checkbox input {
|
|
margin-left:140px;
|
|
}
|
|
#account-creation_form p.select select {
|
|
margin-right:10px;
|
|
border:1px solid #ccc;
|
|
font-size: 12px;
|
|
color:#666
|
|
}
|
|
#account-creation_form p.textarea textarea {
|
|
height:80px;
|
|
width:41%;
|
|
border:1px solid #ccc;
|
|
font-size: 12px;
|
|
color:#666
|
|
}
|
|
|
|
#account-creation_form span.form_info {
|
|
display:block;
|
|
margin:5px 0 0 265px;
|
|
color:#666
|
|
}
|
|
#account-creation_form p.inline-infos {
|
|
margin:0 0 0 45% !important;
|
|
font-size:12px;
|
|
color:#666;
|
|
}
|
|
|
|
#center_column #account-creation_form p.cart_navigation {margin:20px 0} |