-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (96 loc) · 2.17 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
108
109
110
111
112
113
114
115
116
footer {
color: #ff9100;
font-size: large;
font-family: Georgia, 'Times New Roman', Times, serif;
margin-top: 40px;
}
#aka {
display: flex;
justify-content: center;
}
body, html {
height: 100%;
margin: 0;
padding: 0;
background: linear-gradient(to bottom,#43cea2,#185a9d);
}
.arrow-button {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: white;
font-size: 25px;
cursor: pointer;
border: none;
background-color: transparent;
}
#focus {
font-size: 30px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: black;
margin-bottom: 80px;
font-weight: bolder;
}
#breakLengthValue {
margin-bottom: 30px;
}
.spacer {
margin: 0 30px; /* Adjust the margin value as needed */
}
#BreakLength {
color: white;
font-size: 24px;
cursor: pointer;
border: none;
background-color: transparent;
}
/* Center the content both vertically and horizontally */
#container {
font-size: medium;
height: 100%;
display: flex;
flex-direction: column; /* Arrange children vertically */
justify-content: center;
align-items: center;
}
button:focus {
outline: none !important;
border: none !important;
box-shadow: none !important;
}
/* Style the main border container */
#session {
font-size: 40px;
font-family: 'Times New Roman', Times, serif;
}
#border-primary {
margin-top: 30px;
color: rgb(255, 255, 255);
font-family: 'Times New Roman', Times, serif;
border: 5px solid rgb(43, 42, 42);
border-radius: 20px;
width: 250px;
height: 150px;
display: flex;
flex-direction: column; /* Arrange children vertically */
justify-content: center; /* Center content vertically */
text-align: center;
}
/* Style the play button */
#control {
background-color: transparent;
border: none;
cursor: pointer;
font-size: 24px;
margin-top: 10px; /* Add space between the border and the button */
}
#play {
border: none;
background-color: transparent;
}
#pause {
border: none;
background-color: transparent;
}
#reset {
border: none;
background-color: transparent;
}