-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 860 Bytes
/
style.css
File metadata and controls
51 lines (42 loc) · 860 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
46
47
48
49
50
51
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.main{
border: 2px solid black;
width: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 500px;
background-color: black;
color: white;
}
.display{
margin: 0 0 100px ;
}
#count{
border: 0;
background-image: linear-gradient(45deg,blue,red);
color: white;
width: 200px;
height: 40px;
border-radius: 40px;
}
#reset{
border: 1px solid white;
background-color: black;
color: white;
width: 100px;
}
#decrement{
border-radius: 40px;
border: 0;
height: 40px;
background-image: linear-gradient(45deg,blue,red);
color: white;
width: 100px;
}