-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRstyle.css
99 lines (85 loc) · 1.4 KB
/
Rstyle.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
*{
list-style:none;
text-decoration: none;
font-family: 'Assistant';
}
.bkc{
background-color:#F8F4E9;
}
.container1 {
display: flex;
justify-content: space-evenly;
align-items: center;
margin:10px;
}
h1{
text-align:center;
letter-spacing: 2px;;
}
.container2 {
display: flex;
flex-direction:row-reverse;
justify-content: space-evenly;
align-items: center;
margin:10px;
}
.img {
display: inline-block;
width: 100%;
height: 100%;
vertical-align: top;
padding: 40px 30px;
}
.box2 {
color: #000000;
font-size: 16px;
line-height: 25px;
text-align: justify;
}
.p {
color: #000000;
font-size: 16px;
line-height: 25px;
text-align: justify;
}
.bbtn{
color:rgb(0, 0, 0);
}
.bbtn button{
width:100px;
height:30px;
border-radius:25px;
background:transparent;
color:rgb(10, 10, 10);
font-size:16px;
border: 1px solid crimson;
transition:0.5s;
}
.bbtn button:hover{
background:crimson;
transform:scale(1.1,1.1);
}
/* Footers */
.footer {
background-color: #333;
color: black;
padding: 20px;
text-align: start;
display: flex;
flex-grow:1;
justify-content: center;
align-items: center;
}
.footer p{
margin-right:90px;
}
.footer img {
width: 30px;
margin: 0 10px;
}
a:hover{
transform:scale(1.2,1.2);
}
a{
margin-right:15px;
}