-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
89 lines (81 loc) · 1.52 KB
/
styling.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
table{
background: rgb(20, 173, 200);
border: 2px solid black;
border-radius: 10px;
}
th,td{
border: 2px solid black;
border-radius: 10px;
width: 100px;
}
.shape-row{
display: flex;
justify-content: center;
}
.shape{
width: 100px;
height: 70px;
margin: 10px;
display: inline-block;
border: 2px solid aquamarine;
}
.square{
border-radius: 5px;
background-color: aliceblue;
}
.squareR{
border-radius: 20px;
background-color: aliceblue;
}
.circle{
height: 60px;
width: 100px;
border-radius: 50%;
background-color: aliceblue;
}
.squareT{
border-radius: 0 20px 0 20px;
}
ul{
list-style-type: none;
width: 150px ;
background-color: rgb(92, 213, 213);
border: 2px solid black;
padding-left: 2px;
padding-right: 2px;
}
li a{
display: block;
color: blue;
padding: 8px;
text-decoration: none;
}
li a:hover{
background-color: rgb(242, 189, 13);
color: white;
}
.NROW{
border: 1px solid black;
width: 160px;
padding-top: 3px;
padding-bottom: 0px;
}
.NavBar{
display: flex ;
}
.navbar-Horizontal{
background-color: white;
width: 150px;
}
.navbar-Horizontal li a{
padding: 10px;
display: block;
color: blue;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar-Horizontal ul{
list-style-type: none;
background-color: rgba(30, 30, 26, 0.488);
}