-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallergy.css
153 lines (153 loc) · 3.24 KB
/
allergy.css
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* CSS Document */
main {
font-family: vdl-logomarujr-pop-futoline, sans-serif;
font-style: normal;
font-weight: 400;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 62.5%; /*rem算出をしやすくするために*/
}
.btn, a.btn, button.btn {
font-size: 1.6rem;
font-weight: 700;
line-height: 1.5;
position: relative;
display: inline-block;
padding: 1rem 4rem;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
letter-spacing: 0.1em;
color: #212529;
border-radius: 0.5rem;
}
@media screen and (max-width:1024px) {
main {
position: absolute;
top: 10vh;
left: 0px;
height: 420vh;
width: 100vw;
background-color: floralwhite;
}
.MainImg {
position: absolute;
width: 100vw;
height: 30vh;
background: url("human.png") center no-repeat fixed;
background-color: rgba(255, 255, 255, 0.6);
background-blend-mode: lighten;
background-size: 150vh;
}
/*
.marquee {
display: flex;
white-space: nowrap;
overflow: hidden;
gap: 1rem;
font-size: 2rem;
z-index:1;
}
.marquee_r {
display: flex;
white-space: nowrap;
overflow: hidden;
gap: 1rem;
font-size: 2rem;
z-index:1;
}
.marquee-inner1 {
animation: marquee 30s linear infinite;
}
.marquee-inner2 {
animation: marquee_r 30s linear infinite;
}
.marquee-inner3 {
animation: marquee 30s linear infinite;
}
.marquee-inner4 {
animation: marquee_r 30s linear infinite;
}
.marquee-inner5 {
animation: marquee 30s linear infinite;
}
@keyframes marquee {
0%{translate:0;}
100%{translate:calc(-100% - 1rem);}
}
@keyframes marquee_r {
100%{translate:0;}
0%{translate:calc(-100% - 1rem);}
}*/
.TitleScale {
position:relative;
top: 7vh;
left: 20vw;
width: 60vw;
height: 10vh;
z-index: 2;
background-color: floralwhite;
box-shadow: 0 0 0 4px khaki;
box-sizing: border-box;
}
.Title {
position: absolute;
font-family: a-otf-ud-shin-go-pr6n, sans-serif;
font-style: normal;
font-weight: 300;
font-size: 20px;
text-align: center;
margin: 3vh 8vw;
}
.ExText {
position:relative;
top:20vh;
font-family: a-otf-ud-shin-go-pr6n, sans-serif;
font-style: normal;
font-weight: 300;
font-size: 20px;
text-align: center;
margin: 12vh 0vh;
}
.Table{
margin:10vh 5vw;
width:90vw;
}
button.btn--circle {
border-radius: 50%;
line-height: 100px;
width: 100px;
height: 100px;
padding: 0;
-webkit-box-shadow: 0 5px 0 #e6d900;
box-shadow: 0 5px 0 #e6d900;
}
button.btn--circle:hover {
-webkit-transform: translate(0, 3px);
transform: translate(0, 3px);
-webkit-box-shadow: 0 2px 0 #e6d900;
box-shadow: 0 2px 0 #e6d900;
}
button.btn-border {
border: 1px solid #000;
border-radius: 0;
background: floralwhite;
}
button.btn-border:hover {
color: #fff;
background: #000;
}
}