-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_template.css
59 lines (50 loc) · 961 Bytes
/
style_template.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
@font-face {
font-family: "NotoSans";
src: url("font/NotoSans-VariableFont.ttf") format("truetype")
}
html, body{
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
.slide{
height: calc(100% - 2px);
width: calc(100% - 2px);
border: 1px solid #000;
}
.description{
font-family: "NotoSans";
width: calc(100% - 80px);
margin-left: 40px;
background-color: rgb(196, 237, 254);
color: #000;
font-size: 25px;
padding: 10px;
border-radius: 5px;
}
.container{
width: calc(100% - 100px);
margin: 50px;
}
.file{
position: relative;
bottom: 20px;
left: 5px;
background-color: rgb(214, 214, 214);
padding: 5px;
display: inline;
margin-left: 40px;
border: 1px solid #393939;
border-radius: 5px;
}
.title{
font-family: "NotoSans";
font-size: 35px;
font-weight: bold;
margin-left: 40px;
margin-top: 20px;
}
code{
font-size: 20px;
}