-
Notifications
You must be signed in to change notification settings - Fork 5
/
style1.css
52 lines (51 loc) · 1 KB
/
style1.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
*{
margin: 0;
padding: 0;
}
html{
background-color: #b3ffff;
background: radial-gradient(rgba(179,255,255,0.5),rgba(225,255,255,0.5),rgba(0,0,0,0.3));
text-align: center;
}
#nameDiv{
margin-top: 50px;
}
.input{
font-size: 25px;
color: #004d00;
font-weight: 700;
font-family: sans-serif;
margin: 20px;
}
#entry{
width: 150px;
height: 40px;
font-size: 23px;
font-family:sans-serif;
background-color: #001a66;
color: whitesmoke;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.5);
margin-top: 20px;
}
table{
border-collapse: collapse;
width: 50%;
margin: 50px auto;
background-color: burlywood;
}
table,th,td{
border: 2px solid black;
padding: 5px;
}
th{
font-size: 30px;
font-weight: 700;
font-family: arial;
color: #004d00;
}
td{
font-size: 25px;
color: criomson;
font-weight: 400;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}