-
Notifications
You must be signed in to change notification settings - Fork 0
/
myfirstwebsite.css
115 lines (99 loc) · 1.65 KB
/
myfirstwebsite.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
body {
height:100%;
Margin:0;
}
.topnav {
background-color:blue;
overflow:hidden;
}
.topnav a{
float:right;
color:white;
text-align:center;
padding:20px 20px;
text-decoration:none;
font-size:15px;
font-family:times roman;
}
.topnav a:hover {
background-color:white;
color:black;
}
.topnav a.active{
background-color:white;
color:black;
}
.banner-image {
background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(banner.jpg);
height:100%;
background-position:center;
background-repeat:no-repeat;
background-size:cover;
positiion:absolute;
}
.aboutme {
text-align:center;
margin-left:50px;
margin-right:50px;
}
.tableheading {
text-align:center;
}
.tableone th,td{
height:100%;
border:1px;
border-color:green;
border-collapse: collapse;
text-align:center;
padding:20px;
}
tr:nth-child(even) {
background-color: #D6EEEE;
}
.descriptionlist {
text-align:center;
background-color:grey;
padding-top:20px;
padding-bottom:20px;
margin-top:10px;
}
.column {
width:33.33%;
float:left;
color:blue;
background-color:#d7c8c8;
text-align: center;
}
.row:after {
content: "";
display: table;
clear: both;
}
h1 {
text-align:center;
}
dt{
font-weight:bold;
}
button{
text-align:center;
height:50px;
width:100px;
background-color:blue;
color:white;
margin:auto;
display: flex;
justify-content: center;
align-items: center;
margin-top:10px;
}
#test {
text-align:center;
}
.contact-form {
margin:auto;
display: flex;
justify-content: center;
align-items: center;
padding:10px 10px;
}