-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
139 lines (126 loc) · 3.35 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: top;
height: 250vh;
background-color: white;
}
/* grosse boite qui contient les petites boites avec les cours */
.boxes-container {
display: flex;
flex-wrap: wrap; /* Wrap boxes to a new line */
max-width: 1250px; /* Set a maximum width for the container */
}
/* Deuxième style de boite utilisé pour le nombre de sessions terminées */
.boxes-container2 {
display: flex;
flex-wrap: wrap; /* Wrap boxes to a new line */
max-width: 400px; /* Set a maximum width for the container */
}
/* boites de cours qui changent de couleur */
.box {
width: 140px;
height: 117px;
background-color: white;
border: 2px solid black;
display: flex;
justify-content: center;
align-items: center;
color: black;
margin: 5px;
border-radius: 6px;
word-break: break-word;
user-select: none;
box-shadow: 4px 4px 5px 1px rgba(139, 143, 145, 0.945);
}
/* boites blanches qui forment les trous entre les cours de couleur */
.box2 {
width: 140px;
height: 100px;
background-color: white;
border: 2px solid white;
display: flex;
justify-content: center;
align-items: center;
color: white;
border-radius: 6px;
margin: 5px;
}
/* Boites qui contiennent le nom de chaque session */
.box4 {
width: 140px;
height: 10px;
background-color: white;
border: 2px solid white;
display: flex;
justify-content: center;
align-items: center;
color: black;
margin: 5px;
border-radius: 6px;
}
/* Boites qui contiennent le nombre de crédits maximum */
.box5 {
width: 140px;
height: 30px;
background-color: white;
border: 2px solid white;
display: flex;
justify-content: center;
align-items: center;
color: black;
margin: 5px;
border-radius: 6px;
}
/* Boites vides utilisées pour faire des espaces */
.box6 {
width: 140px;
height: 20px;
background-color: white;
border: 2px solid white;
display: flex;
justify-content: center;
align-items: center;
color: white;
margin: 5px;
border-radius: 6px;
}
.button {
width: 300px;/*200px;*/
height: 100px;/*200px;*/
display: flex;
justify-content: center;
align-items: center;
/* position: absolute;
top: 190%; /*13.5%;*/
/*left: 75%;
transform: translate(-50%, -50%); */
}
.titre_session {
font-size: 15px;
}
.underline-text {
text-decoration: underline; /* underline the text */
text-align : center;
}
.description-text {
text-align:center;
}
#input-number {
width: 30px;
height: 30px;
text-align: center;
}
/* pour enlever les petites flèches qui permettent d'augmenter et de diminuer avec la souris */
#input-number::-webkit-outer-spin-button,
#input-number::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* format du titre */
#title{
font-size: 20px;
}