-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (113 loc) · 1.83 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
102
103
104
105
106
107
108
109
110
111
112
113
body {
font-family: 'Open Sans', sans-serif;
color: #000000;
padding: 0px;
text-align: center;
margin: 10px auto;
transition: background-color 0.3s, color 0.3s;
}
h1 {
text-align: center;
}
.box-header {
border: 3px solid black;
border-radius: 30px;
color: #000000;
margin: 0px 10%;
text-align: center;
}
.boxes {
margin: 10px auto;
display: flex;
flex-direction: row;
gap: 10px;
padding: 0px 10%;
p {
text-align: left;
}
}
.box {
border: 3px solid black;
border-radius: 30px;
color: #000000;
padding: 10px;
}
p {
text-align: center;
}
img {
width: 30px;
height: 30px;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #000000;
color: #fff;
}
body {
background-color: #000000;
color: #fff;
}
.box-header {
background-color: #000000;
color: #fff;
border: 3px solid white;
}
.box {
background-color: #000000;
color: #fff;
border: 3px solid white;
}
a {
text-decoration: underline;
color: #ffffff;
}
a:hover {
color: #ffffff;
text-decoration: underline;
}
#share-icon {
content: url('share_white.svg');
cursor: pointer;
}
}
@media (prefers-color-scheme: light) {
html {
background-color: #ffffff;
color: #000000;
}
body {
background-color: #ffffff;
color: #000000;
}
.box-header {
background-color: #ffffff;
color: #000000;
border: 3px solid black;
}
.box {
background-color: #ffffff;
color: #000000;
border: 3px solid black;
}
a {
text-decoration: underline;
color: #000000;
}
a:hover {
color: #000000;
text-decoration: underline;
}
#share-icon {
content: url('share_black.svg');
cursor: pointer;
}
}
#icon-container {
display: flex;
justify-content: center;
align-items: center;
}
#url-text {
cursor: pointer;
}