-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
82 lines (71 loc) · 1.16 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
.container {
position:relative;
width: 100%;
height: 100%;
overflow: clip;
}
.box {
position: absolute;
top: 0px;
left: 0px;
transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-o-transform-origin: 0 0;
}
.corner {
display: none;
width: 20px;
height: 20px;
position: absolute;
top: 0px; left: 0px;
}
.corner::before {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: -20px; left: -9px;
border-bottom: 2px solid black;
}
.corner::after {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: -9px; left: 0px;
border-left: 2px solid black;
}
.overlay{
position: fixed;
top:0; right:0; bottom:0; left:0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
}
.fenetre_popup {
display: none;
background: #fff;
padding: 20px;
border: 20px solid #ddd;
position: relative;
margin: 10% auto;
width: 40%;
box-shadow: 0px 0px 20px #000;
border-radius: 10px;
text-align: center;
}
input {
margin: 5px;
}
p {
color: grey;
font-size: 1.3em;
}
#textarea {
overflow-y:hidden;
}
.modif {
display: none;
}