-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (71 loc) · 1.17 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
body{
background-color: #010a1a;
color: #bdbdbd;
font-family: 'Roboto Mono', monospace;
}
button{
background-color: #010a1a;
display: inline-block;
font-weight: 400;
text-align: center;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: 1rem;
line-height: 1;
border-radius: .15rem;
width: 90%;
margin: 0.5rem;
}
.card{
height: 100%;
width: 100%;
}
.card-content{
min-height: 50%;
width: 100%;
}
.card-footer {
width: 100%;
min-height: 50%;
}
#content{
font-size: 200px;
}
#button-container, #content{
text-align: center;
}
#start{
color: #15b004;
border: 1px solid #15b004;
}
#start:hover{
background-color: #15b004;
color: #010a1a;;
}
#end{
color: #c40202;
border: 1px solid #c40202;
width: 40%;
}
#end:hover{
background-color: #c40202;
color: #010a1a;;
}
#pause{
color: #0541e8;
border: 1px solid #0541e8;
width: 40%;
}
#pause:hover{
background-color: #0541e8;
color: #010a1a;;
}
#resume{
color: #e89105;
border: 1px solid #e89105;
width: 40%;
}
#resume:hover{
background-color: #e89105;
color: #010a1a;;
}