-
Notifications
You must be signed in to change notification settings - Fork 0
/
saikyo.css
69 lines (65 loc) · 980 Bytes
/
saikyo.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
html {
font-size: 50%;
}
video {
width:50%;
}
body {
margin-top: 20px;
margin-bottom: 20px;
margin-left: 30px;
margin-right: 30px;
}
select{
height:30px;
}
@media screen and (min-width: 768px) {
html {
font-size: 75%;
}
body {
margin-top: 30px;
margin-bottom: 30px;
margin-left: 70px;
margin-right: 70px;
}
select{
height:25px;
}
}
@media screen and (min-width: 1024px) {
html {
font-size: 100%;
}
body {
margin-top: 50px;
margin-bottom: 50px;
margin-left: 100px;
margin-right: 100px;
}
select{
height:50px;
}
}
body {
background-color: white;
color: black;
}
input {
width:50px
}
button {
width: 100px;
background-color: white;
display: inline-block;
padding: 0.3em 1em;
text-decoration: none;
color: black;
border: solid 2px black;
border-radius: 3px;
transition: .4s;
}
button:hover {
color: white;
background: black;
}