-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtt.css
132 lines (115 loc) · 2.05 KB
/
tt.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
123
124
125
126
127
128
129
130
131
132
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Noto Sans Korean';
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
background-color: #e96d6d27;
}
h1 {
text-align: center;
margin-top: 20px;
color: #333;
}
#userInput {
width: 80%;
margin: 10px auto;
border-collapse: collapse;
border: 1px solid #d05555;
background-color: #fffffff0;
}
#userInput th, #userInput td {
border: 1px solid #e96d6d;
padding: 8px;
text-align: center;
}
#userInput th {
color: #d05555;
background-color: #e96d6d64;
font-weight: bold;
}
#userInput input {
width: 100%;
padding: 5px;
margin: 0;
box-sizing: border-box;
text-align: center;
border: none;
border-radius: 4px;
background-color: transparent;
color: #d05555;
}
#userInput input:focus {
outline: none;
box-shadow: none;
}
#addRow, #generateTimetable {
padding: 10px;
background-color: #e96d6d27;
color: #e96d6d;
border: 1px solid #d05555;
cursor: pointer;
margin-top: 8px;
width: 80%;
box-sizing: border-box;
border-radius: 50px;
font-size: 16px;
font-weight: bold;
}
#addRow:hover, #generateTimetable:hover {
background-color: #e96d6dd2;
color: #fff;
}
#timetables {
width: 80%;
margin-top: 50px;
text-align: center;
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: space-evenly;
}
#timetables > div {
min-width: 30%;
border: 1px solid #d05555;
padding: 10px;
border-radius: 4px;
background-color: #fffffff0;
}
#timetables h2 {
margin: 0 0 15px;
color: #d05555;
}
#timetables p {
margin: 5px 0;
color: #d05555;
font-size: 14px;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px #fffffff0 inset;
}
#notice {
border: 1px solid #d05555;
width: 80%;
border-radius: 10px;
margin: 20px;
padding: 20px;
font-size: 13px;
color: #d05555;
background-color: #fffffff0;
}
#notice p {
margin-bottom: 10px;
}
#notice p:first-child {
margin-bottom: 20px;
font-size: 15px;
font-weight: 900;
}