kushxrap commited on
Commit
708e37d
1 Parent(s): 51c4a5b

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +79 -0
style.css CHANGED
@@ -26,3 +26,82 @@ p {
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  .card p:last-child {
27
  margin-bottom: 0;
28
  }
29
+ body{
30
+ min-height: 100vh;
31
+ background-color: aliceblue;
32
+ background-image: url(/16lesson/bubbles.png), linear-gradient(to left, steelblue,#fff);
33
+ background-repeat: repeat-y;
34
+ background-position: right;
35
+ }
36
+
37
+ img{
38
+ display: block;
39
+ }
40
+ /* utility cvlasses */
41
+ .nowrap{
42
+ white-space: nowrap;
43
+ }
44
+ .offscreen{
45
+ position: absolute;
46
+ left: -1000000px;
47
+ }
48
+
49
+ /* end utility */
50
+ /*
51
+ .example {
52
+ margin-top: 1rem;
53
+ padding-left: 20px;
54
+ border:1px solid black;
55
+ }
56
+ .example img{
57
+
58
+ width:25%;
59
+
60
+ height: auto;
61
+ } */
62
+ .container{
63
+ background-color: peachpuff;
64
+ background-image: url(/16lesson/bubbles.png);
65
+ background-repeat: ;
66
+ background-position: bottom ;
67
+ background-size: cover;
68
+ }
69
+ .hero{
70
+ border-bottom: 2px solid #000;
71
+ padding: 20px;
72
+ display:flex;
73
+ justify-content: flex-start;
74
+ align-items: center;
75
+ gap: 30px;
76
+ background-color: peachpuff;
77
+ background-image: url(/16lesson/bubbles.png);
78
+ background-repeat:;
79
+ background-size: cover;
80
+ }
81
+
82
+ .container{
83
+ background-color: peachpuff;
84
+ background-image: url(/16lesson/map-2176x1451.png);
85
+ background-repeat: ;
86
+ background-size: cover;
87
+ }
88
+ .h1{
89
+ font-size: 300%;
90
+ color: white;
91
+ text-shadow: 2px 2px 5px #000;
92
+ border-bottom: #000 dashed;
93
+
94
+ /* background-color:#020202; */
95
+ }
96
+ .profile{
97
+ margin:0;
98
+ width: 35%;
99
+
100
+ }
101
+ .profile img{
102
+ width: 100%;
103
+ height: auto;
104
+ min-width: 100px;
105
+ border: 2px solid gray;
106
+ border-radius: 40px;
107
+ }