-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (88 loc) · 2.27 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
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
122
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
* {
box-sizing: border-box;
}
body{
background: #ECE9E6; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin:0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
width:100vw;
height: 100vh;
}
.top-panel{
background: #CB356B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #CB356B, #BD3F32); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #CB356B, #BD3F32); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
height: 200px;
width: 100vw;
position:relative;
display: flex;
flex-direction: column;
align-items: center;
}
.top-buttons{
text-align: center;
margin: 0;
padding: 1rem;
}
.top-buttons button{
font-size: 18px;
width: 150px;
color: black;
background-color: red;
border-radius:30px;
cursor: pointer;
}
.top-buttons button:hover{
font-size: 28px;
width: 150px;
color:white;
}
.top-buttons button:disabled{
font-size: 28px;
width: 150px;
border: solid black 2px;
box-shadow: 2px 2px 60% black;
color:white;
cursor:auto;
}
.top-panel span{
position:absolute;
bottom: 20px;
display: block;
padding: 0;
margin: 0;
height: fit-content;
font-family: "Oswald", sans-serif;
font-weight: bold;
font-size: 94px;
line-height:100%;
}
.change{
text-decoration: line-through;
text-decoration-color: black;
}
li{
background-color: #C4C4C4;
cursor: pointer;
font-weight: bold;
font-size: 1.5rem;
padding: 0.5rem 1rem;
margin: 0.2rem;
}
ul{
list-style-type: none;
overflow: auto;
margin: 1rem 1rem 0.3rem 1rem;
padding: 0;
background-color: white;
}
span{
font-family: 'Times New Roman', Times, serif;
margin: 1rem;
}