-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylesheet1.css
More file actions
125 lines (116 loc) · 2.03 KB
/
stylesheet1.css
File metadata and controls
125 lines (116 loc) · 2.03 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
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
122
123
124
125
body{
background-color: #9c9f84;
margin: 0px;
font-family: Verdana, Georgia, serif;
font-size: 14px;
}
#header{
background-color: #5c755e;
margin: 10px;
height: 90px;
border-radius: 5px;
}
#navbar ul{
background-color: #000;
list-style-type: none;
padding: 5px;
text-align: center;
margin: 10px;
border-radius: 5px;
}
#navbar ul li{
display: inline;
}
#navbar ul li a{
text-decoration: none;
font-family: Ariel;
padding: 2px 10px;
background-color: #000;
color: #fff;
}
#navbar ul li a:hover{
background-color: #fff;
color: #000;
}
.project{
background-color: #e5e4d7;
margin-top: 10px;
margin-bottom: 10px;
margin-right:320px ;
margin-left: 10px;
padding: 20px;
border-radius: 5px;
font-size: 110%;
}
.project-title{
background-color: #e5e4d7;
margin-top: 10px;
margin-bottom: 10px;
margin-right:320px ;
margin-left: 10px;
padding: 20px;
border-radius: 5px;
font-size: 110%;
}
h1{
font-size: 120%;
color: #ce282e;
}
h2{
font-size: 120%;
color: darkblue;
}
h3{
font-size: 250%;
text-align: center;
color: #e5e4d7;
font-family: Century Gothic, seriff;
margin: 0px;
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.imgsidebar{
margin-top: 0px;
margin-bottom: 10px;
margin-right: 10px;
margin-left: 10px;
border-radius: 5px;
float: right;
width: 300px;
clear: right;
transition: opacity 1s ease-in-out;
}
#footer{
background-color: #5c755e;
margin: 10px;
height: 60px;
clear: both;
border-radius: 5px;
font-size: 90%;
text-align: center;
color: #efe5d0;
}
#footer ul{
list-style-type: none;
padding: 5px;
text-align: center;
margin: 10px;
border-radius: 5px;
}
#footer ul li{
display: inline;
}
#footer ul li a{
text-decoration: none;
font-family: Ariel;
padding: 2px 10px;
background-color: #5c755e;
color: #efe5d0;
}
#footer ul li a:hover{
background-color: #fff;
color: #000;
}