-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss.css
More file actions
77 lines (74 loc) · 1.24 KB
/
css.css
File metadata and controls
77 lines (74 loc) · 1.24 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
:root{
--primary:#3DCFD3;
--dark:#161616;
--pure:#FFFFFF;
--ternary:#898989;
--light:#F2F2F2;
}
header{
background: var(--dark);
height: 800px;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
--webkit-font-smoothing: antialia;
}
.btn-group{
padding: 10px;
margin: 10px;
box-sizing: border-box;
}
/*header .container
#container{width:100%;
height:500px;}
#left{float:left;width:00px;padding: 0;}
#right{float:right;width:200px; padding:0;}
#center{margin:0 auto;width:100px; box-sizing: border-box;}*/
a:link {
color: #7401DF;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: var(--ternary);
background-color: transparent;
text-decoration: underline;
border-color: var(--primary);
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
.left img{
width:400px;
}
header .col img{
height: 200px;
}
.hero .left img{
width: 400px;
}
.hero .mid{
color: var(--pure);
}
.hero .mid h5{
color: var(--primary);
}
.hero .mid p{
padding: 10px;
size: 1.2;
}
body{
background: var(--dark);
color: var(--pure);
}
body h2{
color: var(--light);
text-decoration: underline;
}
body pre{
color: var(--pure);
}