-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (90 loc) · 1.85 KB
/
style.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
body {
margin: 0;
font-family: Arial, sans-serif;
border: 7px solid #0e0e0e;
}
header {
height: 70px;
background: linear-gradient(90deg, #080808, #333333);
color: #fff;
text-align: center;
padding-top: 10px;
}
header h1 {
font-size: 35px;
font-weight: bold;
}
section {
padding: 30px;
border-bottom: 1px solid #0e0e0e;
background-color: #f9f9f9;
}
section h2 {
font-size: 28px;
color: #333333;
margin-bottom: 15px;
font-weight: bold;
}
@media (min-width: 600px) {
section {
padding: 50px;
}
}
h1 {
margin: 0;
font-size: 30px;
font-family: "jazeera-light";
}
.screenshot {
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
width: 70%;
border: 1px solid rgb(184, 180, 180);
box-shadow: 0 0 15px rgba(50, 50, 93, 0.25), 0 0 5px rgba(77, 77, 77, 0.1);
border-radius: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(50, 50, 93, 0.4), 0 0 10px rgba(77, 77, 77, 0.2);
}
.image_title {
text-align: center;
color: rgb(105, 102, 102);
font-size: 22px;
margin-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
border-radius: 10px;
font-family: "jazeera-light";
border: 1px solid rgb(184, 180, 180);
box-shadow: 0 0 15px rgba(50, 50, 93, 0.25), 0 0 5px rgba(77, 77, 77, 0.1);
}
th {
background-color: #333333;
color: #fff;
padding: 15px;
}
td, th {
border: 1px solid #bbabab;
text-align: center;
padding: 15px;
}
#download_image {
width: 50px;
}
.section4 {
padding: 20px;
background-color: #f1f1f1;
text-align: center;
font-size: 18px;
color: #555555;
}
.section4 .image_title {
color: #333333;
font-weight: bold;
}