-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrick18.css
82 lines (69 loc) · 1.32 KB
/
trick18.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
/* trick18.css */
/* Reset default margin and padding for all elements */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styling */
body {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #252525;
color: #333;
line-height: 1.6;
cursor: pointer;
}
/* Container styling */
div {
max-width: 800px;
margin: 20px auto;
background-color: #8EC5FC;
/* background-image: linear-gradient(62deg, #8EC5FC 0%, #E0C3FC 100%); */
background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%);
border-radius: 35px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Title styling */
strong {
display: block;
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 20px;
margin: 0 50px;
}
/* List styling */
ul {
margin-bottom: 20px;
margin: 0 50px;
color: #333;
font-size: 22px;
}
li {
margin-bottom: 5px;
margin: 0 10px;
list-style: circle;
}
/* Semantic tags styling */
.ul li {
font-style: italic;
color:#007bff ;
list-style: circle;
}
/* Non-semantic tags styling */
ul:nth-child(2) li {
font-style: normal;
color: green;
font-size: 18px;
}
.ul p a{
text-decoration: none !important;
color:green;
}
.ul p a:hover{
text-decoration: none !important;
color:#007bff;
}
.ul p a:visited{
text-decoration: none !important;
color:red;
}