-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwlcm.css
112 lines (102 loc) · 2.82 KB
/
wlcm.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
@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Edu+NSW+ACT+Foundation:wght@500&family=Josefin+Sans:wght@200&family=Kanit:wght@300&family=Roboto:wght@300&family=Ubuntu:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alkatra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Edu+NSW+ACT+Foundation:wght@500&family=Ubuntu:ital,wght@1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Edu+NSW+ACT+Foundation:wght@500&family=Josefin+Sans:wght@200&family=Ubuntu:ital,wght@1,500&display=swap');
body{
background: url(est-heure-pizza-savoureuse-pizza-traditionnelle-maison-recette-italienne.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
.smak{
text-align: center;
font-family: 'Kanit', sans-serif;
color: white;
font-size: 3rem;
text-shadow: 2px 2px 10px rgb(78, 134, 41),-2px -2px 10px rgb(78, 134, 41);
}
.main{
color: white;
width: max-content;
font-size: 3.5em;
position: absolute;
padding: 20px;
border-radius: 10px;
top: 50%;
left: 80%;
transform: translate(-50%,-50%);
font-family: 'Ubuntu', sans-serif;
text-shadow: 2px 2px 10px red,-2px -2px 10px red;
}
.txt{
text-align: center;
}
.btn{
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.btns{
height: 50px;
width: 200px;
background-color: rgb(240, 83, 35);
border-radius: 10px;
font-size: 25px;
box-shadow: 1px 1px 10px red,-1px -1px 10px red;
border: 1px solid red;
color: white;
font-family: 'Ubuntu', sans-serif;
cursor:url(cursor.png),pointer;
}
.btns:hover{
box-shadow: 1px 1px 10px rgb(30, 255, 0),-1px -1px 10px rgb(43, 255, 0);
background-color: yellowgreen;
border: 1px solid green;
transform: scale(1.2);
transition: 0.5s;
}
.btns a {
padding: 10px 20px 10px 20px;
border-radius: 10px;
font-size: 25px;
box-shadow: transparent;
border: transparent;
color: white;
font-family: 'Ubuntu', sans-serif;
cursor:url(cursor.png),pointer;
background-color: transparent;
}
@media (max-width:850px) {
body{
background-size: cover;
}
.smak{
font-size: 3.5em;
display: flex;
align-items: center;
justify-content: center;
}
.main{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.txt{
font-size: 10vw;
}
.btns{
height: 40px;
width: 180px;
font-size: 15px;
}
.btns a{
padding: 0;
}
}