-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrstyle.css
145 lines (125 loc) · 2.99 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #bbc9e9; /* Light gray background */
color: #482a2a; /* Dark text color */
}
header {
background-color: #bbc9e9;
color: #fff;
padding: 10px 0;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
margin-top: 20px;
}
.user-actions a {
display: inline-block;
background-color: #23527c; /* Blue background color */
color: #fff; /* White text color */
padding: 10px 20px;
border-radius: 20px; /* Add round corners */
text-decoration: none;
font-weight: bold;
margin-left: 10px;
transition: background-color 0.3s, color 0.3s;
}
.user-actions a:hover {
background-color: #ff6600; /* Slightly darker blue on hover */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center; /* Align titles to the left */
margin-bottom: 10px;
}
nav ul li {
display: inline;
margin-right: 70px;
font-size:x-large;
}
nav ul li a {
text-decoration: none;
color: #626d77; /* Subdued blue text color */
font-weight: bold;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ff6600; /* Slightly darker blue on hover */
}
.logo img {
width: 50px;
height: 50px;
margin-left: 70px;
margin-top: 30px;
}
/* Styles for the resources section */
.resources {
text-align: center;
padding: 20px;
}
.resources h1 {
font-size: 32px;
margin: 20px 0;
color: #23527c; /* Blue text color */
}
.r-post1, .r-post2, .r-post3 {
background-color: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.r-post1, .r-post2, .r-post3 h2 {
font-size: 24px;
margin: 10px 0;
color: #333; /* Dark text color */
}
.r-post1, .r-post2, .r-post3 p {
font-size: 16px;
margin: 10px 0;
color: #333; /* Dark text color */
}
.bottom-box {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
display: flex;
justify-content: space-between;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
footer {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
text-align: center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.social-links {
margin: 0 auto;
}
.social-links h3 {
font-size: 20px;
margin-bottom: 10px;
color: #333; /* Dark text color for headings */
}
.social-links a {
font-size: 18px;
text-decoration: none;
color: #333; /* Dark text color */
transition: color 0.3s;
}
.social-links a:hover {
color: #ff6600; /* Blue text color on hover */
}