blob: 10d8b23dc767b1972c0f5d6f05bf7d9aadb10a16 (
plain) (
blame)
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
|
.container{
color: white;
background-color: maroon;
border-style: solid;
border: 1px solid #d5d6d2;
text-align: center;
margin:5px;
}
.button {
background-color: gold;
border: solid;
border-color:#d5d6d2;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.button:hover{
background-color: white;
cursor: pointer;
}
a{
color:white;
text-decoration:none;
}
a:hover{
text-decoration:underline
}
#main{
color: black;
background-color: #d5d6d2;
border-style: solid;
border: 1px solid #d5d6d2;
text-align: center;
margin:5px;
}
#about{
display: none;
}
#title{
font-size: xx-large;
}
#subtitle{
font-size: large;
}
#choose_file{
border: none;
text-decoration: none;
display: inline-block;
}
#submit{
}
|