-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
96 lines (79 loc) · 1.44 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
89
90
91
92
93
94
95
96
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Luckiest Guy';
text-align: center;
margin-top: 0.5rem;
}
h1{
font-size: 3rem;
}
h3{
font-size: 2rem;
}
a{
position: absolute;
top:6rem;
font-size: 2rem;
left: 50%;
transform: translate(-50%);
color: black;
}
a:hover{
opacity: 0.7;
}
body {
background-color: #dcdcdc;
}
.container{
position: absolute;
left: 50%;
transform: translate(-50%);
width: 600px;
height: 520px;
top: 9rem;
background: rgb(87, 168, 255);
border: 2px solid black;
padding: .5rem;
box-shadow: 5px 10px #888888;
}
.container table tr td{
width: 90px;
height: 80px;
border: 2px solid black;
border-radius: 50%;
background-color: white;
cursor: pointer;
}
.reset{
position: absolute;
top:32rem;
left: 50%;
transform: translate(-50%);
width: 100px;
height: 30px;
text-align: center;
padding: 0.3rem;
border: 1px solid black;
background: #ffffff;
cursor: pointer;
box-shadow: 6px 5px #888888;
transition: .5s;
}
.reset:hover{
transition: 0.8s;
box-shadow: 0px 0px #888888;
}
@media screen and (max-width: 600px){
.container{
position: absolute;
left: 50%;
transform: translate(-50%);
width: 90%;
height: 520px;
top: 9rem;
border: 2px solid black;
padding: .5rem;
}
}