-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
130 lines (111 loc) · 2.02 KB
/
Copy pathindex.css
File metadata and controls
130 lines (111 loc) · 2.02 KB
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
123
124
125
126
127
128
129
130
body {
margin: 0;
padding: 0;
font-family: "Open Sans", "Helvetica Neue", sans-serif;
font-weight: bold;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
color: rgb(12, 11, 11);
}
.background-image {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("./candy.jpg");
background-size: cover;
z-index: -1;
}
.container {
background: rgba(255, 255, 255, 0.3);
margin: auto;
width: 70%;
border: 3px solid pink;
border-radius: 10px;
}
.button-holder {
display: flex;
align-items: center;
justify-content: center;
}
.text-holder {
height: 200px;
}
h1 {
margin: 20px;
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
h3 {
font-size: 40px;
margin-top: 0;
margin-bottom: 20px;
color: black;
}
p {
font-size: 35px;
}
button {
border: none;
padding-top: 10px;
padding-bottom: 10px;
color: white;
font-weight: bold;
font-size: larger;
width: 300px;
height: 70px;
margin: 30px;
border-radius: 5px;
border: 1px solid rgb(73, 43, 65);
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
cursor: pointer;
}
button:hover {
transform: scale(1.05);
background-color: rgb(248, 248, 70);
}
#increment-btn {
background: rgb(232, 232, 11);
color: black;
}
#save-btn {
background: rgb(222, 74, 98);
}
#sum-el {
font-size: 48px;
}
#days-table {
background-size: cover;
margin: 60px 0;
font-family: "Open Sans", "Helvetica Neue", sans-serif;
font-weight: bold;
text-align: center;
color: rgb(12, 11, 11);
border-collapse: collapse;
width: 100%;
}
#days-table th,
#days-table td {
padding: 10px;
}
#days-table th {
background-color: rgb(232, 232, 11);
color: black;
border: 1px solid rgba(0, 0, 0, 0.3);
}
#days-table tr:nth-child(even) {
background-color: rgba(255, 255, 255, 0.5);
}
#days-table tr:nth-child(odd) {
background-color: rgba(0, 0, 0, 0.1);
}
#days-table td {
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 0, 0, 0.3);
}