-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (104 loc) · 1.87 KB
/
style.css
File metadata and controls
119 lines (104 loc) · 1.87 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
* {
margin: 0;
padding: 0;
border-spacing: border-box;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav .logo {
width: 150px;
}
nav ul {
list-style: none;
display: flex;
gap: 40px;
}
nav ul li {
cursor: pointer;
color: #333;
font-weight: bold;
}
nav ul li:hover {
color: green;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 0;
background-color: #eee;
}
.hero h1 {
font-size: 52px;
text-align: center;
line-height: 1;
}
.hero h1 span {
color: green;
}
.hero p {
color: orange;
padding-top: 20px;
}
.section {
display: flex;
gap: 10px;
justify-content: space-between;
padding-top: 15px;
}
.about-image {
border-radius: 15px;
}
.about-content {
background-color: #333;
text-align: justify;
width: 50%;
height: 300px;
padding: 20px;
border-radius: 10px;
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#nexus-text {
font-weight: 500;
font-size: 25px;
text-decoration: underline;
}
/* Section Service */
.section-services {
background-color: rgb(101, 241, 101);
width: 82%;
margin-left: 115px;
margin-top: 20px;
border-radius: 10px;
/* text-align: justify; */
padding: 20px;
text-transform: uppercase;
}
.about-button{
background-color: black;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
font-size: 16px;
}
.about-button:hover{
background-color: white;
color: black;
padding: 10px 20px;
border: none;
cursor: pointer;
}