-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsocialmedia.css
103 lines (98 loc) · 2 KB
/
socialmedia.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
body{
height: 450px;
width: 280px;
overflow:scroll;
background:linear-gradient(white, rgb(253, 206, 148));
}
div.buttons{
display:flex;
flex-direction: row;
justify-content: space-evenly;
align-items:center;
position: sticky;
padding-top: 3%;
padding-bottom: 3%;
}
#back{
color:black;
background:linear-gradient(-20deg, bisque 0%,rgb(249, 188, 113) 100%);
border-color:transparent;
font-size:large;
position:sticky;
}
#back:hover{
transform: translateX(-3px);
transition-duration: 1s;
}
#back:active{
background:transparent;
border-color:transparent;
transform: translateX(-4px);
transition-duration: 0.7s;
color:blue;
}
#openall, #openselect{
background-color:rgb(249, 188, 113);
border-color:transparent;
font-weight: bold;
}
#openall:hover, #openselect:hover{
transform: translateY(-4px);
transition-duration: 1.3s;
}
#openall:active, #openselect:active{
background:transparent;
border-color:transparent;
transform: translateY(3px);
transition-duration: 0.4s;
color:blue;
}
label:hover{
box-shadow: 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px rgb(255, 255, 255),
0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
transition-duration: 600ms;
}
input{
vertical-align: middle;
position: relative;
}
input.check:checked + label{
background: #fffc47;
}
label{
font-size:larger;
}
div.data{
display:flex;
flex-direction: column;
}
div.delete{
display: inline-block;
font-weight: bold;
font-size: x-large;
}
div.delete:hover{
color:red;
cursor:pointer;
}
.top{
display:flex;
justify-content:space-between;
align-items:center;
}
#clear{
color:red;
background:linear-gradient(-20deg, bisque 0%,rgb(249, 188, 113) 100%);
border-color:transparent;
font-size:large;
}
#clear:hover{
font-size:medium;
transition-duration: 0.7s;
}
#clear:active{
background:transparent;
border-color:transparent;
transition-duration: 0.7s;
color:red;
}