-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (77 loc) · 1.34 KB
/
style.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
body {
text-align: center;
background-color: #EDEEF2;
font-family: tahoma, sans-serif;
overflow-y: hidden;
}
.btns {
position: fixed;
height: 12%;
background-color: rgba(122,136,201,0.9);
top: -1%;
width: 100%;
padding: 2%;
right:0;
left:0;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
button, input {
font-family: inherit;
border: 3px solid #EDEEF2;
background-color: inherit;
padding: 0.5%;
border-radius: 15px;
font-size: 1.2em;
color: #EDEEF2;
width: 185px;
cursor: pointer;
margin: 2% 0.5%;
}
.hidden {
display: none;
}
button:hover {
background-color: #92A3E0;
}
.chosen {
background-color: #B0BEF4;
}
.credit {
color: rgba(0, 0, 0, 0.5);
position: fixed;
bottom: 3%;
display: block;
width: 100%;
right: 0;
margin: auto;
}
.img-area {
margin: 13% auto;
}
/*.rotate {
transition-delay:0.2s;
transition: 1.2s;
transform: rotateY(180deg);
}*/
@media only screen and (max-width: 769px) {
button {
width: 40%;
border: 1.8px solid #EDEEF2;
}
.btns {
height: 18%;
display: inline-block;
vertical-align: middle;
}
.img-area {
margin: 40% auto;
}
.the-img {
width: 85%;
}
.s-btn {
width:20%;
padding: 1.5%;
/*margin-bottom: -2%;*/
}
}