-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw1.css
121 lines (100 loc) · 1.73 KB
/
hw1.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
113
114
115
116
117
118
119
120
121
h1{
color:#FFFFFF;
text-transform: uppercase;
text-align: center;
font-size:120%;
padding-top:17px;
}
body{
padding:1%;
margin:0.5px;
}
.left img{
width:200px;
height:120px;
border:4px solid black;
display:block;
padding:0px;
margin:0 auto;
margin-bottom:35px;
}
h2{
color:#000000;
text-transform: uppercase;
font-size: 180%;
}
header{
background-color: #0000FF;
background-image: url("C:/Users/Lenovo/Desktop/images/flywheel.jpg") ;
background-repeat:no-repeat;
background-size:cover;
height:110px;
}
.left{
width:250px;
background-color:#8FA01F;
float:left;
}
nav a{
font-size:125%;
text-decoration: none;
margin:70px;
border-radius: 3px;
padding:10px 35px 10px 35px;
background-color:rgb(211,211,211,0.4);
}
.active{
background-color: #FFFFFF;
border-radius: 3px;
padding:10px 20px 10px 20px;
}
nav a:visited{
color:#000000;
}
section{
width:1200px;
float:right;
margin-right: 15px;
}
nav a[href*=".org"]:link{
color:#000000;
}
img{
padding-bottom: 60px;
padding-top: 30px;
}
table{
margin-top:15px;
font-family: "Comic Sans MS";
width:60%;
overflow: auto;
}
td{
background-color: #4eb14e;
opacity: 0.6;
font-weight: bold;
padding:10px 25px 10px 25px;
border:2px solid blue;
}
td:nth-child(2){
text-align: center;
}
td:nth-child(3){
text-align: center;
}
tr:hover{
background-color: #4eb14e;
opacity: 1;
}
th{
background-color: #0000FF;
background: linear-gradient(#6495ed 0%,#0000FF 100%);
padding:10px 25px 10px 25px;
color:#FFFFFF;
border:solid black;
border-radius:10px 10px 0px 0px;
border-width: 0px 0px 4px 0px;
}
th:nth-child(1){
text-align: left;
}