forked from carbonsystems-dev/website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorial.css
147 lines (121 loc) · 2.22 KB
/
tutorial.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 {
background-color: #222;
color: #8bd4ef;
font-family: Comic Sans MS, Comic Sans, cursive;
margin: 0;
height: 100vh;
overflow: hidden;
}
nav {
padding: 10px;
display: flex;
justify-content: center;
margin-top: 10px;
}
.menu {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.menu li {
margin: 0 10px;
}
.menu li a {
color: #bbe0ed;
text-decoration: none;
transition: all 0.4s ease-in-out;
border: 2px solid transparent;
border-radius: 10px;
padding: 9px 12px;
}
.menu li a:hover {
border-color: #3527ce;
}
.main-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 60px;
position: relative;
z-index: 1;
margin-top: 0;
font-family: 'Montserrat', sans-serif;
margin-bottom: 5px;
}
p {
font-family: 'Noto Sans', sans-serif;
}
.welcome-text {
font-size: 20px;
margin-top: 0px;
}
.description {
font-size: 18px;
margin-top: 10px;
}
.view-button {
display: inline-block;
padding: 10px 20px;
background-color: transparent;
color: #fff;
border-radius: 10px;
text-decoration: none;
margin-top: 20px;
border: 2px solid #777;
transition: background-color 0.3s, color 0.3s;
}
.view-button:hover {
background-color: #555555;
color: #fff;
}
.tutorial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
margin-top: 40px;
}
.tutorial img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 10%;
margin-bottom: 10px;
}
h2 {
font-size: 42px;
margin: 5px 0;
font-family: 'Comic Sans MS, Comic Sans, cursive;
}
.tutorial p.description {
font-size: 16px;
margin: 0;
overflow-y: auto;
font-family: Verdana, sans-serif;
}
.tutorial-links {
margin-top: 20px;
}
.tutorial-links a {
color: #8bd4ef;
text-decoration: none;
transition: all 0.3s ease-in-out;
border: 2px solid transparent;
border-radius: 10px;
padding: 8px 12px;
margin-right: 0px;
font-family: Verdana, sans-serif;
}
.tutorial-links a:hover {
border-color: #3527ce;
}
center {
margin: auto;
width: 10%;
padding:40px;
}