-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyAssignment.css
112 lines (91 loc) · 1.53 KB
/
myAssignment.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
@import url('https://fonts.googleapis.com/css?family=Do+Hyeon');
body {
background-image: url("https://media.beam.usnews.com/39/9f/053222934d5b9be72874ea3f5a7b/150423-submitted.jpg");
background-attachment: scroll;
font-family: 'Do Hyeon', sans-serif;
font-size: 15pt;
}
a:link {
text-decoration: none;
color: blue;
}
a:hover {
color: #FF00BF;
}
a:visited {
color: black;
}
table {
border-collapse: collapse;
width: 90%;
}
thead {
background-color: #F5A9F2;
}
tbody {
background-color: #F2E0F7;
}
tr {
border-bottom: 2px solid #BDBDBD;
padding: 5px;
}
tr:nth-child(2n) {
text-align: center;
}
th {
width: 150px;
padding: 5px;
border-right: 1px solid #BDBDBD;
}
th:first-child {
width: 80px;
border-right: 2px solid #BDBDBD;
}
td {
padding: 15px;
border-right: 1px solid #BDBDBD;
width: 20%;
}
td:first-child {
border-right: 2px solid #BDBDBD;
text-align: center;
width: 8%;
}
td:nth-child(4) {
padding: 7px;
text-align: center;
width: 40%;
}
td:last-child {
border-right: 0px;
font-size: 12pt;
width: 12%;
}
h1 {
text-align: center;
}
ul.mylist {
list-style-type: square;
list-style-position: inside;
padding-left: 10px;
padding-right: 10px
}
ul.mylist li {
margin-bottom: 8px;
padding-bottom: 5px;
border-bottom: 1px solid #222222;
font-size: 15px;
}
ul.mylist li:last-child {
border-bottom: 0px;
}
.mydiv1 {
width: 18%;
background-color: #cdcdcd;
font-size: 15pt;
font-family: Impact;
}
.mydiv2 {
width: 38%;
background-color: #efefef;
}