-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathid.css
111 lines (90 loc) · 1.69 KB
/
id.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
h1 {
font-size: 50px;
}
h2 {
display: flex;
justify-content: center;
}
#dateHeading {
font-size: 40px;
}
#inputList {
width: 800px;
max-height: 50%; /* Set maximum height */
overflow-y: auto; /* Add vertical scrollbar if needed */
border: 3px solid #000;
padding: 10px;
/* Other styles */
}
#resultTxt {
font-size: 50px;
}
#memberButton {
padding: 10px 20px;
border: 2px solid #3498db;
background-color: #fff;
color: #3498db;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
margin: 5px;
}
/*#memberButton:hover {*/
/* background-color: #3498db;*/
/* color: #fff;*/
/*}*/
#tableHeading {
color: black;
font-size: 25px;
text-align: center;
}
#dateHeading {
font-size: 25px;
}
#buddyItem {
font-size: 20px;
}
#addBtn {
margin: 5px;
font-size: 20px;
background-color: skyblue;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#doneBtn, #resetBtn {
margin: 5px;
font-size: 30px;
background-color: white;
border: 2px solid black; /* Define border style */
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#addBtn:hover,
#doneBtn:hover,
#resetBtn:hover {
background-color: lightblue;
color: white;
}
#deleteBtn:hover {
background-color: lightpink;
/* Any other style adjustments you may want */
}
#selectedDate {
width: 20vw;
height: 4vh;
}
#memberNames {
width: 30vw;
height: 4vh;
}
#result {
display: flex;
justify-content: flex-start;
}