-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
155 lines (137 loc) · 2.59 KB
/
styles.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* Box sizing rule */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Body rules */
body {
margin: 0;
padding: 1rem;
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
font-size: 1rem;
line-height: 1.5;
background-color: #f5f5f5;
height: 100%;
}
/* Container rules */
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.24);
border-radius: 4px;
}
/* Title rules */
h1 {
margin-top: 0;
margin-bottom: 20px;
font-size: 28px;
font-weight: bold;
color: #212121;
}
/* Form rules */
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
font-size: 16px;
font-weight: bold;
color: #212121;
}
input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #1976d2;
border-radius: 4px;
background-color: #f5f5f5;
font-size: 16px;
color: #212121;
transition: background-color 0.3s ease;
}
input[type="text"]:focus {
outline: none;
background-color: #fff;
border: 1px solid #1976d2;
}
/* Button rules */
.btn {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background-color: #1976d2;
color: #fff;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
text-decoration: none;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #1565c0;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
/* Citation container rules */
.citation-container {
margin-top: 20px;
padding: 20px;
background-color: #f5f5f5;
border-radius: 4px;
}
.citation-container p {
margin: 0;
padding: 0;
font-size: 16px;
color: #212121;
}
/* Copy button rules */
.copy-btn {
display: inline-block;
padding: 10px 20px;
margin-left: 20px;
background-color: #1976d2;
color: #fff;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
text-align: center;
text-decoration: none;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.copy-btn:hover {
background-color: #1565c0;
}
.copy-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.hidden {
display: none;
}
#copyMessage {
color: green;
font-weight: bold;
margin-top: 10px;
}
.markdown-pre {
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Courier New", Courier, monospace;
overflow: auto;
min-width: 40rem;
padding: 1rem 0.5rem;
background-color: #ececec;
border: 1px solid black;
border-radius: 4px;
}