-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (77 loc) · 1.55 KB
/
index.css
File metadata and controls
78 lines (77 loc) · 1.55 KB
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
@import url('https://fonts.googleapis.com/css2?family=DynaPuff&display=swap');
html, body{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
background-color: #363636;
font-family:'DynaPuff', cursive;
color: white;
text-shadow: 1px 2px 2px black;
background-image: url(bk.jpg);
background-size: 60%;
}
header{
display: flex;
align-items: center;
justify-content: center;
height: 125px;
padding-top: 75px;
}
.qnmr{
border: 5px solid rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.735);
}
h1{
font-size: 50px;
}
#conteiner{
display: flex;
align-items: center;
justify-content: center;
}
#area{
background-color: seagreen;
width: 550px;
height: 390px;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
border-radius: 15px;
box-shadow: 1px 3px 3px 2px rgba(1, 1, 1, .5);
background-image: url(IMG_20240331_205159.jpg);
background-size: 100%;
}
#opcNo:hover{
color: red;
}
#opcyes:hover{
color: blue;
}
.option{
background-color: yellowgreen;
height: 90px;
width: 90px;
display: flex;
align-items: center;
justify-content: center;
margin: 50px;
font-size: 35px;
border-radius: 15px;
transition: all .5s;
box-shadow: 1px 3px 3px 2px rgba(1, 1, 1, .5);
cursor:pointer;
}
footer{
display: flex;
justify-content: center;
align-items: center;
color: red;
font-size: 50px;
margin-top: 45px;
transition: all .5s;
}