├── screenshot.png ├── images ├── arrow-left.png ├── arrow-up.png ├── icon-clock.png ├── icon-reply.png ├── arrow-right.png ├── arrow-up@2x.png ├── arrow-left@2x.png ├── arrow-right@2x.png ├── bg-eyecatch01.jpg ├── icon-clock@2x.png └── icon-reply@2x.png ├── sidebar.php ├── .gitignore ├── page.php ├── comments.php ├── footer.php ├── 404.php ├── header.php ├── single.php ├── index.php ├── functions.php ├── archive.php ├── search.php ├── front-page.php └── style.css /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/screenshot.png -------------------------------------------------------------------------------- /images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-left.png -------------------------------------------------------------------------------- /images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-up.png -------------------------------------------------------------------------------- /images/icon-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/icon-clock.png -------------------------------------------------------------------------------- /images/icon-reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/icon-reply.png -------------------------------------------------------------------------------- /images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-right.png -------------------------------------------------------------------------------- /images/arrow-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-up@2x.png -------------------------------------------------------------------------------- /images/arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-left@2x.png -------------------------------------------------------------------------------- /images/arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/arrow-right@2x.png -------------------------------------------------------------------------------- /images/bg-eyecatch01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/bg-eyecatch01.jpg -------------------------------------------------------------------------------- /images/icon-clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/icon-clock@2x.png -------------------------------------------------------------------------------- /images/icon-reply@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixkaito/easiest-wp/master/images/icon-reply@2x.png -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 2 | 3 | 4 | 5 | 6 | 7 |
8 |

9 |
10 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |
19 | 20 | 23 | 24 |
25 | 26 | 27 | 28 | 6 | 7 | 8 |
9 |
10 |

コメントとトラックバック

11 | 18 |
19 |
20 | 21 | 22 | 23 |
24 |
25 | 26 |
27 |
28 | 2 | 12 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

Not Found

5 |
6 | 7 |
8 |
9 |

Not Found

10 |
11 | 12 |

お探しのページは見つかりませんでした。

13 | 14 |
15 | 16 | '前へ', 18 | 'next_text' => '次へ', 19 | ) ); ?> 20 | 21 |
22 | 23 | 24 | 25 |
26 | 27 | 2 | > 3 | 4 | 5 | 6 | 7 | 8 | 9 | > 10 | 11 | 29 | -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 |
11 | 12 | 13 |
14 |
15 |
16 |

17 |
18 | 19 |
20 | 21 |
22 | 23 | 29 | 30 | '前の記事:%title', 32 | 'next_text' => '次の記事:%title', 33 | ) ); ?> 34 |
35 |
36 | 37 | 40 | 41 |
42 | 43 | 44 | 45 |
46 | 47 | 48 | 49 | 2 | 3 |
4 |
5 |
6 |

Blog

7 |
8 | 9 | 10 | 11 |
    12 | 13 | 14 | 15 | 16 | 17 |
  • 18 |
    19 | 20 | 21 |

    22 | 23 |
    24 |
    25 |

    26 |

    27 |

    28 |
    29 |
  • 30 | 31 | 32 | 33 |
34 | 35 | 36 | 37 |

投稿がありません。

38 | 39 | 40 | 41 |
42 | 43 | '前へ', 45 | 'next_text' => '次へ', 46 | ) ); ?> 47 | 48 |
49 | 50 | 51 | 52 |
53 | 54 | 'Global Menu', 18 | ) ); 19 | 20 | add_theme_support( 'html5', array( 21 | 'comment-form', 22 | 'comment-list', 23 | ) ); 24 | } 25 | add_action( 'after_setup_theme', 'easiestwp_setup' ); 26 | 27 | function easiestwp_widgets_init() { 28 | register_sidebar( array( 29 | 'name' => 'Sidebar', 30 | 'id' => 'sidebar', 31 | ) ); 32 | 33 | register_sidebar( array( 34 | 'name' => 'Footer', 35 | 'id' => 'footer', 36 | ) ); 37 | } 38 | add_action( 'widgets_init', 'easiestwp_widgets_init' ); 39 | 40 | function easiestwp_customize_register( $wp_customize ) { 41 | $wp_customize->add_section( 'theme_options', array( 42 | 'title' => 'Theme Options', 43 | 'priority' => 130, 44 | ) ); 45 | 46 | for ( $i = 1; $i <= 5; $i++ ) { 47 | $wp_customize->add_setting( 'front_page_content_' . $i, array( 48 | 'default' => false, 49 | 'sanitize_callback' => 'absint', 50 | ) ); 51 | 52 | $wp_customize->add_control( 'front_page_content_' . $i, array( 53 | 'label' => 'Front Page Content ' . $i, 54 | 'section' => 'theme_options', 55 | 'type' => 'dropdown-pages', 56 | 'allow_addition' => true, 57 | ) ); 58 | } 59 | } 60 | add_action( 'customize_register', 'easiestwp_customize_register' ); 61 | 62 | function easiestwp_front_page_template( $template ) { 63 | return is_home() ? '' : $template; 64 | } 65 | add_filter( 'frontpage_template', 'easiestwp_front_page_template' ); 66 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |

5 |
6 | 7 |
8 |
9 |

10 |
11 | 12 | 13 | 14 |
    15 | 16 | 17 | 18 | 19 | 20 |
  • 21 |
    22 | 23 | 24 |

    25 | 26 |
    27 |
    28 |

    29 |

    30 |

    31 |
    32 |
  • 33 | 34 | 35 | 36 |
37 | 38 | 39 | 40 |

投稿がありません。

41 | 42 | 43 | 44 |
45 | 46 | '前へ', 48 | 'next_text' => '次へ', 49 | ) ); ?> 50 | 51 |
52 | 53 | 54 | 55 |
56 | 57 | 2 | 3 |
4 |

」の検索結果

5 |
6 | 7 |
8 |
9 |

」の検索結果

10 |
11 | 12 | 13 | 14 |
    15 | 16 | 17 | 18 | 19 | 20 |
  • 21 |
    22 | 23 | 24 |

    25 | 26 |
    27 |
    28 |

    29 |

    30 |

    31 |
    32 |
  • 33 | 34 | 35 | 36 |
37 | 38 | 39 | 40 |

何も見つかりませんでした。

41 | 42 | 43 | 44 |
45 | 46 | '前へ', 48 | 'next_text' => '次へ', 49 | ) ); ?> 50 | 51 |
52 | 53 | 54 | 55 |
56 | 57 | 2 | 3 |
4 |
5 |
6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 |

17 |
18 | 19 | 24 | 25 | 5, 28 | 'post_status' => 'publish', 29 | 'no_found_rows' => true, 30 | ) ); 31 | ?> 32 | 33 | have_posts() ) : ?> 34 | 35 |
    36 | 37 | have_posts() ) : ?> 38 | 39 | the_post(); ?> 40 | 41 |
  • 42 |
    43 | 44 | 45 |

    46 | 47 |
    48 |
    49 |

    50 |

    51 |

    52 |
    53 |
  • 54 | 55 | 56 | 57 |
58 | 59 | 60 | 61 |

投稿がありません。

62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 |
72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | '前へ', 81 | 'next_text' => '次へ', 82 | ) ); ?> 83 | 84 |
85 | 86 | 87 | 88 |
89 | 90 | .box-generic:first-child { 707 | margin-top: 0; 708 | } 709 | 710 | .box-heading, 711 | .widgettitle { 712 | display: inline-block; 713 | min-width: 160px; 714 | margin: 0; 715 | padding: 0 30px; 716 | border-radius: 20px 0 0 0; 717 | background-color: #E0E0E0; 718 | color: #707070; 719 | line-height: 1.5; 720 | } 721 | 722 | .box-heading.box-heading-main-col { 723 | font-size: 28px; 724 | } 725 | 726 | .widgettitle { 727 | font-size: 24px; 728 | } 729 | 730 | .box-heading.box-heading-article { 731 | padding-top: 10px; 732 | padding-bottom: 10px; 733 | font-size: 28px; 734 | font-weight: normal; 735 | 736 | } 737 | 738 | .box-content + .box-heading { 739 | margin-top: 30px; 740 | } 741 | 742 | .box-content, 743 | .searchform > div, 744 | .calendar_wrap, 745 | .tagcloud, 746 | .widget ul { 747 | padding: 30px; 748 | background-color: #FFF; 749 | } 750 | 751 | .box-content.radius-tl { 752 | border-radius: 20px 0 0 0; 753 | } 754 | 755 | .box-content.radius-tr { 756 | border-radius: 0 20px 0 0; 757 | } 758 | 759 | .box-content.radius-bl { 760 | border-radius: 0 0 0 20px; 761 | } 762 | 763 | .box-content.radius-br, 764 | .widgettitle + .calendar_wrap, 765 | .widgettitle + .tagcloud, 766 | .widgettitle + .searchform > div, 767 | .widget .widgettitle + ul { 768 | border-radius: 0 0 20px 0; 769 | } 770 | 771 | .searchform > div, 772 | .calendar_wrap, 773 | .widget ul { 774 | border-radius: 20px 0 20px 0; 775 | } 776 | 777 | .box-content > *:first-child, 778 | .widget_search, 779 | .widget ul > *:first-child { 780 | margin: 0; 781 | } 782 | 783 | .archive { 784 | padding: 0; 785 | list-style: none; 786 | } 787 | 788 | .item-archive { 789 | margin-top: 30px; 790 | position: relative; 791 | } 792 | 793 | .item-archive:first-child { 794 | margin-top: 0; 795 | } 796 | 797 | .item-archive:after { 798 | content: ""; 799 | display: block; 800 | clear: both; 801 | } 802 | 803 | .time-and-thumb-archive { 804 | position: relative; 805 | float: left; 806 | z-index: 10; 807 | padding-left: 30px; 808 | color: #FFF; 809 | font-weight: bold; 810 | min-height: 130px; 811 | } 812 | 813 | .thumb-archive { 814 | margin: 0; 815 | line-height: 1; 816 | } 817 | 818 | .thumb-archive img { 819 | vertical-align: top; 820 | border-radius: 0 0 20px 0; 821 | margin-right: 20px; 822 | } 823 | 824 | .pub-date { 825 | position: absolute; 826 | left: 0; 827 | bottom: 0; 828 | display: block; 829 | width: 116px; 830 | height: 16px; 831 | padding: 7px; 832 | line-height: 16px; 833 | background-color: #707070; 834 | transform: rotate(270deg); 835 | transform-origin: 15px 15px; 836 | font-size: 10px; 837 | } 838 | 839 | .pub-date:before { 840 | content: url(images/icon-clock.png); 841 | margin-right: 5px; 842 | vertical-align: top; 843 | } 844 | 845 | .data-archive { 846 | width: 100%; 847 | min-height: 130px; 848 | position: relative; 849 | z-index: 0; 850 | } 851 | 852 | .list-categories-archive { 853 | margin: 0; 854 | padding-left: 50px; 855 | background-color: #E0E0E0; 856 | line-height: 28px; 857 | } 858 | 859 | .title-archive { 860 | margin: 0; 861 | padding: 10px 0 10px 50px; 862 | line-height: 1.4; 863 | font-size: 21px; 864 | font-weight: normal; 865 | min-height: 58px; 866 | } 867 | 868 | .list-tags-archive { 869 | bottom: 0; 870 | margin: 0; 871 | padding-left: 50px; 872 | padding-right: 20px; 873 | border-radius: 0 0 20px 0; 874 | background-color: #CBCBCB; 875 | color: #707070; 876 | font-size: 14px; 877 | line-height: 24px; 878 | min-height: 24px; 879 | } 880 | 881 | .list-tags-archive a { 882 | display: inline-block; 883 | } 884 | 885 | .nav-to-archives { 886 | margin-top: 50px; 887 | } 888 | 889 | .nav-to-archives a { 890 | display: block; 891 | margin-right: -30px; 892 | padding: 10px 20px; 893 | background-color: #707070; 894 | text-align: right; 895 | color: #FFF; 896 | font-size: 18px; 897 | font-weight: bold; 898 | } 899 | 900 | .nav-to-archives a:hover { 901 | background-color: #CBCBCB; 902 | text-decoration: none; 903 | } 904 | 905 | 906 | .pagination .nav-links { 907 | margin-top: 50px; 908 | text-align: center; 909 | } 910 | 911 | .pagination .nav-links a, 912 | .pagination .nav-links span { 913 | color: #FFF; 914 | font-weight: bold; 915 | padding: 0.5em; 916 | } 917 | 918 | .pagination .nav-links .current, 919 | .pagination .nav-links .dots { 920 | color: #95989A; 921 | } 922 | 923 | .arrow { 924 | margin: 0 10px; 925 | vertical-align: middle; 926 | } 927 | 928 | .reply:before { 929 | content: url(images/icon-reply.png); 930 | } 931 | 932 | .meta{ 933 | display: inline-block; 934 | margin-right: 2em; 935 | } 936 | 937 | 938 | 939 | @media screen and (max-width: 63.9375em) { 940 | 941 | .list-tags-archive { 942 | position: static; 943 | width: auto; 944 | padding-left: 130px; 945 | padding-right: 0; 946 | background-color: transparent; 947 | color: #707070; 948 | font-size: 14px; 949 | } 950 | 951 | .title-archive { 952 | margin: 0; 953 | padding-bottom: 10px; 954 | line-height: 1.4; 955 | font-weight: normal; 956 | } 957 | 958 | } 959 | 960 | @media screen and (max-width: 39.9375em) { 961 | 962 | .box-heading, 963 | .widgettitle { 964 | padding: 30px 20px; 965 | } 966 | 967 | .box-content, 968 | .widget_search, 969 | .widget ul { 970 | padding: 30px 20px; 971 | } 972 | 973 | .time-and-thumb-archive { 974 | padding-left: 0; 975 | } 976 | 977 | .pub-date { 978 | position: static; 979 | left: 0; 980 | bottom: 0; 981 | display: block; 982 | width: 106px; 983 | height: auto; 984 | padding: 7px; 985 | line-height: 1; 986 | background-color: #707070; 987 | transform: rotate(0deg); 988 | font-size: 13px; 989 | } 990 | 991 | .list-categories-archive { 992 | margin: 0; 993 | padding-left: 130px; 994 | } 995 | 996 | .title-archive { 997 | margin: 0; 998 | padding: 10px 0 10px 130px; 999 | line-height: 1.4; 1000 | font-size: 18px; 1001 | font-weight: normal; 1002 | } 1003 | 1004 | .thumb-archive img { 1005 | width: 120px; 1006 | height: auto; 1007 | } 1008 | 1009 | .list-tags-archive { 1010 | position: static; 1011 | width: auto; 1012 | padding-left: 130px; 1013 | padding-right: 0; 1014 | background-color: transparent; 1015 | color: #707070; 1016 | font-size: 14px; 1017 | } 1018 | 1019 | } 1020 | 1021 | 1022 | /*======================================================= 1023 | header and global-nav 1024 | =======================================================*/ 1025 | 1026 | .header-area { 1027 | min-height: 110px; 1028 | background-color: #707070; 1029 | position: relative; 1030 | display: flex; 1031 | flex-flow: row nowrap; 1032 | justify-content: space-between; 1033 | align-items: flex-start; 1034 | } 1035 | 1036 | .panel-site-title { 1037 | position: relative; 1038 | z-index: 1; 1039 | padding: 40px 0 0 40px; 1040 | background-color: #E0E0E0; 1041 | border-radius: 0 0 20px 0; 1042 | text-align: center; 1043 | font-feature-settings : "palt"; 1044 | margin-bottom: -10px; 1045 | } 1046 | 1047 | .panel-site-title:before { 1048 | display: block; 1049 | width: 100%; 1050 | height: 100%; 1051 | content: ""; 1052 | position: absolute; 1053 | top: 20px; 1054 | left: 30px; 1055 | background-color: #E0E0E0; 1056 | border-radius: 0 0 20px 0; 1057 | z-index: -1; 1058 | } 1059 | 1060 | .site-title { 1061 | margin: 0 0 8px 0; 1062 | letter-spacing: -2px; 1063 | font-size: 46px; 1064 | line-height: 54px; 1065 | } 1066 | 1067 | .site-title a { 1068 | color: #95989A; 1069 | } 1070 | 1071 | .site-title a:hover { 1072 | color: #707070; 1073 | text-decoration: none; 1074 | } 1075 | 1076 | .site-subtitle { 1077 | margin: 0; 1078 | line-height: 1.4; 1079 | font-size: 16px; 1080 | } 1081 | 1082 | .global-nav { 1083 | display: flex; 1084 | flex-flow: row wrap; 1085 | justify-content: flex-end; 1086 | margin-left: 60px; 1087 | } 1088 | 1089 | .global-nav ul { 1090 | display: flex; 1091 | flex-flow: row wrap; 1092 | justify-content: flex-end; 1093 | list-style: none; 1094 | margin: 0; 1095 | padding: 0; 1096 | } 1097 | 1098 | .global-nav ul li { 1099 | font-size: 18px; 1100 | font-weight: bold; 1101 | margin-left: -15px; 1102 | } 1103 | 1104 | .global-nav ul li a { 1105 | border-bottom: 5px solid #E0E0E0; 1106 | color: #FFF; 1107 | display: block; 1108 | line-height: 30px; 1109 | padding: 40px 15px; 1110 | padding-right: 30px; 1111 | } 1112 | 1113 | .global-nav ul li.current-menu-item a { 1114 | border-bottom-color: #EBFF00; 1115 | } 1116 | 1117 | .global-nav ul li a:hover { 1118 | color: #EBFF00; 1119 | text-decoration: none; 1120 | } 1121 | 1122 | .item-global-nav-en { 1123 | display: block; 1124 | margin-top: 5px; 1125 | transform:rotate(355deg); 1126 | font-size: 16px; 1127 | font-weight: normal; 1128 | color: #CBCBCB; 1129 | } 1130 | 1131 | .hero { 1132 | background-image: url(images/bg-eyecatch01.jpg); 1133 | background-position: center center; 1134 | background-repeat: no-repeat; 1135 | background-size: cover; 1136 | border-bottom-right-radius: 30px; 1137 | } 1138 | 1139 | .home .hero { 1140 | height: 530px; 1141 | } 1142 | 1143 | .hero.eyecatch { 1144 | background-image: none; 1145 | overflow: hidden; 1146 | text-align: center; 1147 | } 1148 | 1149 | .hero.eyecatch img { 1150 | border-bottom-right-radius: 30px; 1151 | max-height: 630px; 1152 | vertical-align: top; 1153 | width: auto; 1154 | } 1155 | 1156 | .page-title { 1157 | width: 100%; 1158 | padding-top:35px; 1159 | height: 135px; 1160 | background-color: #FFF; 1161 | background-image: url(images/bg-eyecatch01.jpg); 1162 | background-position: center center; 1163 | background-repeat: no-repeat; 1164 | background-size: cover; 1165 | color: #707070; 1166 | text-align: center; 1167 | } 1168 | 1169 | @media screen and (max-width: 63.9375em) { 1170 | 1171 | .header-area { 1172 | min-height: 70px; 1173 | background-color: #707070; 1174 | } 1175 | 1176 | .hero { 1177 | height: 300px; 1178 | } 1179 | 1180 | .hero.eyecatch img { 1181 | max-height: 300px; 1182 | } 1183 | 1184 | .site-title { 1185 | font-size: 32px; 1186 | letter-spacing: -2px; 1187 | line-height: 1; 1188 | } 1189 | 1190 | .site-subtitle { 1191 | margin: 0; 1192 | font-size: 13px; 1193 | } 1194 | 1195 | .panel-site-title { 1196 | max-width: 250px; 1197 | padding: 30px 0 10px 20px; 1198 | } 1199 | 1200 | .panel-site-title:before { 1201 | top: 10px; 1202 | left: 15px; 1203 | } 1204 | 1205 | .global-nav ul li { 1206 | display: inline-block; 1207 | margin-right: 10px; 1208 | } 1209 | 1210 | .global-nav ul:before { 1211 | top: 25px; 1212 | } 1213 | 1214 | 1215 | .item-global-nav { 1216 | font-size: 14px; 1217 | } 1218 | 1219 | .item-global-nav-en { 1220 | font-size: 12px; 1221 | } 1222 | 1223 | } 1224 | 1225 | @media screen and (max-width: 39.9375em) { 1226 | 1227 | .header-area { 1228 | min-height: auto; 1229 | padding: 10px 0; 1230 | background-color: #707070; 1231 | } 1232 | 1233 | .panel-site-title { 1234 | position: static; 1235 | width: 100%; 1236 | max-width: 100%; 1237 | padding: 30px 0; 1238 | } 1239 | 1240 | .panel-site-title:before { 1241 | display: none; 1242 | } 1243 | 1244 | .global-nav ul { 1245 | margin: 0; 1246 | padding: 0; 1247 | padding-top: 0; 1248 | text-align: center; 1249 | } 1250 | 1251 | .global-nav ul li { 1252 | display: inline-block; 1253 | margin-right: 10px; 1254 | } 1255 | 1256 | .global-nav ul:before { 1257 | border-bottom: none; 1258 | } 1259 | 1260 | .item-global-nav { 1261 | font-size: 13px; 1262 | } 1263 | 1264 | .item-global-nav-en { 1265 | display: none; 1266 | } 1267 | 1268 | .hero { 1269 | height: 150px; 1270 | } 1271 | 1272 | .hero.eyecatch img { 1273 | max-height: 150px; 1274 | } 1275 | 1276 | .page-title { 1277 | height: 120px; 1278 | } 1279 | 1280 | } 1281 | 1282 | 1283 | 1284 | /*======================================================= 1285 | footer 1286 | =======================================================*/ 1287 | 1288 | .footer-widget-area { 1289 | width: 1140px; 1290 | margin: 20px auto 30px; 1291 | min-height: 110px; 1292 | position: relative; 1293 | } 1294 | 1295 | .footer-widgets { 1296 | display: flex; 1297 | flex-flow: row wrap; 1298 | justify-content: space-between; 1299 | align-items: stretch; 1300 | list-style: none; 1301 | margin: 0; 1302 | padding: 20px 30px; 1303 | } 1304 | 1305 | .footer-widgets > li { 1306 | width: 340px; 1307 | } 1308 | 1309 | .footer-widget .searchform > div, 1310 | .footer-widget .calendar_wrap, 1311 | .footer-widget .textwidget, 1312 | .footer-widget ul { 1313 | border-bottom: solid 6px #EBFF00; 1314 | border-bottom-right-radius: 10px; 1315 | } 1316 | 1317 | .footer-widget ul { 1318 | margin: 0; 1319 | } 1320 | 1321 | .footer-widget img { 1322 | vertical-align: top; 1323 | } 1324 | 1325 | .back-to-top { 1326 | position: absolute; 1327 | top: -20px; 1328 | right: -60px; 1329 | text-align: center; 1330 | } 1331 | 1332 | .back-to-top a { 1333 | display: block; 1334 | width: 60px; 1335 | height: 160px; 1336 | background-color: #707070; 1337 | color: #FFF; 1338 | font-size: 18px; 1339 | font-weight: bold; 1340 | } 1341 | 1342 | .copyright { 1343 | padding: 15px 0; 1344 | background-color: #707070; 1345 | text-align: center; 1346 | color: #FFF; 1347 | font-size: 14px; 1348 | } 1349 | 1350 | .copyright p { 1351 | margin: 0; 1352 | } 1353 | 1354 | @media screen and (max-width: 63.9375em) { 1355 | 1356 | .footer-widget-area { 1357 | width: 98%; 1358 | padding: 0 1%; 1359 | } 1360 | 1361 | } 1362 | 1363 | /*======================================================= 1364 | sidebar 1365 | =======================================================*/ 1366 | 1367 | .widget ul { 1368 | list-style: none; 1369 | margin: 0; 1370 | } 1371 | 1372 | .widget ul a { 1373 | color: #95989A; 1374 | } 1375 | 1376 | .widget { 1377 | margin-bottom: 20px; 1378 | } 1379 | 1380 | .widget_calendar table { 1381 | width: 100%; 1382 | text-align: center; 1383 | } 1384 | 1385 | .widget_calendar table #prev { 1386 | text-align: left; 1387 | } 1388 | 1389 | .widget_calendar table #next { 1390 | text-align: right; 1391 | } 1392 | 1393 | /*======================================================= 1394 | single 1395 | =======================================================*/ 1396 | 1397 | .entry > *:first-child { 1398 | margin-top: 0; 1399 | } 1400 | 1401 | /*======================================================= 1402 | comment 1403 | =======================================================*/ 1404 | 1405 | .comment-list, 1406 | .comment-list ul { 1407 | padding: 0; 1408 | list-style: none; 1409 | } 1410 | 1411 | .comment-list .comment { 1412 | min-height: 150px; 1413 | } 1414 | 1415 | .comment-body { 1416 | font-size: 14px; 1417 | margin-bottom: 30px; 1418 | overflow: hidden; 1419 | } 1420 | 1421 | .comment-meta { 1422 | position: relative; 1423 | } 1424 | 1425 | .comment-author { 1426 | margin: 0; 1427 | background-color: #E0E0E0; 1428 | } 1429 | 1430 | .comment-author .avatar { 1431 | border-bottom-right-radius: 20px; 1432 | float: left; 1433 | margin-right: 20px; 1434 | } 1435 | 1436 | .comment-metadata { 1437 | margin-top: 5px; 1438 | } 1439 | 1440 | .comment-metadata .edit-link:before { 1441 | content: "| "; 1442 | } 1443 | 1444 | .comment-metadata, 1445 | .comment-content { 1446 | overflow: hidden; 1447 | } 1448 | 1449 | .comment-list .children { 1450 | margin-left: 20px; 1451 | } 1452 | 1453 | .reply { 1454 | color: #707070; 1455 | font-size: 14px; 1456 | margin: 0; 1457 | padding-right: 20px; 1458 | overflow: hidden; 1459 | text-align: right; 1460 | } 1461 | 1462 | .comment-reply-title { 1463 | margin-top: 0; 1464 | } 1465 | 1466 | .comment-form-comment label { 1467 | display: block; 1468 | } 1469 | 1470 | @media screen and (max-width: 39.9375em) { 1471 | 1472 | .time-and-thumb-comment { 1473 | padding-left: 0; 1474 | } 1475 | 1476 | .comment-author { 1477 | margin: 0; 1478 | padding-left: 130px; 1479 | } 1480 | 1481 | .comment-body { 1482 | margin: 0; 1483 | padding: 10px 0 10px 130px; 1484 | line-height: 1.4; 1485 | } 1486 | 1487 | .thumb-comment img { 1488 | width: 120px; 1489 | height: auto; 1490 | } 1491 | 1492 | } 1493 | 1494 | /*======================================================= 1495 | profile 1496 | =======================================================*/ 1497 | 1498 | .profile-header { 1499 | margin-top: -100px; 1500 | text-align: center; 1501 | } 1502 | 1503 | .pic-profile { 1504 | margin: 0; 1505 | } 1506 | .profile-header h2 { 1507 | margin-top: 0; 1508 | } 1509 | 1510 | /*======================================================= 1511 | contact 1512 | =======================================================*/ 1513 | 1514 | .form-unit { 1515 | margin: 30px 0; 1516 | } 1517 | 1518 | .contact-form .text-input, 1519 | .contact-form textarea { 1520 | font-size: 20px; 1521 | width: 100%; 1522 | height: 40px; 1523 | } 1524 | 1525 | .contact-form textarea { 1526 | width: 100%; 1527 | min-height: 120px; 1528 | } 1529 | 1530 | .form-unit.submit { 1531 | text-align: center; 1532 | } 1533 | 1534 | .button-submit { 1535 | padding: 20px 50px; 1536 | border: none; 1537 | background-color: #707070; 1538 | color: #FFF; 1539 | text-align: center; 1540 | cursor: pointer; 1541 | } 1542 | 1543 | .button-submit:hover { 1544 | background-color: #E0E0E0; 1545 | color: #000; 1546 | } 1547 | --------------------------------------------------------------------------------