-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (105 loc) · 2.29 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
h1 {
font-family: Roboto;
}
p {
font-family: Roboto;
}
input {
width : 100px;
height : 30px;
border-radius: 20px;
outline : none;
}
.bigbutton,
.bigbutton:active,
.bigbutton:focus {
height : 40px;
width : 150px;
font-family : Roboto;
font-size : 18px;
border : solid 1px;
border-radius : 100px;
background-color: darkGrey;
color : white;
}
.bigbutton:active {
outline : none !important;
background-color: DimGrey;
}
.bigbutton:focus {
outline: none !important;
}
.left-heart {
background-image : url("igor.jpg");
background-position: center center;
background-size : cover;
transform : rotate(5deg);
width : 300px;
height : 300px;
border-radius : 300px 0 0 300px;
}
.right-heart {
background-image : url("galya.jpg");
background-position: -20px -30px;
background-size : 110%;
transform : rotate(5deg);
width : 300px;
height : 300px;
border-radius : 0 300px 300px 0;
}
.left-heart:active,
.right-heart:active {
box-shadow : none;
border-radius : 0 0 0 0;
width : 600px;
height : 600px;
background-size: 100%;
box-shadow : none !important;
}
.left-heart:hover,
.right-heart:hover {
box-shadow: inset 0 0 1px 3px #5b9aa0;
}
.wrapper {
display : grid;
grid-template-columns: repeat(3, 1fr);
grid-gap : 10px;
grid-auto-rows : minmax(100px, auto);
}
.one {
grid-column : 1 / 3;
grid-row : 1;
border: solid 2px;
border-radius : 10px;
text-align: left;
}
.two {
grid-column : 3;
grid-row : 1 / 3;
border: solid 2px;
border-radius : 10px;
}
.three {
grid-column : 1/ span 2;
grid-row : 2 / 4;
border: solid 2px;
border-radius : 10px;
}
.four {
grid-column : 3;
grid-row : 3;
border: solid 2px;
border-radius : 10px;
}
.five {
grid-column : 1/3;
grid-row : 4;
border: solid 2px;
border-radius : 10px;
}
.six {
grid-column : 3;
grid-row : 4;
border: solid 2px;
border-radius : 10px;
}