-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (90 loc) · 1.66 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0 auto;
align-items: center;
font-family: "Inter", sans-serif;
}
body {
background-color: rgb(37, 37, 37);
display: flex;
width: 100vw;
height: 100vh;
flex-direction: column;
justify-content: center;
}
h1 {
color: #fff;
font-weight: 900;
}
.counter {
color: #eb33bd;
font-size: 40px;
text-align: center;
}
.container {
flex-direction: column;
align-items: center;
}
.buttons-container {
display: flex;
gap: 0.5rem;
}
button {
background-color: #fff;
border: 1px solid #d5d9d9;
border-radius: 8px;
box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
box-sizing: border-box;
color: #0f1111;
cursor: pointer;
display: inline-block;
font-size: 13px;
font-weight: 600;
line-height: 29px;
padding: 0 10px 0 11px;
position: relative;
text-align: center;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
width: 100px;
}
button:hover {
background-color: #eb33bd;
}
button:focus {
border-color: #960070;
box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
outline: 0;
}
.toggle {
margin-top: 2rem;
}
.light-mode {
background-color: #fff5fa;
color: #0f1111;
}
.light-mode-text {
color: #f541c5;
}
.light-mode-h1 {
color: #5e6161;
}
.light-mode-button {
color: #eb33bd;
background-color: #f5bae4;
border: 1px solid #ffccf0;
}
.light-mode-button:hover {
background-color: #f5e7f1;
}
/* @media (prefers-color-scheme: light) {
body {
background-color: #d5d9d9;
}
h1 {
color: #0f1111;
}
} */