-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
97 lines (81 loc) · 1.43 KB
/
main.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
*{
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
margin:0;
}
#product-overview {
background: url("freedom.jpg");
width: 100%;
height: 528px ;
padding: 10px;
}
.section-title {
color: #2ddf5c;
}
#product-overview h1 {
color: white;
font-family: 'Anton', sans-serif;
}
.main-header{
width: 100%;
background: rgb(57, 197, 57);
padding: 8px 16px;
display: inline-block;
}
.main-header > div {
display: inline-block;
vertical-align: middle;
}
.main-header_brand {
color: green;
text-decoration: none;
font-weight: 700;
font-size: 22px;
}
.main-nav{
display: inline-block;
text-align: right;
width: calc(100% - 70px);
}
.main-nav_items{
margin: 0;
padding: 0;
list-style: none;
}
.main-nav_item {
display: inline-block;
margin: 0 16px;
}
.main-nav_item a{
text-decoration: none;
color: green;
font-weight: bold;
padding: 3px;
}
/* .main-nav_item a::after{
content: " (Link)";
color: red;
} */
.main-nav_item a:hover,
.main-nav_item a:active {
color: white;
border-bottom: 5px solid white;
}
P::first-letter{
color: red;
font-size: 20px;
}
.main-nav_item-cta a{
color: white ;
background: red;
padding: 8px 16px;
border-radius: 8px;
}
.main-nav_item-cta a:hover,
.main-nav_item-cta a:active{
color: red;
background: white;
border: none;
}