-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
115 lines (102 loc) · 2.11 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
font-family: Arial, sans-serif;
background-color: #800000;
color: #fff;
margin: 0;
padding: 0;
text-align: center;
}
.header {
background-color: #333;
color: #F08080;
padding: 20px 0;
display: flex;
flex-direction: column;
align-items: center;
}
.button-container {
margin: 0 15px;
padding: 10px 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.tbd-button, .social-button {
margin: 0 30px;
padding: 10px 15px;
border: 2px solid #333;
border-radius: 10px;
text-decoration: none;
color: #333;
transition: background-color 0.3s ease, transform 0.3s ease-in-out;
}
.tbd-button:hover, .game-button:hover, .social-button:hover {
background-color: #333;
color: #fff;
transform: scale(1.1);
}
.social-button img, .tbd-button img{
width: 30px;
height: 30px;
margin-bottom: -10px;
}
.game-button {
display: flex;
flex-direction: column;
align-items: center;
width: 150px;
height: 150px;
margin: 10px;
border: 2px solid #333;
border-radius: 10px;
text-decoration: none;
color: #333;
text-align: center;
font-size: 14px;
transition: all 0.3s ease;
}
.game-button img {
width: 120px;
height: auto;
border-radius: 10px;
}
.container {
margin-top: 20px;
}
.calendar-container {
margin: 20px auto;
max-width: 800px;
width: 100%;
}
iframe {
width: 100%;
height: 600px;
border: none;
}
.slope-container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
.slope-embed-container {
position: relative;
padding-bottom: 60%;
height: 0;
overflow: hidden;
margin-top: 20px;
margin-bottom: 20px;
}
.slope-embed-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 15px 0;
}