-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (86 loc) · 1.53 KB
/
styles.css
File metadata and controls
99 lines (86 loc) · 1.53 KB
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fdf6e3;
margin: 0;
padding: 0;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
margin-top: 50px;
}
h1 {
text-align: center;
color: #b58900;
}
ul {
list-style: none;
padding: 0;
}
ul li {
background: #cb4b16;
color: #fff;
padding: 15px;
margin: 10px 0;
cursor: pointer;
text-align: center;
border-radius: 5px;
transition: background 0.3s ease;
}
ul li:hover {
background: #dc322f;
}
#content {
margin-top: 20px;
padding: 20px;
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
color: #b58900;
}
p {
color: #586e75;
}
/* Styles for the "What is Computer Science?" page */
.what-is-cs h1 {
color: #268bd2;
}
.what-is-cs p {
color: #657b83;
line-height: 1.6;
}
.what-is-cs ul {
padding-left: 20px;
}
.what-is-cs ul li {
background: #2aa198;
color: #fff;
padding: 10px;
margin: 5px 0;
border-radius: 5px;
}
button {
background-color: #cb4b16;
color: #fff;
padding: 15px 20px;
margin: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s ease;
}
.what-is-cs ul li:hover {
background: #268bd2;
}
.underline {
text-decoration: underline red wavy;
}