-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
48 lines (48 loc) · 801 Bytes
/
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
body,html{
direction: rtl;
width: 100%;
height: 100%;
background-color: rgb(41, 41, 41);
}
header{
height: 25px;
box-shadow: 1px 1px 10px #000000 ;
transition: 1s;
}
header:hover{
box-shadow: 1px 1px 10px #dc3545 ;
transition: 1s;
}
main{
margin-top: 5px;
height: 70%;
}
.timer{
font-size: 80px;
box-shadow: 1px 1px 10px #000000 ;
transition: 1s;
}
.timer:hover{
box-shadow: 1px 1px 10px #dc3545 ;
transition: 1s;
}
.timer-text{
font-size: 80px;
direction: ltr;
}
img{
width: 150px;
}
.text-div{
box-shadow: 1px 1px 10px #000000 ;
transition: 1s;
/* background-color: #6c757d; */
}
.text-div:hover{
box-shadow: 1px 1px 10px #dc3545 ;
transition: 1s;
}
textarea{
font-size: 30px;
direction: ltr;
}