forked from fkhan698/pomodoro_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
121 lines (105 loc) · 2.1 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
117
118
119
120
121
body {
background-image: url(mountains.jpg);
width: 100%;
height: 100%;
background-size: 100%;
}
.red {
color: #ff0000;
font-weight: 900;
}
a {
text-decoration: none !important;
color: inherit !important;
}
.header {
text-align: center;
margin-top: 70px;
font-family: 'Gloria Hallelujah', cursive;
font-size: 100px;
}
#message {
text-align: center;
margin-top: 200px;
color: white;
font-family: 'Gloria Hallelujah', cursive;
}
#pom-header {
font-size: 100px;
}
.container {
display: flex;
flex-direction: row;
justify-content: center;
}
.buttons {
display: flex;
/* margin-top: 400px; */
height: 500px;
align-items: center;
}
.pausePlay {
display: flex;
align-items: center;
margin-top: 75px;
}
#start {
border-style: solid;
border-color: black;
border-radius: 500px;
border-width: 5px;
font-size: 50px;
padding: 50px;
outline:none;
font-family: 'Montserrat', sans-serif;
}
#pause, #play {
border-style: solid;
border-color: black;
border-radius: 100px;
border-width: 5px;
font-size: 5px;
padding: 50px;
margin-right: 40px;
margin-left: 50px;
outline:none;
font-family: 'Montserrat', sans-serif;
}
#fiveMin, #endSess, #redo {
margin-top: 40px;
border-style: solid;
border-color: black;
border-radius: 90px;
border-width: 5px;
font-size: 1px;
padding: 50px;
margin-right: 20px;
margin-left: 20px;
outline:none;
font-family: 'Montserrat', sans-serif;
}
#pause:hover, #play:hover{
background-color: #c3c3c3;
color: #FFFFFF;
transition: all 0.20s ease;
}
#fiveMin:hover, #endSess:hover, #redo:hover{
background-color: #c3c3c3;
color: #FFFFFF;
transition: all 0.20s ease;
}
#start:hover{
background-color: #c3c3c3;
color: #FFFFFF;
transition: all 0.20s ease;
}
#counter {
margin-top: 10px;
padding-right: 40px;
text-align: center;
align-items:center;
font-family: 'Montserrat', sans-serif;
font-size: 100px;
color: white;
padding-top: 120px;
}