-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 863 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (56 loc) · 863 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f7fa;
color: #333;
}
header {
background: #0077ff;
color: white;
padding: 1rem;
text-align: center;
}
nav button {
margin: 0.3rem;
padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
background: white;
color: #0077ff;
cursor: pointer;
}
main {
padding: 1rem;
}
.tab {
display: none;
}
.tab.active {
display: block;
}
textarea, input {
width: 100%;
margin: 0.5rem 0;
padding: 0.6rem;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 0.5rem 1rem;
border-radius: 5px;
border: none;
cursor: pointer;
}
#grading button {
margin: 0.3rem;
}
#flashcard {
border: 2px solid #0077ff;
padding: 2rem;
margin: 1rem 0;
background: white;
border-radius: 10px;
text-align: center;
font-size: 1.2rem;
}