|
13 | 13 | flex-direction: column;
|
14 | 14 | }
|
15 | 15 |
|
| 16 | +[data-theme='dark'] .heroBanner { |
| 17 | + background-image:linear-gradient(to top, rgba(30, 40, 60, 1) , rgba(40, 50, 70, 1)); |
| 18 | +} |
| 19 | + |
16 | 20 | .container{
|
17 | 21 | width:100%;
|
18 | 22 | height:100%;
|
|
25 | 29 | width: 40%;
|
26 | 30 | }
|
27 | 31 |
|
| 32 | +/* To make sure the hero title is seen in light mode, add certain styling */ |
| 33 | +.titles h1 { |
| 34 | + color: #333333; |
| 35 | +} |
| 36 | + |
| 37 | +[data-theme='dark'] .titles h1 { |
| 38 | + color: #ffffff; |
| 39 | +} |
| 40 | + |
28 | 41 | .image{
|
29 | 42 | width: 40%;
|
30 | 43 | }
|
|
36 | 49 | width:80%;
|
37 | 50 | }
|
38 | 51 |
|
| 52 | +[data-theme='dark'] .tagline { |
| 53 | + color:rgba(220, 220, 220, 1); |
| 54 | +} |
| 55 | + |
39 | 56 | @media screen and (max-width: 950px) {
|
40 | 57 | .tagline {
|
41 | 58 | font-size:16px;
|
|
84 | 101 | border:1px solid rgba(0, 91, 244, 1);
|
85 | 102 | }
|
86 | 103 |
|
| 104 | +[data-theme='dark'] .buttons a { |
| 105 | + background-color:rgba(50, 60, 80, 1); |
| 106 | + color:rgba(100, 160, 255, 1); |
| 107 | + border:1px solid rgba(100, 160, 255, 1); |
| 108 | + box-shadow:0pt 5pt 6pt 1pt rgba(0, 0, 0, 0.3); |
| 109 | +} |
| 110 | + |
87 | 111 | .buttons a:first-child {
|
88 | 112 | background-color:rgba(40, 117, 243, 1);
|
89 | 113 | box-shadow:0pt 5pt 6pt 1pt rgba(0, 0, 0, 0.16);
|
90 | 114 | color:white
|
91 | 115 | }
|
92 | 116 |
|
| 117 | +[data-theme='dark'] .buttons a:first-child { |
| 118 | + background-color:rgba(60, 130, 240, 1); |
| 119 | + box-shadow:0pt 5pt 6pt 1pt rgba(0, 0, 0, 0.3); |
| 120 | + color:white; |
| 121 | + border:1px solid rgba(60, 130, 240, 1); |
| 122 | +} |
| 123 | + |
93 | 124 | @media screen and (max-width:820px){
|
94 | 125 | .container{
|
95 | 126 | flex-direction: column;
|
|
0 commit comments