-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (89 loc) · 1.77 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (89 loc) · 1.77 KB
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
*{
padding: 0px;
border: 0px;
margin: 0px;
/* box-sizing: border-box; */
}
body {
/* background: lightgreen; */
background-image:url(http://dualmonitorswallpaper.com/wp-content/uploads/2018/02/reddit-dual-2k-wallpaper.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.container{
width: 1080px;
height: 1080px;
text-align: center;
margin: 2% auto;
background: rgba(245, 245, 220, 0.808);
border-radius: 20px;
}
.containerSub{
width: inherit;
height: inherit;
padding-left: 6%;
padding-right: 6%;
padding-top: 2%;
/*
background: black;
opacity: 0.3;
*/
}
.card{
float : left;
margin: 1%;
height: 25%;
width: 20%;
background: rgb(78, 0, 0);
border-radius: 10px;
box-shadow: 10px 10px 10px burlywood;
padding: 0;
}
.card:hover{
cursor: pointer;
box-sizing: border-box;
border: 2px solid gold;
}
.card p{
font-size: 400%;
color: azure;
}
.replay {
float : right;
background: darkcyan;
border-radius: 20px;
box-shadow: 10px 10px 10px rgba(75, 114, 3, 0.582);
margin-right: 12%;
height: 5%;
width: 25%;
padding: 0;
text-align: center;
font-size: 150%;
color: black;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.replay:hover{
cursor: pointer;
box-sizing: border-box;
border: 2px solid gold;
}
.footer{
clear: both;
text-align: left;
padding: 2%;
padding-top: 1%;
}
@media (max-width:900px) and (min-width: 542px) {
.container{
width: 720px;
height: 720px;
}
}
@media (max-width: 548px) and (min-width: 300px) {
.container{
width: 540px;
height: 540px;
}
}