-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (91 loc) · 1.51 KB
/
styles.css
File metadata and controls
106 lines (91 loc) · 1.51 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
100
101
102
103
104
105
106
body {
font-family: "Arial", sans-serif;
padding: 2rem;
text-align: center;
background-color: #f5f5f5;
height: 100%;
}
html {
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: center;
margin-top: 50px;
gap: 20px;
}
.doc-card {
border: 1px solid #e0e0e0;
padding: 20px;
width: 30%;
box-shadow: 2px 2px 12px #aaa;
transition: 0.3s;
border-radius: 15px;
background-color: #ffffff;
position: relative;
margin: 0 10px;
}
.doc-card:hover {
box-shadow: 4px 4px 14px #888;
transform: scale(1.03);
}
a {
text-decoration: none;
padding: 8px 12px;
transition: 0.3s;
}
h2 {
margin-top: 0;
}
.icon {
font-size: 2rem;
margin-bottom: 15px;
}
#logo {
max-width: 200px;
margin-bottom: 20px;
}
.doc-button {
color: white;
background-color: #42a5f5;
border-radius: 4px;
padding: 6px 10px;
display: inline-flex;
align-items: center;
font-size: 18px;
transition: background-color 0.3s ease;
}
.doc-button:hover {
background-color: #2196f3;
}
.github-icon {
margin-right: 6px;
}
.github-button {
color: #42a5f5;
padding: 6px 10px;
display: inline-flex;
align-items: center;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.github-button:hover {
text-decoration: underline;
}
footer {
width: 100%;
background-color: #2c3e50;
color: #ecf0f1;
padding: 20px 0;
position: fixed;
bottom: 0;
left: 0;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
text-align: center;
}