aboutsummaryrefslogtreecommitdiff
path: root/public/css/modif_page.css
blob: 9048f05863b56015c4e5c08717b19da30c4540da (plain)
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
/* -- mode modification d'une page -- */
.page_modification
{
	background-color: white;
	padding: 10px;
	margin: 10px 15px;
}
.page_modification select, .page_modification input[type=submit]
{
	color: #ff1d04;
	font-size: medium;
	border-radius: 4px;
	background-color: white;
	border: lightgrey 2px outset;
}
/*.page_modification select:hover
{
	cursor: pointer;
}*/
.page_modification input[type=submit]:hover
{
	background-color: yellow;
	border-radius: 4px;
	cursor: pointer;
}
.edit_page_title_zone
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.edit_page_zone, .edit_block_zone, .delete_page_zone
{
	background-color: #f0f0f0f0;
	margin: 8px 5px;
	padding: 10px;
}
#edit_description
{
	margin: 5px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}
#edit_description button
{
	vertical-align: top;
}
.edit_block_zone
{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.edit_page_zone p, .edit_block_zone p, .edit_page_zone form
{
	margin: 5px;
}

.new_block #bloc_title
{
	width: 70%;
	max-width: 300px;
}

.modify_block img
{
	vertical-align: middle;
}
.delete_page_zone
{
	text-align: center;
}
.modify_one_block
{
	background-color: white;
	margin: 8px 0;
	padding: 5px;
}
.modify_one_block > *
{
	/*text-wrap: nowrap;*/
}
.modify_one_block > div
{
	display: flex;
	align-items: baseline;
}
.block_options > *
{
	/*display: flex;
	flex-wrap: wrap;*/
	text-wrap: nowrap;
}
.grid_options
{
	/*text-wrap: nowrap;*/ /* saut de la div grid_options */
	flex-wrap: wrap; /* éléments à l'intérieur de grid_options lorsque lui-même dépasse la largeur dispo (téléphone) */
}