質問編集履歴
2
コードの乱れを整理
test
CHANGED
File without changes
|
test
CHANGED
@@ -1014,7 +1014,9 @@
|
|
1014
1014
|
|
1015
1015
|
}
|
1016
1016
|
|
1017
|
-
/*# sourceMappingURL=style.css.map */
|
1017
|
+
/*# sourceMappingURL=style.css.map */
|
1018
|
+
|
1019
|
+
```
|
1018
1020
|
|
1019
1021
|
|
1020
1022
|
|
1
style.cssの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -558,6 +558,466 @@
|
|
558
558
|
|
559
559
|
|
560
560
|
|
561
|
+
```css
|
562
|
+
|
563
|
+
//style.css
|
564
|
+
|
565
|
+
|
566
|
+
|
567
|
+
@charset "UTF-8";
|
568
|
+
|
569
|
+
/*
|
570
|
+
|
571
|
+
html5doctor.com Reset Stylesheet
|
572
|
+
|
573
|
+
v1.6.1
|
574
|
+
|
575
|
+
Last Updated: 2010-09-17
|
576
|
+
|
577
|
+
Author: Richard Clark - http://richclarkdesign.com
|
578
|
+
|
579
|
+
Twitter: @rich_clark
|
580
|
+
|
581
|
+
*/
|
582
|
+
|
583
|
+
html,
|
584
|
+
|
585
|
+
body,
|
586
|
+
|
587
|
+
div,
|
588
|
+
|
589
|
+
span,
|
590
|
+
|
591
|
+
object,
|
592
|
+
|
593
|
+
iframe,
|
594
|
+
|
595
|
+
h1,
|
596
|
+
|
597
|
+
h2,
|
598
|
+
|
599
|
+
h3,
|
600
|
+
|
601
|
+
h4,
|
602
|
+
|
603
|
+
h5,
|
604
|
+
|
605
|
+
h6,
|
606
|
+
|
607
|
+
p,
|
608
|
+
|
609
|
+
blockquote,
|
610
|
+
|
611
|
+
pre,
|
612
|
+
|
613
|
+
abbr,
|
614
|
+
|
615
|
+
address,
|
616
|
+
|
617
|
+
cite,
|
618
|
+
|
619
|
+
code,
|
620
|
+
|
621
|
+
del,
|
622
|
+
|
623
|
+
dfn,
|
624
|
+
|
625
|
+
em,
|
626
|
+
|
627
|
+
img,
|
628
|
+
|
629
|
+
ins,
|
630
|
+
|
631
|
+
kbd,
|
632
|
+
|
633
|
+
q,
|
634
|
+
|
635
|
+
samp,
|
636
|
+
|
637
|
+
small,
|
638
|
+
|
639
|
+
strong,
|
640
|
+
|
641
|
+
sub,
|
642
|
+
|
643
|
+
sup,
|
644
|
+
|
645
|
+
var,
|
646
|
+
|
647
|
+
b,
|
648
|
+
|
649
|
+
i,
|
650
|
+
|
651
|
+
dl,
|
652
|
+
|
653
|
+
dt,
|
654
|
+
|
655
|
+
dd,
|
656
|
+
|
657
|
+
ol,
|
658
|
+
|
659
|
+
ul,
|
660
|
+
|
661
|
+
li,
|
662
|
+
|
663
|
+
fieldset,
|
664
|
+
|
665
|
+
form,
|
666
|
+
|
667
|
+
label,
|
668
|
+
|
669
|
+
legend,
|
670
|
+
|
671
|
+
table,
|
672
|
+
|
673
|
+
caption,
|
674
|
+
|
675
|
+
tbody,
|
676
|
+
|
677
|
+
tfoot,
|
678
|
+
|
679
|
+
thead,
|
680
|
+
|
681
|
+
tr,
|
682
|
+
|
683
|
+
th,
|
684
|
+
|
685
|
+
td,
|
686
|
+
|
687
|
+
article,
|
688
|
+
|
689
|
+
aside,
|
690
|
+
|
691
|
+
canvas,
|
692
|
+
|
693
|
+
details,
|
694
|
+
|
695
|
+
figcaption,
|
696
|
+
|
697
|
+
figure,
|
698
|
+
|
699
|
+
footer,
|
700
|
+
|
701
|
+
header,
|
702
|
+
|
703
|
+
hgroup,
|
704
|
+
|
705
|
+
menu,
|
706
|
+
|
707
|
+
nav,
|
708
|
+
|
709
|
+
section,
|
710
|
+
|
711
|
+
summary,
|
712
|
+
|
713
|
+
time,
|
714
|
+
|
715
|
+
mark,
|
716
|
+
|
717
|
+
audio,
|
718
|
+
|
719
|
+
video {
|
720
|
+
|
721
|
+
margin: 0;
|
722
|
+
|
723
|
+
padding: 0;
|
724
|
+
|
725
|
+
border: 0;
|
726
|
+
|
727
|
+
outline: 0;
|
728
|
+
|
729
|
+
vertical-align: baseline;
|
730
|
+
|
731
|
+
background: transparent;
|
732
|
+
|
733
|
+
}
|
734
|
+
|
735
|
+
|
736
|
+
|
737
|
+
body {
|
738
|
+
|
739
|
+
line-height: 1;
|
740
|
+
|
741
|
+
}
|
742
|
+
|
743
|
+
|
744
|
+
|
745
|
+
article,
|
746
|
+
|
747
|
+
aside,
|
748
|
+
|
749
|
+
details,
|
750
|
+
|
751
|
+
figcaption,
|
752
|
+
|
753
|
+
figure,
|
754
|
+
|
755
|
+
footer,
|
756
|
+
|
757
|
+
header,
|
758
|
+
|
759
|
+
hgroup,
|
760
|
+
|
761
|
+
menu,
|
762
|
+
|
763
|
+
nav,
|
764
|
+
|
765
|
+
section {
|
766
|
+
|
767
|
+
display: block;
|
768
|
+
|
769
|
+
}
|
770
|
+
|
771
|
+
|
772
|
+
|
773
|
+
nav ul {
|
774
|
+
|
775
|
+
list-style: none;
|
776
|
+
|
777
|
+
}
|
778
|
+
|
779
|
+
|
780
|
+
|
781
|
+
blockquote,
|
782
|
+
|
783
|
+
q {
|
784
|
+
|
785
|
+
quotes: none;
|
786
|
+
|
787
|
+
}
|
788
|
+
|
789
|
+
|
790
|
+
|
791
|
+
blockquote:before,
|
792
|
+
|
793
|
+
blockquote:after,
|
794
|
+
|
795
|
+
q:before,
|
796
|
+
|
797
|
+
q:after {
|
798
|
+
|
799
|
+
content: '';
|
800
|
+
|
801
|
+
content: none;
|
802
|
+
|
803
|
+
}
|
804
|
+
|
805
|
+
|
806
|
+
|
807
|
+
a {
|
808
|
+
|
809
|
+
margin: 0;
|
810
|
+
|
811
|
+
padding: 0;
|
812
|
+
|
813
|
+
font-size: 100%;
|
814
|
+
|
815
|
+
vertical-align: baseline;
|
816
|
+
|
817
|
+
background: transparent;
|
818
|
+
|
819
|
+
}
|
820
|
+
|
821
|
+
|
822
|
+
|
823
|
+
/* change colours to suit your needs */
|
824
|
+
|
825
|
+
ins {
|
826
|
+
|
827
|
+
background-color: #ff9;
|
828
|
+
|
829
|
+
color: #000;
|
830
|
+
|
831
|
+
text-decoration: none;
|
832
|
+
|
833
|
+
}
|
834
|
+
|
835
|
+
|
836
|
+
|
837
|
+
/* change colours to suit your needs */
|
838
|
+
|
839
|
+
mark {
|
840
|
+
|
841
|
+
background-color: #ff9;
|
842
|
+
|
843
|
+
color: #000;
|
844
|
+
|
845
|
+
font-style: italic;
|
846
|
+
|
847
|
+
font-weight: bold;
|
848
|
+
|
849
|
+
}
|
850
|
+
|
851
|
+
|
852
|
+
|
853
|
+
del {
|
854
|
+
|
855
|
+
text-decoration: line-through;
|
856
|
+
|
857
|
+
}
|
858
|
+
|
859
|
+
|
860
|
+
|
861
|
+
abbr[title],
|
862
|
+
|
863
|
+
dfn[title] {
|
864
|
+
|
865
|
+
border-bottom: 1px dotted;
|
866
|
+
|
867
|
+
cursor: help;
|
868
|
+
|
869
|
+
}
|
870
|
+
|
871
|
+
|
872
|
+
|
873
|
+
table {
|
874
|
+
|
875
|
+
border-collapse: collapse;
|
876
|
+
|
877
|
+
border-spacing: 0;
|
878
|
+
|
879
|
+
}
|
880
|
+
|
881
|
+
|
882
|
+
|
883
|
+
/* change border colour to suit your needs */
|
884
|
+
|
885
|
+
hr {
|
886
|
+
|
887
|
+
display: block;
|
888
|
+
|
889
|
+
height: 1px;
|
890
|
+
|
891
|
+
border: 0;
|
892
|
+
|
893
|
+
border-top: 1px solid #cccccc;
|
894
|
+
|
895
|
+
margin: 1em 0;
|
896
|
+
|
897
|
+
padding: 0;
|
898
|
+
|
899
|
+
}
|
900
|
+
|
901
|
+
|
902
|
+
|
903
|
+
input,
|
904
|
+
|
905
|
+
select {
|
906
|
+
|
907
|
+
vertical-align: middle;
|
908
|
+
|
909
|
+
}
|
910
|
+
|
911
|
+
|
912
|
+
|
913
|
+
html {
|
914
|
+
|
915
|
+
font-size: 62.5%;
|
916
|
+
|
917
|
+
/* -> 10px; */
|
918
|
+
|
919
|
+
overflow-x: hidden;
|
920
|
+
|
921
|
+
overflow-y: auto;
|
922
|
+
|
923
|
+
}
|
924
|
+
|
925
|
+
|
926
|
+
|
927
|
+
body {
|
928
|
+
|
929
|
+
font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
|
930
|
+
|
931
|
+
}
|
932
|
+
|
933
|
+
|
934
|
+
|
935
|
+
h1 {
|
936
|
+
|
937
|
+
font-size: 4.8rem;
|
938
|
+
|
939
|
+
font-weight: bold;
|
940
|
+
|
941
|
+
line-height: 1.4;
|
942
|
+
|
943
|
+
}
|
944
|
+
|
945
|
+
|
946
|
+
|
947
|
+
h2 {
|
948
|
+
|
949
|
+
font-size: 3.6rem;
|
950
|
+
|
951
|
+
font-weight: bold;
|
952
|
+
|
953
|
+
line-height: 1.4;
|
954
|
+
|
955
|
+
}
|
956
|
+
|
957
|
+
|
958
|
+
|
959
|
+
h3 {
|
960
|
+
|
961
|
+
font-size: 3.2rem;
|
962
|
+
|
963
|
+
font-weight: bold;
|
964
|
+
|
965
|
+
line-height: 1.7;
|
966
|
+
|
967
|
+
}
|
968
|
+
|
969
|
+
|
970
|
+
|
971
|
+
h4 {
|
972
|
+
|
973
|
+
font-size: 2.6rem;
|
974
|
+
|
975
|
+
font-weight: bold;
|
976
|
+
|
977
|
+
line-height: 1.5;
|
978
|
+
|
979
|
+
}
|
980
|
+
|
981
|
+
|
982
|
+
|
983
|
+
h5 {
|
984
|
+
|
985
|
+
font-size: 1.8rem;
|
986
|
+
|
987
|
+
font-weight: 200;
|
988
|
+
|
989
|
+
line-height: 1.7;
|
990
|
+
|
991
|
+
}
|
992
|
+
|
993
|
+
|
994
|
+
|
995
|
+
p, .p {
|
996
|
+
|
997
|
+
font-size: 1.6rem;
|
998
|
+
|
999
|
+
font-weight: 200;
|
1000
|
+
|
1001
|
+
line-height: 1.7;
|
1002
|
+
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
|
1006
|
+
|
1007
|
+
small {
|
1008
|
+
|
1009
|
+
font-size: 1.2rem;
|
1010
|
+
|
1011
|
+
font-weight: 200;
|
1012
|
+
|
1013
|
+
line-height: 1.7;
|
1014
|
+
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
/*# sourceMappingURL=style.css.map */```
|
1018
|
+
|
1019
|
+
|
1020
|
+
|
561
1021
|
```scss
|
562
1022
|
|
563
1023
|
//header.scss
|