-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdefault.html
More file actions
51 lines (51 loc) · 1.27 KB
/
default.html
File metadata and controls
51 lines (51 loc) · 1.27 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
<html>
<head>
<style type="text/css" media="screen">
* {
font-size: 21pt;
}
#user {
background-color: #E6E6FA;
font-size: 32px;
}
#todo {
border: 4px solid powderblue;
font-size: 40px;
padding: 30px;
font-family:georgia,garamond,serif;
font-style:italic;"
}
.unselectable {
-webkit-user-select: none;
-webkit-touch-callout: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #cc0000;
}
input[type='submit'],[type='reset'] {
padding:5px 30px;
background: #cce6ff;
border: none;
border-radius: 30px;
}
input[type='text'],[type='password'] {
padding: 10px;
border: none;
border-radius: 25px;
outline: none;
}
fieldset {
border: 0;
}
body{
background: url("https://www.toptal.com/designers/subtlepatterns/patterns/geometry2.png");
}
</style>
</head>
<body>
<div>
<center id = "todo"> Todo Application </center>
</div>
</body>
</html>