forked from Darkilen/SimplonStrap
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
106 lines (88 loc) · 1.22 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
body {
margin: 0 auto;
}
header {
text-align: center;
}
code {
padding: 2%;
display: block;
background: #3F3F3F;
color: white;
border-radius: 0.4em;
white-space: pre;
font-size: 0.8vw;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, .5);
height:92%;
}
section p {
text-align: center;
}
hr {
margin:2% auto;
width: 50%;
}
footer {
padding:2%;
background: #dedede;
}
footer section {
padding: 1%;
width: 33%;
}
footer p {
text-align: center;
}
/*** Titles Structures Styles ***/
h1, h2, h3, h4 {
text-align: center;
}
/* Ancre */
#gotop {
position:fixed;
bottom:0.5em;
right:1em;
font-weight:bold;
font-size:2em;
color:pink;
}
/* Divers */
.colnorm {
margin: 1%;
}
.containbtn {
text-align: center;
}
#btndowload{
width: auto;
padding: 8px 5px;
}
.grid [class*="w-"]{
height: 100%;
color: white;
font-size: 0.9em;
}
.grid [class*="w-"] div{
text-align: center;
}
.gridlist, .gridlist li {
text-indent: 2em;
}
/* Media Queries */
@media screen and (max-width: 800px) {
.containflex {
flex-direction: column;
}
code {
font-size: 1vh;
}
.input {
width:110px;
}
footer section {
display: none;
}
main {
padding-top: 10px;
}
}