-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
95 lines (82 loc) · 1.69 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
body{
padding: 20px;
font-family: Arial, sans-serif;
background-color:aliceblue;
height: 100vh;
}
.main {
display: flex;
height: 85vh;
justify-content: center;
align-items: center;
}
button{
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 50px;
border-radius: 25px;
background-color: lightblue;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: background-color 0.5s ease;
/* font-family: Arial, sans-serif;
background: linear-gradient(to right, aliceblue 25%, lightblue 25%, lightblue 50%, white 50%, white 75%, pink 75%); */
}
button:hover{
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.5s ease;
background-color: lightcoral;
}
.content{
display: flex;
justify-content: center;
align-items: start;
gap: 20px;
}
.menu-container {
width: 50%;
display: flex;
justify-content: center;
max-height: 0;
overflow: hidden;
transition: max-height 1s ease-out;
}
p.detail{
padding: 100px;
}
.button-container{
display: flex;
justify-content: start;
align-items: start;
gap: 20px;
}
.container{
padding: 20px;
display: flex;
align-items: start;
gap: 20px;
}
.header {
font-size: xx-large;
display: flex;
justify-content:center;
align-items: center;
padding: 20px;
}
.header, .detail {
transition: color 0.5s ease;
}
body {
transition: background-color 0.5s ease;
}
.image{
display: flexbox;
border-radius: 50%;
box-shadow: 0 0 30px 0 rgb(0, 0, 0);
}
@media screen and (max-width: 600px) {
.container {
flex-direction: column;
}
}