-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (71 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (71 loc) · 1.15 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
background: rgb(106, 96, 172);
}
.container{
max-width:400px;
}
input[type=text],
input[type=text]:focus{
color: #6657b9;
border:none;
background: whitesmoke;
max-width:400px;
}
.todos li{
background:#6657b9;
}
.delete {
cursor:pointer;
}
.delete:hover{
color: red;
}
.popup-wrapper{
background:rgba(0,0,0,0.7);
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}
.popup {
text-align : center;
width:100%;
max-width:300px;
margin:10% auto;
padding:20px;
background: #352F5B ;
position:relative;
}
.popup {
color: rgba(255,255,255,0.5);
}
.popup p {
color: crimson
}
.popup a{
text-decoration: none;
text-transform: uppercase;
background: crimson;
color:white;
padding: 6px 10px;
}
.popup-close{
position: absolute;
top : 5px;
right:8px;
cursor:pointer;
}
.btn {
background-color:#352F5B;
color: rgba(255,255,255,0.5);
margin:2rem auto;
padding:15px;
}
.btn:hover{
background-color:rgba(255,255,255,0.5);
color:#352F5B;
}
.filtre{
display : none !important;
}