-
Notifications
You must be signed in to change notification settings - Fork 144
/
impstyle.css
71 lines (66 loc) · 1.35 KB
/
impstyle.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
body {
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #6b46c1, #9f7aea, #f687b3);
margin: 0;
padding: 20px;
/* overflow: hidden; */
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.heading {
text-align: center;
color: #f6ac62;
font-family: 'Londrina Outline', cursive;
font-size: 5rem;
padding: 8px 16px;
text-shadow: #000000 3px 4px 10px;
}
.contain {
display: flex;
justify-content: space-around;
align-items: center;
min-height: 70vh;
/* border:1px black solid */
}
.toggle-container {
border: 2px solid black;
border-radius: 10px;
height: auto;
width: 30%;
background-color: #fff;
padding: 15px;
box-shadow: 0 2px 10px white;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-bottom: 122px;
cursor: pointer;
transition: all 0.3s ease;
}
.toggle-container:hover {
transform: scale(1.05);
}
.toggle-heading {
font-family: 'Londrina Outline', cursive;
font-weight: bolder;
color: #4caf50;
margin-bottom: 10px;
}
.toggle-paragraph {
line-height: 1.5;
color: #555;
font-family: 'Londrina Outline', cursive;
}
@media only screen and (max-width: 1100px) {
.contain {
flex-direction: column;
width: fit-content;
}
.toggle-container {
width: 70%;
margin-bottom: 12px;
}
}