-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
121 lines (117 loc) · 2.19 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;600;900&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
body {
background-color: #396EB0;
}
nav {
background-color: #DADDFC;
height: 50px;
padding-left: 10px;
/* box shadow generator*/
box-shadow: -4px 14px 33px -14px rgba(0,0,0,0.75);
}
.nav-container {
display: flex;
justify-content: space-evenly;
align-items: center;
width: 100%;
}
header {
background-color: #2E4C6D;
height: 500px;
width: 100%;
overflow: hidden;
color: #DADDFC;
}
main {
background-color: #DADDFC;
height: 100%;
}
main > .container {
padding: 50px;
}
.container > .choose h1 {
text-align: center;
padding-bottom: 15px;
}
.top__main {
display: flex;
justify-content: space-around;
}
.top__main .tm__content {
background-color: #396EB0;
height: 300px;
padding: 20px;
background-repeat: no-repeat;
background-size: cover;
transition: transform 1s;
}
.top__main .tm__content:hover {
transform: scale(1.3);
}
.top__main .tm__content h1 {
color: #DADDFC;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-shadow: 10px 10px 25px rgba(0, 0, 0, 1);
}
.tmc__container {
width: 30%;
overflow: hidden;
border-radius: 10px;
box-shadow: -4px 14px 33px -14px rgba(0,0,0,0.75);
cursor: pointer;
}
.tmc1 {
background-image: url("fantasy.jpg");
}
.tmc2 {
background-image: url("block.jpg");
}
.tmc3 {
background-image: url("party.jpg");
}
h1 {
font-weight: 400;
font-size: 5vh;
/* text-shadow: 5px 3px 12px rgba(0, 0, 0, 0.75); */
}
p {
color: #daddfca2;
}
.header__container {
display: flex;
justify-content: space-between;
padding: 25px;
}
.header__container > img {
padding-left: 50px;
}
.header__right {
width: 100%;
padding: 60px;
}
.header__right > a > button {
background-color: transparent;
padding: 15px 25px;
margin-top: 20px;
border-radius: 20px;
cursor: pointer;
outline: none;
border: 2px solid #DADDFC;
color: #DADDFC;
font-size: medium;
transition: 0.3s ease-in;
}
.header__right > a > button:hover {
background-color: #DADDFC;
color: black;
}
/* animations */