-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
101 lines (99 loc) · 1.77 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
min-width: 470px;
margin: 0 auto;
}
.mainpart{
margin: 0 20px;
}
h1 {
margin: 0;
padding: 20px;
font-size: 36px;
text-align: center;
background-color: #E57373;
color: #fff;
border-bottom: 2px solid black;
border-top: 2px solid black;
}
.logo{
width: 40px;
height: 40px;
position: relative;
top:8px;
}
#save-btn {
display: block;
margin: 20px auto;
padding: 10px 20px;
font-size: 16px;
font-weight:700;
background-color: #FF8A80;
color: black;
border: 2px solid black;
border-radius: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
cursor: pointer;
transition: all 0.3s ease;
}
#save-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.deletebtn {
width: 120px;
height: 50px;
cursor: pointer;
font-size: 20px;
background: #FF8A80;
border-radius: 10px;
border: 2px solid black;
box-shadow: 0px 0px 0px rgba(0,0,0,0.4);
transition: 500ms;
}
.deletebtn:hover {
transform: translateY(-5px);
box-shadow: 0px 10px 10px rgba(0,0,0,0.4);
}
.deletebtn:focus {
outline: none;
}
.bookmark {
padding: 20px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
border-radius: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.bookmark-title {
margin-right: 10px;
font-size: 24px;
font-weight: bold;
color: #546E7A;
display: flex;
align-items: center;
cursor: pointer;
}
.bookmark{
border: 1px solid black;
}
.bookmark:hover{
border: 2px solid black;
}
.bookmark-img {
margin-right: 10px;
width: 24px;
height: 24px;
border-radius: 50%;
}
.bookmark-url {
font-size: 16px;
color: #546E7A;
}