-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwindcode.html
More file actions
102 lines (91 loc) · 2.8 KB
/
tailwindcode.html
File metadata and controls
102 lines (91 loc) · 2.8 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
95
96
97
98
99
100
101
102
<!--
Welcome to Tailwind Play, the official Tailwind CSS playground!
Everything here works just like it does when you're running Tailwind locally
with a real build pipeline. You can customize your config file, use features
like `@apply`, or even add third-party plugins.
Feel free to play with this example if you're just learning, or trash it and
start from scratch if you know enough to be dangerous. Have fun!
-->
<div>
<div class="container">
<h1 class="title">
Alfee
</h1>
</div>
<h2 class=" text-4xl text-yellow-600 text-center">
- A helper brain for the teacher.
</h2>
<br>
<br>
<div class=" text-center text-xl">
Showing interfaces for - <span class="text-gray-500"> student</span> /
<span class="text-gray-500">teacher</span> / <span class=" text-yellow-600">both</span>.
</div>
<br>
<div class="userInterface flex justify-around ">
<div class="w-1/2 text-center px-4">
<div class=" pl-5 pr-3 py-4 bg-gray-100 h-1/2 shadow-md ">
<span class=" subtitle mx-auto ">Teacher's Dashboard.</span>
</div>
<div class="grid pt-2 pb-1 font-semibold border-gray-400 px-6
center text-left border-opacity-60 border grid-cols-8 gap-2">
<div class="col-span-3">Topic</div>
<div class="col-span-2">Theme</div>
<div>Tries</div>
<div class="col-span-2">Generate Story</div>
</div>
<div class=" flex justify-between py-2">
<input type="text" class="bg-white w-3/4 rounded shadow-md pl-4 "
placeholder="Topic to be taught today, e.g: mitochondria">
<button class="bg-green-600 rounded-full px-4 text-white shadow-md py-1">Add</button>
</div>
<div class="bg-gray-100 pt-3 text-center h-1/2">
<span class="subtitle text-purple-300 py-5 ">Generated Stories</span>
<div class="flex ">
<textbox class="border border-black px-4 py-3 rounded-2xl">awdawdawdawd </textbox>
<button></button>
</div>
</div>
</div>
<div class="px-4 pr-3 py-4 bg-gray-100 h-1/2 shadow-md w-1/2 ">
<div class="text-center">
<span class=" subtitle ">Student's Dashboard.</span>
</div>
</div>
</div>
</div>
<style>
.container {
margin: 0 auto;
display: flex;
justify-content: center;
text-align: center;
}
.title {
font-family:
'Quicksand',
'Source Sans Pro',
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
'Helvetica Neue',
Arial,
sans-serif;
display: block;
font-weight: 300;
font-size: 100px;
color: #35495e;
letter-spacing: 1px;
}
.subtitle {
font-weight: 300;
font-size: 42px;
color: #526488;
word-spacing: 5px;
padding-bottom: 15px;
}
.links {
padding-top: 15px;
}
</style>