-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 1.21 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (61 loc) · 1.21 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
body{
background-color: rgb(0, 0, 0);
}
.ptimer{
color: white;
background-color: rgba(207, 191, 191, 0.089);
width: 600px;
height: 100px;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 10px blue;
}
.container{
width: 100vw;
height: 100vh;
max-width: 100%;
max-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-weight: 700;
font-size: 50px;
letter-spacing: 5px;
}
.but{
width: 150px;
padding: 20px;
margin: 30px;
border-radius: 40px;
text-transform: uppercase;
color: white;
font-weight: 800;
font-size: 17px;
border: none;
outline: none;
letter-spacing: 2.5px;
}
#but1{
background-color: red;
}
#but1:active{
background-color: rgba(238, 46, 46, 0.829);
color: rgb(204, 196, 79);
}
#but2:active{
background-color: rgba(46, 75, 238, 0.829);
color: rgb(204, 196, 79);
}
#but3:active{
background-color: rgba(52, 238, 46, 0.829);
color: rgb(204, 196, 79);
}
#but2{
background-color: blue;
}
#but3{
background-color: green;
}