-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.css
124 lines (121 loc) · 2.58 KB
/
new.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
h1{
text-align: center;
font-family: georgia, times, serif;
}
#container{
margin-top: 50px;
margin-left: -250px;
margin-right: 120px;
}
#main{
text-align: center;
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: repeat(9,auto);
margin: auto;
margin-top: 30px;
gap: 15px;
row-gap: 40px;
}
#main>div{
text-align: center;
padding: 10px;
}
#main>div>img{
width: 130px;
}
#main>div>p:nth-child(2){
font-family:Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: 700;
line-height: 13.75px;
color: rgb(0, 0, 0);
}
#main>div>p:nth-child(3){
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: 700;
line-height: 12px;
margin-top: -2px;
color: rgb(0, 0, 0);
}
#main>div>p:nth-child(4){
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: 400;
line-height: 15px;
margin-top: -10px;
color: rgb(0, 0, 0);
}
#main>div>p:nth-child(5){
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: 700;
line-height: 15px;
margin-top: -10px;
color: rgb(0, 0, 0);
}
#main>div>button{
border-radius: 25px;
font-size: 12px;
font-weight: 700;
line-height: 12px;
padding: 5px;
margin-top: -2px;
cursor: pointer;
box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);
transition: 0.2s all;
}
#main>div>button:hover{
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
background: linear-gradient(#cc2b5e , #753a88);
border: none;
color:whitesmoke;
}
#main>div>button:active {
transform: scale(0.98);
/* Scaling button to 0.98 to its original size */
box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
/* Lowering the shadow */
}
#head{
display:grid;
margin-top: 20px;
grid-template-columns: repeat(2,1fr);
}
#side{
border-right: 1px solid black;
width: 200px;
margin-left: 150px;
}
#side>h2{
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 20px;
}
#side>p{
font-family: Arial, Helvetica, sans-serif;
margin-top: -3px;
font-size: 14px;
font-weight: 400;
line-height: 17.5px;
}
#side>p:hover{
text-decoration: underline;
}
#side>span{
font-family: Arial, Helvetica, sans-serif;
margin-top: 5px;
font-size: 12px;
font-weight: 400;
line-height: 18px;
padding: 40px 0px;
color:rgb(102, 102, 102)
}
hr{
background-color:black;
border:1px solid black;
}