-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
86 lines (76 loc) · 1.74 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
:root{
--bits-carrousel_circle-hover-transform: scale(1.05);
--bits-carrousel_column-gap: 1em;
--bits-circle_background: black;
--bits-circle_color: white;
--bits-circle_badge-width: 200px;
--bits-circle_badge-weight: 600;
--bits-circle_badge-font-size: 1.1rem;
--bits-participation-detail_background: rgba(255,255,255,0.8);
--bits-participation-detail_participation-background-hover: whitesmoke;
--bits-participant_score-background: black;
--bits-participant_score-color: white;
--bits-participation_badge-background: grey;
--bits-participation_badge-color: white;
--bits-participation_score-background: black;
--bits-participation_score-color: white;
--ui-modal_background: rgba(240,240,240,0.6);
--ui-modal_backdrop-filter: blur(16px);
--ui-modal_max-width: 600px;
--ui-modal_max-height: 90vh;
}
body{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
nav{
background: #dde1e4;
display: flex;
align-items: center;
font-size: 1.5em;
position: sticky;
top: 0;
padding: 16px;
}
nav img{
height: 2em;
margin-right: 0.5ch;
display: inline-block;
float: left;
}
nav h1{
margin: 0;
}
section,
footer{
padding: 8px 16px;
}
section>*,
footer>*{
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
}
section>h1{
font-weight: 900;
font-size: 2.3rem;
}
footer{
text-align: center;
}
#carrousel-section{
overflow-x: auto;
overflow-y: hidden;
background: #dde1e4;
padding: 16px;
}
#carrousel-section>*{
max-width: 100%;
}
#activities-section>alt-bits-participation:hover{
border-radius: 8px;
background: whitesmoke;
}