-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
73 lines (64 loc) · 1.56 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
* {
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
}
body {
margin: 5px;
padding: 0px;
font-family: Arial, sans-serif;
}
a {
text-decoration: none;
color: darkblue;
}
canvas {
background-color: #181818;
}
.roundedBorder {
border-radius: 20px;
box-shadow:5px 5px 10px rgba(31, 73, 125, 0.4),0px 5px 5px rgba(31, 73, 125, 0.4);
-moz-box-shadow:5px 5px 10px rgba(31, 73, 125, 0.4),0px 5px 5px rgba(31, 73, 125, 0.4);
-webkit-box-shadow:5px 5px 10px rgba(31, 73, 125, 0.4),0px 5px 5px rgba(31, 73, 125, 0.4);
-o-box-shadow:5px 5px 10px rgba(31, 73, 125, 0.4),0px 5px 5px rgba(31, 73, 125, 0.4);
}
.popup {
width: 50%;
background-color: #f8f8ff;
padding: 10px;
margin: 0 auto;
position: absolute;
left: 25%;
}
.view {
width: 96%;
background-color: #f8f8ff;
padding: 10px;
margin: 0 auto;
position: absolute;
left: 2%;
}
.buttonStyle {
display: block;
text-align: center;
text-decoration: none;
background-color:rgb(0, 128, 128);
border-radius: 10px;
border: none;
color: white;
min-height: 40px;
font-size: 16px;
transition: all .1s ease-in-out;
outline: none;
cursor: pointer;
}
.buttonStyle:hover:enabled { transform: scale(1.07); }
.buttonStyle:disabled { opacity: 0.5; cursor: not-allowed; }
#infoBox ul { margin-top: 5px; margin-bottom: 7px; }
@media only screen and (max-width: 480px) {
.roundedBorder { border-radius: 10px; }
.popup {
width: 90%;
left: 5%;
}
}