-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
80 lines (65 loc) · 1.06 KB
/
style.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
body {
background-color: #F1EEEE;
}
@media screen and (max-width: 800px) {
body {
background-color: coral;
}
}
#header {
position: fixed;
width: 100%;
top: 0px;
background-color: #8B9DBC
}
h1 {
display: inline;
}
#nav-bar {
float: right;
padding-top: 35px;
padding-right: 30px;
}
.nav-link {
color: black;
}
#content {
padding-top: 75px;
}
#about-us {
text-align: center;
}
#about-us-list {
text-align: center;
}
.about-us-list {
display: inline-block;
text-align: left;
}
#sample-video {
text-align: center;
padding-top: 30px;
padding-bottom: 40px;
}
#pricing {
text-align: center;
padding-top: 30px;
padding-bottom: 40px;
}
.container {
display: flex;
justify-content:space-around;
padding-bottom: 30px;
}
.box-1, .box-2, .box-3 {
text-align: center;
width: 100px;
height: 80px:;
border: 1px solid #000;
border-radius: 3px;
}
#contact-us {
text-align: center;
padding-top: 30px;
padding-bottom: 40px;
}