-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 985 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: rgb(77, 77, 77);
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
flex-direction: column;
}
.nav {
display: flex;
flex-direction: column;
margin-top: 50px;
margin-bottom: 50px;
}
.nav a {
text-decoration: none;
font-size: 22px;
color: black;
margin-top: 40px;
}
.nav a button {
width: 200px;
height: 50px;
background-color: rgb(255, 153, 0);
font-size: 15.5px;
font-weight: 700;
cursor: pointer;
outline: none;
border: none;
border-radius: 25px;
color: #fff;
box-shadow: 0 0 25px #ff7b00;
transition: 0.5s;
}
.nav a button:hover {
background-color: lightseagreen;
box-shadow: 0 0 25px lightseagreen, 0 0 50px lightseagreen;
}
h2 {
color: #f7f7f7;
margin-bottom: 18px;
}
@media (max-width:900px) {
body {
text-align: center;
}
.nav {
margin-bottom: 40px;
}
}