Socialify

Folder ..

Viewing style.css
126 lines (127 loc) • 2.4 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
 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
@font-face {
    font-family: 'Lato Hairline';
    src: url(../fonts/Lato/Lato-Hairline.ttf);
}
@font-face {
    font-family: 'Lato Light';
    src: url(../fonts/Lato/Lato-Light.ttf);
}
@font-face {
    font-family: 'Lato';
    src: url(../fonts/Lato/Lato-Regular.ttf);
}
body {
    margin: 0;
    padding: 0;
    -ms-overflow-style: scrollbar;
    -webkit-app-region:drag;
    background-color: #F3F3F3;
}
.bgcontainer {
    width: 100%;
    height: 100vh;
    background-image: url(../images/image-alt.jpg);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}
.logo {
    width: 60px;
    position: absolute;
    top: 30px;
    right: 160px;
    /* background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.75); */
    display: none;
}
.title {
    font-size: 2em;
    font-family: 'Lato Hairline';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.description {
    font-size: 1em;
    font-family: 'Lato Light';
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
}
/*
.ram {
    font-size: 1em;
    font-family: 'Lato Light';
    position: absolute;
    bottom: 275px;
    left: 5%;
}
.cpu {
    font-size: 1em;
    font-family: 'Lato Light';
    position: absolute;
    bottom: 250px;
    left: 5%;
}
.processor {
    font-size: 1em;
    font-family: 'Lato Light';
    position: absolute;
    bottom: 225px;
    left: 5%;
}
.res {
    font-size: 1em;
    font-family: 'Lato Light';
    position: absolute;
    bottom: 200px;
    left: 5%;
} */
.info {
    position: absolute;
    bottom: 100px;
    left: 30px;
    font-family: 'Lato Light';
}
.links {
    position: absolute;
    bottom: 175px;
    right: 30px;
    font-family: 'Lato Light';
    /* text-align: right; */
}
.copyright {
    position: absolute;
    bottom: 0px;
    left: 30px;
    font-family: 'Lato';
    text-align: right;
    font-size: 0.7em;
    color: rgb(75, 75, 75);
}
a {
    color: black;
    text-decoration: none;
    padding: 5px 15px 7px 15px;
}
a:hover {
    color: white;
    background-color: rgb(70, 70, 70);
    border-radius: 30px;
}
#close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-family: 'Lato';
    color: white;
    background-color: rgb(70, 70, 70);
    border-radius: 30px;
    border: none;
    outline: none;
    padding: 5px 15px 7px 15px;
}