-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (130 loc) · 2.37 KB
/
style.css
File metadata and controls
134 lines (130 loc) · 2.37 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
126
127
128
129
130
131
132
133
134
* {
margin: 0;
padding: 0;
text-decoration: none;
list-style: none;
}
body {
font-family: Roboto;
}
.header {
width: 100vw;
height: 100px;
/*background-color: black;*/
}
.header_left {
width: 40vw;
height: 100%;
/* background-color: white; */
float: left;
}
.header_right {
width: 52vw;
height: 100%;
/* background-color: burlywood; */
float: right;
}
.header_left img {
width: 15vw;
height: auto;
margin-left: 84px;
margin-top: 3px;
}
.header_right ul {
display: inline-block;
}
.header_right ul li {
float: left;
padding: 20px;
line-height: 60px;
}
.header_right ul li a {
color: #444;
font-size: 13px;
font-weight: 600;
font-family: sans-serif;
}
.image_section {
width: 100vw;
height: 560px;
background-color: lightblue;
}
.image_section img {
width: 100vw;
height: 100%;
background-color: lightblue;
}
.text_heading {
width: 100vw;
height: 100px;
/* background-color: lightblue; */
padding-top: 60px;
}
.text_heading h1 {
color:rgb(218, 93, 71);
font-family: Roboto;
font-size:24px;
font-style:normal;
font-weight:700;
letter-spacing:2px;
text-align: center;
margin: 0px 100px;
}
.text_paragraph {
width: 100vw;
height: 100px;
/* background-color: yellowgreen; */
padding-top: 20px;
}
.text_paragraph h3 {
text-align: left;
margin: 0px 100px;
color:rgb(57, 56, 54);
font-family:Roboto;
font-size:18px;
font-style:normal;
font-weight:400;
letter-spacing:1px;
}
.text_heading2 {
width: 100vw;
height: 100px;
background-color: lightblue;
/* padding-top: 60px; */
}
.text_heading2 h1 {
color:rgb(218, 93, 71);
font-family: Roboto;
font-size:24px;
font-style:normal;
font-weight:700;
letter-spacing:2px;
text-align: center;
margin: 0px 100px;
padding-top: 40px;
}
#blocks {
width: 100vw;
height: 300px;
background-color: aqua;
}
#blocks .left_block {
width: 30vw;
height: 100%;
background-color: gray;
float: left;
}
#blocks .left_block ul li {
list-style-type: disc;
padding: 10px;
}
#blocks .left_block ul {
list-style-type: disc;
margin-left: 60px; padding-left: 0;
}
#blocks .right_block {
width: 70vw;
height: 100%;
background-color: tomato;
float: left;
}