-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
114 lines (102 loc) · 2.11 KB
/
style2.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
104
105
106
107
108
109
110
111
112
113
114
body{
margin: 0px;
padding: 0px;
background-image: url(img/patternbg.jpg);
background-color: #340707;
max-width: 100vw;
overflow-x: hidden;
min-width: 100vw;}
.nav {
padding-left: 2em;
padding-top: 2em;
position: relative;
}
.monogram {
opacity: 0.2;
}
.monogram:hover {
opacity: 0.4;
transition: all 0.3s ease 0s;
}
.promo {
width: 780px;
margin-left: auto ;
margin-right: auto ;
margin-top: 4em;
text-align: center;
}
#promo1{
width:180px;
height: 180px;
background:blue;
border-radius: 20px;
display: inline-block;
background-image: url(img/brains.png);
background-size: 130%;}
#promo1:hover{
width:180px;
height: 180px;
background:blue;
border-radius: 20px;
display: inline-block;
background-image: url(img/brains.png);
background-size: 130%;
filter: grayscale(0.8);
transition: all 0.3s ease 0s;}
#promo2{
width:180px;
height:180px;
background:red;
margin-left: 80px;
border-radius: 20px;
display: inline-block;
background-image: url(img/ragu.png);
background-size: 130%;}
#promo2:hover{
width:180px;
height:180px;
background:red;
margin-left: 80px;
border-radius: 20px;
display: inline-block;
background-image: url(img/ragu.png);
background-size: 130%;
filter: grayscale(0.8);
transition: all 0.3s ease 0s;}
#promo3{
width:180px;
height:180px;
background:green;
margin-left: 80px;
border-radius: 20px;
display: inline-block;
background-image: url(img/roses.png);
background-size: 130%;}
#promo3:hover{
width:180px;
height:180px;
background:green;
margin-left: 80px;
border-radius: 20px;
display: inline-block;
background-image: url(img/roses.png);
background-size: 130%;
filter: grayscale(0.8);
transition: all 0.3s ease 0s;}
.hero {
padding-top: 4em;
width: 651px;
margin-left: auto ;
margin-right: auto ;
}
h2 {
font-family: Gesta;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.2em;
color: white;
opacity: 0.5;
text-align: center;
font-size: 2.5em;
margin-top: -0.2em;
}