-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (81 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (81 loc) · 1.53 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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
padding: 20px;
}
/* Default styles
body {
font-family: Arial, sans-serif;
}*/
/* Responsive adjustments */
@media (max-width: 767px) {
h1 {
font-size: 1.5rem;
}
.table th, .table td {
font-size: 0.8rem;
padding: 0.5rem;
}
input.form-control {
font-size: 0.8rem;
padding: 0.4rem;
}
.btn {
font-size: 0.9rem;
padding: 0.5rem 1rem;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
h1 {
font-size: 2rem;
}
.table th, .table td {
font-size: 1rem;
padding: 0.7rem;
}
input.form-control {
font-size: 1rem;
padding: 0.6rem;
}
.btn {
font-size: 1rem;
padding: 0.6rem 1.2rem;
}
}
/* quiz
input, textarea {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
margin: 10px;
width:100%;
}
fieldset {
display: flexbox;
align-content: center;
justify-content: center;
padding: 25px;
margin-left: 50px;
margin-right: 50px;
border: thin solid white;
width: 50%;
}
buttons
button {
background-color: #fff;
border: 1px solid #7600bc;
color: #7600bc;
display: block;
border-radius: 6px;
text-align: center;
margin: 50px;
padding: 10px;
width: 2in;
font-size: 20px;
}
button:hover {
background-color: #7600bc;
border: 1px solid #7600bc;
color: #fff;
display: block;
border-radius: 6px;
text-align: center;
cursor: pointer;
} */