forked from SiddharthaBhattacharjee/TimePassGames
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (103 loc) · 2.27 KB
/
style.css
File metadata and controls
118 lines (103 loc) · 2.27 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*{
font-family: 'Roboto', sans-serif;
transition: 1s;
}
body{
margin: 0;
padding: 0;
background-image: url("./images/old-black-background-grunge-texture-dark-wallpaper-blackboard-chalkboard-room-wall.jpg");
background-repeat: no-repeat;
background-size: auto;
}
#header{
text-align: center;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 20px;
}
.button{
width: 120px;
height: 120px;
border: 2px solid white;
border-radius: 20px;
}
.rows{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 30px;
margin-bottom: 30px;
}
.segment{
display: flex;
flex-basis: 20%;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
}
#gamelist{
border: 4px solid white;
margin: 20px;
}
.segment:hover{
opacity: 0.7;
transform: scale(1.2);
}
.segment:hover img{
border: 0.2rem solid rgb(0, 255, 34);
}
.footerclass{
position: static;
}
h1{
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#footer{
background-color: rgb(19, 19, 19);
height: 150px;
width: 100%;
text-align: center;
padding-top: 6px;
}
.fa {
padding: 6px 20px;
font-size: 30px;
width: 50px;
height: 50px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 30%;
}
.fa:hover {
opacity: 0.7;
}
#socials{
margin-top: 10px;
display: flex;
align-items: center;
justify-content: center;
}
#end{
color: rgb(146, 146, 146);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
border-style: solid;
border-width: 2px;
border-bottom: 0;
border-right: 0;
border-left: 0;
width: 96%;
text-align: center;
align-self: center;
margin: 0 auto;
padding: 2px;
margin-top: 12px;
}
.footersec{
display: flex;
justify-content: space-evenly;
margin: auto;
color: black;
font-family: 'Ubuntu', sans-serif;
}