-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
149 lines (122 loc) · 2.29 KB
/
style.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
/* style.css */
/* Reset default margin and padding */
body, h1, p {
margin: 25px;
padding: 0;
color: #000000;
}
/* Set background and text color for the page */
body {
background-color: #ff961e;
color: #333;
font-family: 'Satoshi', sans-serif;
}
/* Center align the h1 */
h1 {
margin-top: 5px;
font-size: 60px;
font-weight:800;
line-height: 1.15;
color: #000;
text-align: center;
}
/* Style the tab content */
#tab-content-container {
display: flex;
justify-content: space-evenly;
}
/* Style the tab buttons */
.tab-button {
border: none;
background-color: #5fd4ff;
color: #000000;
padding: 10px 20px;
margin-bottom: 10px;
border-radius: 5px;
font-size: 20px;
cursor: pointer;
outline: none;
transition: background-color 0.3s ease;
}
.tab-button:hover {
background-color: #ffd000;
}
.tab-button.active {
background-color: #0821ff;
}
.tab-content {
background-color: #ffffff;
padding: 20px;
margin-bottom: 20px;
max-width: 500px;
height: auto;
}
/* Show the active tab content */
.tab-content.active {
display: block;
}
#simple-container{
display: flex;
flex-direction: column;
}
#expert-container{
display: flex;
flex-direction: column;
}
/* make the initail code display hidden */
#simplecontent{
display: none;
border-radius: 10px;
max-width: 500px;
}
#expertcontent{
border-radius: 10px;
display: none;
}
#upload-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
margin-bottom: 50px;
}
#input-text {
width: 60%;
height: 250px;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
resize: vertical;
margin-bottom: 10px;
}
#upload-button {
border: none;
background-color: #00bbff;
color: #000000;
padding: 10px 20px;
border-radius: 5px;
font-size: 20px;
cursor: pointer;
outline: none;
}
#upload-button:hover {
background-color: #ffd000;
margin: 5px;
}
.blinking-cursor {
margin-left: 5px;
background-color: #7d7a7a;
animation: blink 1s infinite;
}
#tab-area{
display: none;
}
@keyframes blink {
0%, 50% {
opacity: 1;
}
50.1%, 100% {
opacity: 0;
}
}