-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (84 loc) · 1.37 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
background-color: black;
}
header {
padding: 20px;
text-align: center;
}
h1 {
margin-bottom: 5px;
color: blue;
font-size: 10vh;
}
nav {
padding: 10px;
}
ul li{
color:darkgrey;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
float: right;
}
nav li {
display: flex;
margin: 10px;
}
a {
text-decoration: none;
color: skyblue;
font-size: 30px;
font-style: italic;
}
main {
padding: 20px;
margin: 50px;
}
p{
color: greenyellow;
}
.description{
color: chartreuse;
font-style: italic;
}
li a:hover{
background-color: black;
color: #fff;
font-weight: bolder;
}
.service-cards {
display: grid;
flex-wrap: wrap;
justify-content: space-around;
margin: 20px 0;
}
h2 {
color: chartreuse;
}
h3 {
color: black;
}
.service-card {
background-color: grey;
padding: 15px;
margin: 10px;
border-radius: 5px;
text-align: center;
}
.service-card h2 {
margin-bottom: 10px;
}
.service-card a {
text-decoration: none;
color: #ff0000;
font-weight: bold;
}
.service-card:hover {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}