-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprobs.css
More file actions
executable file
·77 lines (66 loc) · 1.09 KB
/
probs.css
File metadata and controls
executable file
·77 lines (66 loc) · 1.09 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
/* probs.css */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", Tahoma, sans-serif;
background-color: #f5f7fa;
color: #2c3e50;
padding: 40px;
line-height: 1.7;
transition: background-color 0.3s ease, color 0.3s ease;
}
body.dark {
background-color: #0f2027;
color: #ffffff;
}
p {
font-size: 1.05rem;
margin-bottom: 8px;
}
a {
display: inline-block;
margin-bottom: 25px;
color: #0066ff;
text-decoration: none;
font-weight: 600;
border-left: 4px solid #0066ff;
padding-left: 12px;
transition: color 0.3s ease, padding-left 0.3s ease;
}
a:hover {
color: #003cb3;
padding-left: 18px;
}
strong {
color: #000000;
}
@media (max-width: 600px) {
body {
padding: 20px;
}
}
button {
height: 40px;
width: 40px;
position: absolute;
top: 20px;
right: 20px;
height: 40px;
width: 40px;
background: transparent;
cursor: pointer;
border-radius: 40px;
}
button img {
height: 35px;
width: 35px;
/* display: flex; */
margin-right: 10px;
}
button:hover {
background-color: white;
border-color: white;
}