-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (41 loc) · 830 Bytes
/
style.css
File metadata and controls
45 lines (41 loc) · 830 Bytes
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
body {
font-family: "Pixelify Sans";
text-align: center;
background-color: rgb(79, 79, 79);
}
#button {
font-family: "Pixelify Sans";
font-size: 25px;
width: 200px;
height: 200px;
border-radius: 15px;
display: inline-block;
text-align: center;
text-decoration: none;
color: #fff;
background-color: #782929;
border: none;
border-radius: 15px;
box-shadow: 0px 5px #bfbfbf;
}
#button:hover {
background-color: #872929;
}
#button:active {
background-color: #872929;
box-shadow: 0 0px #bfbfbf;
transform: translateY(5px);
}
#counter {
font-family: "Segoe UI";
font-size: 50px;
font-weight: 800;
padding: 25px;
}
#display {
height: 100px;
font-size: 70px;
font-weight: 800;
color: #782929;
-webkit-text-stroke: 2px #000000; /* Толщина и цвет обводки */
}