-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompetition.css
More file actions
87 lines (87 loc) · 2.11 KB
/
Copy pathcompetition.css
File metadata and controls
87 lines (87 loc) · 2.11 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
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f3f7fa;
color: #253052;
}
header {
background: #2277ee;
color: #fff;
text-align: center;
padding: 36px 16px 22px 16px;
border-radius: 0 0 14px 14px;
margin-bottom: 30px;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 18px 10px 20px 10px;
}
.competitionIntro,
.disclaimer {
transition: max-height 0.18s, opacity 0.13s;
overflow: hidden;
}
.competitionIntro.hide,
.disclaimer.hide {
max-height: 0;
opacity: 0;
padding: 0;
margin: 0;
}
.competitionIntro,
.disclaimer {
max-height: 80px;
opacity: 1;
}
.competitionIntro {
font-size: 1.05rem;
margin-bottom: 14px;
color: #384a6a;
}
.disclaimer {
color: #c1392b;
font-size: 0.98rem;
margin-bottom: 16px;
font-style: italic;
}
.competitionBox {
background: #eaf1ff;
border-radius: 14px;
box-shadow: 0 2px 14px #2277ee17;
padding: 20px 20px 12px 20px;
margin-bottom: 18px;
}
.competitionBox iframe {
border: none;
border-radius: 16px;
box-shadow: 0 2px 12px #2277ee12;
width: 100%;
height: 600px;
background: #fff;
display: block;
}
.toggleBtn {
display: inline-block;
margin: 8px 0 16px 0;
background: #2277ee;
color: #fff;
border: none;
padding: 8px 22px;
font-size: 0.98rem;
font-family: 'Poppins', sans-serif;
border-radius: 6px;
box-shadow: 0 2px 8px #2277ee30;
cursor: pointer;
transition: background .14s;
}
.toggleBtn:hover {
background: #184c9e;
}
@media (max-width:700px) {
.container { padding: 8px 3px; }
.competitionBox { padding: 10px 6px 7px 6px; }
.competitionBox iframe { height: 350px; }
header h1 { font-size: 1.45rem; }
.toggleBtn { padding: 7px 12px; font-size: 0.93rem;}
}